blob: e5dc9f87f495a9d010fffd52c55b65205cbf1f17 [file] [log] [blame]
Andrew Lunna2443fd2019-01-21 19:05:50 +01001// SPDX-License-Identifier: GPL-2.0+
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03002/* Framework for finding and configuring PHYs.
Andy Fleming00db8182005-07-30 19:31:23 -04003 * Also contains generic PHY driver
4 *
5 * Author: Andy Fleming
6 *
7 * Copyright (c) 2004 Freescale Semiconductor, Inc.
Andy Fleming00db8182005-07-30 19:31:23 -04008 */
Joe Perches8d242482012-06-09 07:49:07 +00009
10#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11
Andy Fleming00db8182005-07-30 19:31:23 -040012#include <linux/kernel.h>
Andy Fleming00db8182005-07-30 19:31:23 -040013#include <linux/string.h>
14#include <linux/errno.h>
15#include <linux/unistd.h>
16#include <linux/slab.h>
17#include <linux/interrupt.h>
18#include <linux/init.h>
19#include <linux/delay.h>
20#include <linux/netdevice.h>
21#include <linux/etherdevice.h>
22#include <linux/skbuff.h>
Andy Fleming00db8182005-07-30 19:31:23 -040023#include <linux/mm.h>
24#include <linux/module.h>
Andy Fleming00db8182005-07-30 19:31:23 -040025#include <linux/mii.h>
26#include <linux/ethtool.h>
Andrew Lunn719655a2018-09-29 23:04:16 +020027#include <linux/bitmap.h>
Andy Fleming00db8182005-07-30 19:31:23 -040028#include <linux/phy.h>
Zach Brown2e0bc452016-10-17 10:49:55 -050029#include <linux/phy_led_triggers.h>
Russell King298e54f2019-11-15 19:56:51 +000030#include <linux/sfp.h>
Andy Fleming124059f2014-01-10 14:27:37 +080031#include <linux/mdio.h>
Sergei Shtylyov2f53e902014-01-05 03:17:06 +030032#include <linux/io.h>
33#include <linux/uaccess.h>
Andy Fleming00db8182005-07-30 19:31:23 -040034
Olaf Heringafcceaa2005-12-14 00:33:49 +010035MODULE_DESCRIPTION("PHY library");
36MODULE_AUTHOR("Andy Fleming");
37MODULE_LICENSE("GPL");
38
Andrew Lunn719655a2018-09-29 23:04:16 +020039__ETHTOOL_DECLARE_LINK_MODE_MASK(phy_basic_features) __ro_after_init;
40EXPORT_SYMBOL_GPL(phy_basic_features);
41
42__ETHTOOL_DECLARE_LINK_MODE_MASK(phy_basic_t1_features) __ro_after_init;
43EXPORT_SYMBOL_GPL(phy_basic_t1_features);
44
45__ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_features) __ro_after_init;
46EXPORT_SYMBOL_GPL(phy_gbit_features);
47
48__ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_fibre_features) __ro_after_init;
49EXPORT_SYMBOL_GPL(phy_gbit_fibre_features);
50
51__ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_all_ports_features) __ro_after_init;
52EXPORT_SYMBOL_GPL(phy_gbit_all_ports_features);
53
54__ETHTOOL_DECLARE_LINK_MODE_MASK(phy_10gbit_features) __ro_after_init;
55EXPORT_SYMBOL_GPL(phy_10gbit_features);
56
Andrew Lunn9e857a42019-01-15 16:55:30 +010057__ETHTOOL_DECLARE_LINK_MODE_MASK(phy_10gbit_fec_features) __ro_after_init;
58EXPORT_SYMBOL_GPL(phy_10gbit_fec_features);
59
Denis Efremov54638c62019-07-10 21:03:24 +030060const int phy_basic_ports_array[3] = {
Andrew Lunn719655a2018-09-29 23:04:16 +020061 ETHTOOL_LINK_MODE_Autoneg_BIT,
62 ETHTOOL_LINK_MODE_TP_BIT,
63 ETHTOOL_LINK_MODE_MII_BIT,
64};
Andrew Lunn3c1bcc82018-11-10 23:43:33 +010065EXPORT_SYMBOL_GPL(phy_basic_ports_array);
Andrew Lunn719655a2018-09-29 23:04:16 +020066
Denis Efremov54638c62019-07-10 21:03:24 +030067const int phy_fibre_port_array[1] = {
Andrew Lunn719655a2018-09-29 23:04:16 +020068 ETHTOOL_LINK_MODE_FIBRE_BIT,
69};
Andrew Lunn3c1bcc82018-11-10 23:43:33 +010070EXPORT_SYMBOL_GPL(phy_fibre_port_array);
Andrew Lunn719655a2018-09-29 23:04:16 +020071
Denis Efremov54638c62019-07-10 21:03:24 +030072const int phy_all_ports_features_array[7] = {
Andrew Lunn719655a2018-09-29 23:04:16 +020073 ETHTOOL_LINK_MODE_Autoneg_BIT,
74 ETHTOOL_LINK_MODE_TP_BIT,
75 ETHTOOL_LINK_MODE_MII_BIT,
76 ETHTOOL_LINK_MODE_FIBRE_BIT,
77 ETHTOOL_LINK_MODE_AUI_BIT,
78 ETHTOOL_LINK_MODE_BNC_BIT,
79 ETHTOOL_LINK_MODE_Backplane_BIT,
80};
Andrew Lunn3c1bcc82018-11-10 23:43:33 +010081EXPORT_SYMBOL_GPL(phy_all_ports_features_array);
Andrew Lunn719655a2018-09-29 23:04:16 +020082
Andrew Lunn3c1bcc82018-11-10 23:43:33 +010083const int phy_10_100_features_array[4] = {
Andrew Lunn719655a2018-09-29 23:04:16 +020084 ETHTOOL_LINK_MODE_10baseT_Half_BIT,
85 ETHTOOL_LINK_MODE_10baseT_Full_BIT,
86 ETHTOOL_LINK_MODE_100baseT_Half_BIT,
87 ETHTOOL_LINK_MODE_100baseT_Full_BIT,
88};
Andrew Lunn3c1bcc82018-11-10 23:43:33 +010089EXPORT_SYMBOL_GPL(phy_10_100_features_array);
Andrew Lunn719655a2018-09-29 23:04:16 +020090
Andrew Lunn3c1bcc82018-11-10 23:43:33 +010091const int phy_basic_t1_features_array[2] = {
Andrew Lunn719655a2018-09-29 23:04:16 +020092 ETHTOOL_LINK_MODE_TP_BIT,
Andrew Lunne5fb32c2019-05-22 20:47:04 +020093 ETHTOOL_LINK_MODE_100baseT1_Full_BIT,
Andrew Lunn719655a2018-09-29 23:04:16 +020094};
Andrew Lunn3c1bcc82018-11-10 23:43:33 +010095EXPORT_SYMBOL_GPL(phy_basic_t1_features_array);
Andrew Lunn719655a2018-09-29 23:04:16 +020096
Andrew Lunn3c1bcc82018-11-10 23:43:33 +010097const int phy_gbit_features_array[2] = {
Andrew Lunn719655a2018-09-29 23:04:16 +020098 ETHTOOL_LINK_MODE_1000baseT_Half_BIT,
99 ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
100};
Andrew Lunn3c1bcc82018-11-10 23:43:33 +0100101EXPORT_SYMBOL_GPL(phy_gbit_features_array);
Andrew Lunn719655a2018-09-29 23:04:16 +0200102
Andrew Lunn3c1bcc82018-11-10 23:43:33 +0100103const int phy_10gbit_features_array[1] = {
Andrew Lunn719655a2018-09-29 23:04:16 +0200104 ETHTOOL_LINK_MODE_10000baseT_Full_BIT,
105};
Andrew Lunn3c1bcc82018-11-10 23:43:33 +0100106EXPORT_SYMBOL_GPL(phy_10gbit_features_array);
Andrew Lunn719655a2018-09-29 23:04:16 +0200107
Andrew Lunn9e857a42019-01-15 16:55:30 +0100108const int phy_10gbit_fec_features_array[1] = {
109 ETHTOOL_LINK_MODE_10000baseR_FEC_BIT,
110};
111EXPORT_SYMBOL_GPL(phy_10gbit_fec_features_array);
112
Andrew Lunn719655a2018-09-29 23:04:16 +0200113__ETHTOOL_DECLARE_LINK_MODE_MASK(phy_10gbit_full_features) __ro_after_init;
114EXPORT_SYMBOL_GPL(phy_10gbit_full_features);
115
116static const int phy_10gbit_full_features_array[] = {
117 ETHTOOL_LINK_MODE_10baseT_Full_BIT,
118 ETHTOOL_LINK_MODE_100baseT_Full_BIT,
119 ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
120 ETHTOOL_LINK_MODE_10000baseT_Full_BIT,
121};
122
123static void features_init(void)
124{
125 /* 10/100 half/full*/
126 linkmode_set_bit_array(phy_basic_ports_array,
127 ARRAY_SIZE(phy_basic_ports_array),
128 phy_basic_features);
129 linkmode_set_bit_array(phy_10_100_features_array,
130 ARRAY_SIZE(phy_10_100_features_array),
131 phy_basic_features);
132
133 /* 100 full, TP */
134 linkmode_set_bit_array(phy_basic_t1_features_array,
135 ARRAY_SIZE(phy_basic_t1_features_array),
136 phy_basic_t1_features);
137
138 /* 10/100 half/full + 1000 half/full */
139 linkmode_set_bit_array(phy_basic_ports_array,
140 ARRAY_SIZE(phy_basic_ports_array),
141 phy_gbit_features);
142 linkmode_set_bit_array(phy_10_100_features_array,
143 ARRAY_SIZE(phy_10_100_features_array),
144 phy_gbit_features);
145 linkmode_set_bit_array(phy_gbit_features_array,
146 ARRAY_SIZE(phy_gbit_features_array),
147 phy_gbit_features);
148
149 /* 10/100 half/full + 1000 half/full + fibre*/
150 linkmode_set_bit_array(phy_basic_ports_array,
151 ARRAY_SIZE(phy_basic_ports_array),
152 phy_gbit_fibre_features);
153 linkmode_set_bit_array(phy_10_100_features_array,
154 ARRAY_SIZE(phy_10_100_features_array),
155 phy_gbit_fibre_features);
156 linkmode_set_bit_array(phy_gbit_features_array,
157 ARRAY_SIZE(phy_gbit_features_array),
158 phy_gbit_fibre_features);
159 linkmode_set_bit_array(phy_fibre_port_array,
160 ARRAY_SIZE(phy_fibre_port_array),
161 phy_gbit_fibre_features);
162
163 /* 10/100 half/full + 1000 half/full + TP/MII/FIBRE/AUI/BNC/Backplane*/
164 linkmode_set_bit_array(phy_all_ports_features_array,
165 ARRAY_SIZE(phy_all_ports_features_array),
166 phy_gbit_all_ports_features);
167 linkmode_set_bit_array(phy_10_100_features_array,
168 ARRAY_SIZE(phy_10_100_features_array),
169 phy_gbit_all_ports_features);
170 linkmode_set_bit_array(phy_gbit_features_array,
171 ARRAY_SIZE(phy_gbit_features_array),
172 phy_gbit_all_ports_features);
173
174 /* 10/100 half/full + 1000 half/full + 10G full*/
175 linkmode_set_bit_array(phy_all_ports_features_array,
176 ARRAY_SIZE(phy_all_ports_features_array),
177 phy_10gbit_features);
178 linkmode_set_bit_array(phy_10_100_features_array,
179 ARRAY_SIZE(phy_10_100_features_array),
180 phy_10gbit_features);
181 linkmode_set_bit_array(phy_gbit_features_array,
182 ARRAY_SIZE(phy_gbit_features_array),
183 phy_10gbit_features);
184 linkmode_set_bit_array(phy_10gbit_features_array,
185 ARRAY_SIZE(phy_10gbit_features_array),
186 phy_10gbit_features);
187
188 /* 10/100/1000/10G full */
189 linkmode_set_bit_array(phy_all_ports_features_array,
190 ARRAY_SIZE(phy_all_ports_features_array),
191 phy_10gbit_full_features);
192 linkmode_set_bit_array(phy_10gbit_full_features_array,
193 ARRAY_SIZE(phy_10gbit_full_features_array),
194 phy_10gbit_full_features);
Andrew Lunn9e857a42019-01-15 16:55:30 +0100195 /* 10G FEC only */
196 linkmode_set_bit_array(phy_10gbit_fec_features_array,
197 ARRAY_SIZE(phy_10gbit_fec_features_array),
198 phy_10gbit_fec_features);
Andrew Lunn719655a2018-09-29 23:04:16 +0200199}
200
Anton Vorontsov6f4a7f42007-12-04 16:17:33 +0300201void phy_device_free(struct phy_device *phydev)
202{
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100203 put_device(&phydev->mdio.dev);
Anton Vorontsov6f4a7f42007-12-04 16:17:33 +0300204}
Grant Likely4dea5472009-04-25 12:52:46 +0000205EXPORT_SYMBOL(phy_device_free);
Anton Vorontsov6f4a7f42007-12-04 16:17:33 +0300206
Andrew Lunn711fdba2016-01-06 20:11:27 +0100207static void phy_mdio_device_free(struct mdio_device *mdiodev)
208{
209 struct phy_device *phydev;
210
211 phydev = container_of(mdiodev, struct phy_device, mdio);
212 phy_device_free(phydev);
213}
214
Anton Vorontsov6f4a7f42007-12-04 16:17:33 +0300215static void phy_device_release(struct device *dev)
216{
Petr Malatb2a43192013-02-28 01:01:52 +0000217 kfree(to_phy_device(dev));
Anton Vorontsov6f4a7f42007-12-04 16:17:33 +0300218}
219
Andrew Lunn711fdba2016-01-06 20:11:27 +0100220static void phy_mdio_device_remove(struct mdio_device *mdiodev)
221{
222 struct phy_device *phydev;
223
224 phydev = container_of(mdiodev, struct phy_device, mdio);
225 phy_device_remove(phydev);
226}
227
Russell King921690f2017-06-05 12:23:05 +0100228static struct phy_driver genphy_driver;
Heiner Kallweit22b56e82019-04-07 13:55:01 +0200229extern struct phy_driver genphy_c45_driver;
Grant Likely4dea5472009-04-25 12:52:46 +0000230
Andy Flemingf62220d2008-04-18 17:29:54 -0500231static LIST_HEAD(phy_fixup_list);
232static DEFINE_MUTEX(phy_fixup_lock);
233
Andrew Lunnbc879222016-01-06 20:11:21 +0100234#ifdef CONFIG_PM
235static 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 return !phydev->suspended;
251
Heiner Kallweit93f41e62018-09-24 22:01:32 +0200252 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.
Andrew Lunnbc879222016-01-06 20:11:21 +0100258 * 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 return true;
271}
272
273static int mdio_bus_phy_suspend(struct device *dev)
274{
275 struct phy_device *phydev = to_phy_device(dev);
276
277 /* We must stop the state machine manually, otherwise it stops out of
278 * control, possibly with the phydev->lock held. Upon resume, netdev
279 * may call phy routines that try to grab the same lock, and that may
280 * lead to a deadlock.
281 */
282 if (phydev->attached_dev && phydev->adjust_link)
283 phy_stop_machine(phydev);
284
285 if (!mdio_bus_phy_may_suspend(phydev))
286 return 0;
287
288 return phy_suspend(phydev);
289}
290
291static int mdio_bus_phy_resume(struct device *dev)
292{
293 struct phy_device *phydev = to_phy_device(dev);
294 int ret;
295
296 if (!mdio_bus_phy_may_suspend(phydev))
297 goto no_resume;
298
299 ret = phy_resume(phydev);
300 if (ret < 0)
301 return ret;
302
303no_resume:
304 if (phydev->attached_dev && phydev->adjust_link)
305 phy_start_machine(phydev);
306
307 return 0;
308}
309
310static int mdio_bus_phy_restore(struct device *dev)
311{
312 struct phy_device *phydev = to_phy_device(dev);
313 struct net_device *netdev = phydev->attached_dev;
314 int ret;
315
316 if (!netdev)
317 return 0;
318
319 ret = phy_init_hw(phydev);
320 if (ret < 0)
321 return ret;
322
Kunihiko Hayashi8742beb2018-12-18 16:57:04 +0900323 if (phydev->attached_dev && phydev->adjust_link)
324 phy_start_machine(phydev);
Andrew Lunnbc879222016-01-06 20:11:21 +0100325
326 return 0;
327}
328
329static const struct dev_pm_ops mdio_bus_phy_pm_ops = {
330 .suspend = mdio_bus_phy_suspend,
331 .resume = mdio_bus_phy_resume,
332 .freeze = mdio_bus_phy_suspend,
333 .thaw = mdio_bus_phy_resume,
334 .restore = mdio_bus_phy_restore,
335};
336
337#define MDIO_BUS_PHY_PM_OPS (&mdio_bus_phy_pm_ops)
338
339#else
340
341#define MDIO_BUS_PHY_PM_OPS NULL
342
343#endif /* CONFIG_PM */
344
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300345/**
346 * phy_register_fixup - creates a new phy_fixup and adds it to the list
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100347 * @bus_id: A string which matches phydev->mdio.dev.bus_id (or PHY_ANY_ID)
Andy Flemingf62220d2008-04-18 17:29:54 -0500348 * @phy_uid: Used to match against phydev->phy_id (the UID of the PHY)
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300349 * It can also be PHY_ANY_UID
Andy Flemingf62220d2008-04-18 17:29:54 -0500350 * @phy_uid_mask: Applied to phydev->phy_id and fixup->phy_uid before
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300351 * comparison
Andy Flemingf62220d2008-04-18 17:29:54 -0500352 * @run: The actual code to be run when a matching PHY is found
353 */
354int phy_register_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask,
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300355 int (*run)(struct phy_device *))
Andy Flemingf62220d2008-04-18 17:29:54 -0500356{
Sergei Shtylyov553fe922014-01-05 03:23:19 +0300357 struct phy_fixup *fixup = kzalloc(sizeof(*fixup), GFP_KERNEL);
Andy Flemingf62220d2008-04-18 17:29:54 -0500358
Andy Flemingf62220d2008-04-18 17:29:54 -0500359 if (!fixup)
360 return -ENOMEM;
361
Kay Sieversfb28ad32008-11-10 13:55:14 -0800362 strlcpy(fixup->bus_id, bus_id, sizeof(fixup->bus_id));
Andy Flemingf62220d2008-04-18 17:29:54 -0500363 fixup->phy_uid = phy_uid;
364 fixup->phy_uid_mask = phy_uid_mask;
365 fixup->run = run;
366
367 mutex_lock(&phy_fixup_lock);
368 list_add_tail(&fixup->list, &phy_fixup_list);
369 mutex_unlock(&phy_fixup_lock);
370
371 return 0;
372}
373EXPORT_SYMBOL(phy_register_fixup);
374
375/* Registers a fixup to be run on any PHY with the UID in phy_uid */
376int phy_register_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask,
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300377 int (*run)(struct phy_device *))
Andy Flemingf62220d2008-04-18 17:29:54 -0500378{
379 return phy_register_fixup(PHY_ANY_ID, phy_uid, phy_uid_mask, run);
380}
381EXPORT_SYMBOL(phy_register_fixup_for_uid);
382
383/* Registers a fixup to be run on the PHY with id string bus_id */
384int phy_register_fixup_for_id(const char *bus_id,
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300385 int (*run)(struct phy_device *))
Andy Flemingf62220d2008-04-18 17:29:54 -0500386{
387 return phy_register_fixup(bus_id, PHY_ANY_UID, 0xffffffff, run);
388}
389EXPORT_SYMBOL(phy_register_fixup_for_id);
390
Woojung.Huh@microchip.comf38e7a32016-12-07 20:26:07 +0000391/**
392 * phy_unregister_fixup - remove a phy_fixup from the list
393 * @bus_id: A string matches fixup->bus_id (or PHY_ANY_ID) in phy_fixup_list
394 * @phy_uid: A phy id matches fixup->phy_id (or PHY_ANY_UID) in phy_fixup_list
395 * @phy_uid_mask: Applied to phy_uid and fixup->phy_uid before comparison
396 */
397int phy_unregister_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask)
398{
399 struct list_head *pos, *n;
400 struct phy_fixup *fixup;
401 int ret;
402
403 ret = -ENODEV;
404
405 mutex_lock(&phy_fixup_lock);
406 list_for_each_safe(pos, n, &phy_fixup_list) {
407 fixup = list_entry(pos, struct phy_fixup, list);
408
409 if ((!strcmp(fixup->bus_id, bus_id)) &&
410 ((fixup->phy_uid & phy_uid_mask) ==
411 (phy_uid & phy_uid_mask))) {
412 list_del(&fixup->list);
413 kfree(fixup);
414 ret = 0;
415 break;
416 }
417 }
418 mutex_unlock(&phy_fixup_lock);
419
420 return ret;
421}
422EXPORT_SYMBOL(phy_unregister_fixup);
423
424/* Unregisters a fixup of any PHY with the UID in phy_uid */
425int phy_unregister_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask)
426{
427 return phy_unregister_fixup(PHY_ANY_ID, phy_uid, phy_uid_mask);
428}
429EXPORT_SYMBOL(phy_unregister_fixup_for_uid);
430
431/* Unregisters a fixup of the PHY with id string bus_id */
432int phy_unregister_fixup_for_id(const char *bus_id)
433{
434 return phy_unregister_fixup(bus_id, PHY_ANY_UID, 0xffffffff);
435}
436EXPORT_SYMBOL(phy_unregister_fixup_for_id);
437
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300438/* Returns 1 if fixup matches phydev in bus_id and phy_uid.
Andy Flemingf62220d2008-04-18 17:29:54 -0500439 * Fixups can be set to match any in one or more fields.
440 */
441static int phy_needs_fixup(struct phy_device *phydev, struct phy_fixup *fixup)
442{
Andrew Lunn84eff6d2016-01-06 20:11:10 +0100443 if (strcmp(fixup->bus_id, phydev_name(phydev)) != 0)
Andy Flemingf62220d2008-04-18 17:29:54 -0500444 if (strcmp(fixup->bus_id, PHY_ANY_ID) != 0)
445 return 0;
446
447 if ((fixup->phy_uid & fixup->phy_uid_mask) !=
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300448 (phydev->phy_id & fixup->phy_uid_mask))
Andy Flemingf62220d2008-04-18 17:29:54 -0500449 if (fixup->phy_uid != PHY_ANY_UID)
450 return 0;
451
452 return 1;
453}
454
455/* Runs any matching fixups for this phydev */
Sergei Shtylyovfbfcec62014-01-05 03:28:27 +0300456static int phy_scan_fixups(struct phy_device *phydev)
Andy Flemingf62220d2008-04-18 17:29:54 -0500457{
458 struct phy_fixup *fixup;
459
460 mutex_lock(&phy_fixup_lock);
461 list_for_each_entry(fixup, &phy_fixup_list, list) {
462 if (phy_needs_fixup(phydev, fixup)) {
Sergei Shtylyov553fe922014-01-05 03:23:19 +0300463 int err = fixup->run(phydev);
Andy Flemingf62220d2008-04-18 17:29:54 -0500464
Jiri Slabybc23283c2009-07-13 11:23:39 +0000465 if (err < 0) {
466 mutex_unlock(&phy_fixup_lock);
Andy Flemingf62220d2008-04-18 17:29:54 -0500467 return err;
Jiri Slabybc23283c2009-07-13 11:23:39 +0000468 }
Florian Fainellib0ae0092014-02-11 17:27:41 -0800469 phydev->has_fixups = true;
Andy Flemingf62220d2008-04-18 17:29:54 -0500470 }
471 }
472 mutex_unlock(&phy_fixup_lock);
473
474 return 0;
475}
Andy Flemingf62220d2008-04-18 17:29:54 -0500476
Andrew Lunne76a4952016-01-06 20:11:23 +0100477static int phy_bus_match(struct device *dev, struct device_driver *drv)
478{
479 struct phy_device *phydev = to_phy_device(dev);
480 struct phy_driver *phydrv = to_phy_driver(drv);
481 const int num_ids = ARRAY_SIZE(phydev->c45_ids.device_ids);
482 int i;
483
Andrew Lunna9049e02016-01-06 20:11:26 +0100484 if (!(phydrv->mdiodrv.flags & MDIO_DEVICE_IS_PHY))
485 return 0;
486
Andrew Lunne76a4952016-01-06 20:11:23 +0100487 if (phydrv->match_phy_device)
488 return phydrv->match_phy_device(phydev);
489
490 if (phydev->is_c45) {
491 for (i = 1; i < num_ids; i++) {
Russell Kingb95e86d2019-11-15 20:08:37 +0000492 if (phydev->c45_ids.device_ids[i] == 0xffffffff)
Andrew Lunne76a4952016-01-06 20:11:23 +0100493 continue;
494
495 if ((phydrv->phy_id & phydrv->phy_id_mask) ==
496 (phydev->c45_ids.device_ids[i] &
497 phydrv->phy_id_mask))
498 return 1;
499 }
500 return 0;
501 } else {
502 return (phydrv->phy_id & phydrv->phy_id_mask) ==
503 (phydev->phy_id & phydrv->phy_id_mask);
504 }
505}
506
Heiner Kallweit7f4828f2018-06-02 22:36:06 +0200507static ssize_t
508phy_id_show(struct device *dev, struct device_attribute *attr, char *buf)
509{
510 struct phy_device *phydev = to_phy_device(dev);
511
512 return sprintf(buf, "0x%.8lx\n", (unsigned long)phydev->phy_id);
513}
514static DEVICE_ATTR_RO(phy_id);
515
516static ssize_t
517phy_interface_show(struct device *dev, struct device_attribute *attr, char *buf)
518{
519 struct phy_device *phydev = to_phy_device(dev);
520 const char *mode = NULL;
521
522 if (phy_is_internal(phydev))
523 mode = "internal";
524 else
525 mode = phy_modes(phydev->interface);
526
527 return sprintf(buf, "%s\n", mode);
528}
529static DEVICE_ATTR_RO(phy_interface);
530
531static ssize_t
532phy_has_fixups_show(struct device *dev, struct device_attribute *attr,
533 char *buf)
534{
535 struct phy_device *phydev = to_phy_device(dev);
536
537 return sprintf(buf, "%d\n", phydev->has_fixups);
538}
539static DEVICE_ATTR_RO(phy_has_fixups);
540
541static struct attribute *phy_dev_attrs[] = {
542 &dev_attr_phy_id.attr,
543 &dev_attr_phy_interface.attr,
544 &dev_attr_phy_has_fixups.attr,
545 NULL,
546};
547ATTRIBUTE_GROUPS(phy_dev);
548
549static const struct device_type mdio_bus_phy_type = {
550 .name = "PHY",
551 .groups = phy_dev_groups,
552 .release = phy_device_release,
553 .pm = MDIO_BUS_PHY_PM_OPS,
554};
555
Russell King7d49a322019-12-19 23:24:52 +0000556static int phy_request_driver_module(struct phy_device *dev, u32 phy_id)
Heiner Kallweit13d0ab62019-01-16 08:07:38 +0100557{
558 int ret;
559
560 ret = request_module(MDIO_MODULE_PREFIX MDIO_ID_FMT,
561 MDIO_ID_ARGS(phy_id));
Heiner Kallweit21e19442019-01-19 10:30:21 +0100562 /* We only check for failures in executing the usermode binary,
563 * not whether a PHY driver module exists for the PHY ID.
564 * Accept -ENOENT because this may occur in case no initramfs exists,
565 * then modprobe isn't available.
Heiner Kallweit13d0ab62019-01-16 08:07:38 +0100566 */
Heiner Kallweit21e19442019-01-19 10:30:21 +0100567 if (IS_ENABLED(CONFIG_MODULES) && ret < 0 && ret != -ENOENT) {
Russell King7d49a322019-12-19 23:24:52 +0000568 phydev_err(dev, "error %d loading PHY driver module for ID 0x%08lx\n",
569 ret, (unsigned long)phy_id);
Heiner Kallweit13d0ab62019-01-16 08:07:38 +0100570 return ret;
571 }
572
573 return 0;
574}
575
Russell King7d49a322019-12-19 23:24:52 +0000576struct phy_device *phy_device_create(struct mii_bus *bus, int addr, u32 phy_id,
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300577 bool is_c45,
578 struct phy_c45_device_ids *c45_ids)
Vitaly Bordug11b0bac2006-08-14 23:00:29 -0700579{
580 struct phy_device *dev;
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100581 struct mdio_device *mdiodev;
Heiner Kallweit13d0ab62019-01-16 08:07:38 +0100582 int ret = 0;
David Woodhouse8626d3b2010-04-02 01:05:27 +0000583
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300584 /* We allocate the device, and initialize the default values */
Robert P. J. Daycd861282006-12-13 00:34:52 -0800585 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Sergei Shtylyovef899c02015-08-28 21:35:14 +0300586 if (!dev)
Sergei Shtylyovd3765f02015-08-28 21:34:34 +0300587 return ERR_PTR(-ENOMEM);
Vitaly Bordug11b0bac2006-08-14 23:00:29 -0700588
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100589 mdiodev = &dev->mdio;
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100590 mdiodev->dev.parent = &bus->dev;
591 mdiodev->dev.bus = &mdio_bus_type;
Heiner Kallweit7f4828f2018-06-02 22:36:06 +0200592 mdiodev->dev.type = &mdio_bus_phy_type;
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100593 mdiodev->bus = bus;
Andrew Lunne76a4952016-01-06 20:11:23 +0100594 mdiodev->bus_match = phy_bus_match;
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100595 mdiodev->addr = addr;
Andrew Lunn7f854422016-01-06 20:11:18 +0100596 mdiodev->flags = MDIO_DEVICE_FLAG_PHY;
Andrew Lunn711fdba2016-01-06 20:11:27 +0100597 mdiodev->device_free = phy_mdio_device_free;
598 mdiodev->device_remove = phy_mdio_device_remove;
Anton Vorontsov6f4a7f42007-12-04 16:17:33 +0300599
Russell Kinga5d66f82019-11-22 15:23:23 +0000600 dev->speed = SPEED_UNKNOWN;
601 dev->duplex = DUPLEX_UNKNOWN;
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300602 dev->pause = 0;
603 dev->asym_pause = 0;
Heiner Kallweitc69851e2018-03-11 15:00:37 +0100604 dev->link = 0;
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600605 dev->interface = PHY_INTERFACE_MODE_GMII;
Vitaly Bordug11b0bac2006-08-14 23:00:29 -0700606
607 dev->autoneg = AUTONEG_ENABLE;
608
David Daneyac28b9f2012-06-27 07:33:35 +0000609 dev->is_c45 = is_c45;
Vitaly Bordug11b0bac2006-08-14 23:00:29 -0700610 dev->phy_id = phy_id;
David Daneyac28b9f2012-06-27 07:33:35 +0000611 if (c45_ids)
612 dev->c45_ids = *c45_ids;
Dan Carpenter47b356e2016-01-12 12:36:21 +0300613 dev->irq = bus->irq[addr];
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100614 dev_set_name(&mdiodev->dev, PHY_ID_FMT, bus->id, addr);
Vitaly Bordug11b0bac2006-08-14 23:00:29 -0700615
616 dev->state = PHY_DOWN;
617
Nate Case35b5f6b2008-01-29 10:05:09 -0600618 mutex_init(&dev->lock);
Anton Vorontsov4f9c85a2010-01-18 05:37:16 +0000619 INIT_DELAYED_WORK(&dev->state_queue, phy_state_machine);
Vitaly Bordug11b0bac2006-08-14 23:00:29 -0700620
David Woodhouse8626d3b2010-04-02 01:05:27 +0000621 /* Request the appropriate module unconditionally; don't
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300622 * bother trying to do so only if it isn't already loaded,
623 * because that gets complicated. A hotplug event would have
624 * done an unconditional modprobe anyway.
625 * We don't do normal hotplug because it won't work for MDIO
626 * -- because it relies on the device staying around for long
627 * enough for the driver to get loaded. With MDIO, the NIC
628 * driver will get bored and give up as soon as it finds that
629 * there's no driver _already_ loaded.
630 */
Jose Abreu30fcd6a2018-12-02 16:33:14 +0100631 if (is_c45 && c45_ids) {
632 const int num_ids = ARRAY_SIZE(c45_ids->device_ids);
633 int i;
634
635 for (i = 1; i < num_ids; i++) {
Russell Kingb95e86d2019-11-15 20:08:37 +0000636 if (c45_ids->device_ids[i] == 0xffffffff)
Jose Abreu30fcd6a2018-12-02 16:33:14 +0100637 continue;
638
Heiner Kallweit13d0ab62019-01-16 08:07:38 +0100639 ret = phy_request_driver_module(dev,
640 c45_ids->device_ids[i]);
641 if (ret)
642 break;
Jose Abreu30fcd6a2018-12-02 16:33:14 +0100643 }
644 } else {
Heiner Kallweit13d0ab62019-01-16 08:07:38 +0100645 ret = phy_request_driver_module(dev, phy_id);
Jose Abreu30fcd6a2018-12-02 16:33:14 +0100646 }
David Woodhouse8626d3b2010-04-02 01:05:27 +0000647
Heiner Kallweit13d0ab62019-01-16 08:07:38 +0100648 if (!ret) {
649 device_initialize(&mdiodev->dev);
650 } else {
651 kfree(dev);
652 dev = ERR_PTR(ret);
653 }
Petr Malatb2a43192013-02-28 01:01:52 +0000654
Vitaly Bordug11b0bac2006-08-14 23:00:29 -0700655 return dev;
656}
David Daneyac28b9f2012-06-27 07:33:35 +0000657EXPORT_SYMBOL(phy_device_create);
658
Shaohui Xie5f6c99e2015-11-03 12:27:33 +0800659/* get_phy_c45_devs_in_pkg - reads a MMD's devices in package registers.
660 * @bus: the target MII bus
661 * @addr: PHY address on the MII bus
662 * @dev_addr: MMD address in the PHY.
663 * @devices_in_package: where to store the devices in package information.
664 *
665 * Description: reads devices in package registers of a MMD at @dev_addr
666 * from PHY at @addr on @bus.
667 *
668 * Returns: 0 on success, -EIO on failure.
669 */
670static int get_phy_c45_devs_in_pkg(struct mii_bus *bus, int addr, int dev_addr,
671 u32 *devices_in_package)
672{
673 int phy_reg, reg_addr;
674
675 reg_addr = MII_ADDR_C45 | dev_addr << 16 | MDIO_DEVS2;
676 phy_reg = mdiobus_read(bus, addr, reg_addr);
677 if (phy_reg < 0)
678 return -EIO;
Heiner Kallweit50684da2019-02-09 09:46:53 +0100679 *devices_in_package = phy_reg << 16;
Shaohui Xie5f6c99e2015-11-03 12:27:33 +0800680
681 reg_addr = MII_ADDR_C45 | dev_addr << 16 | MDIO_DEVS1;
682 phy_reg = mdiobus_read(bus, addr, reg_addr);
683 if (phy_reg < 0)
684 return -EIO;
Heiner Kallweit50684da2019-02-09 09:46:53 +0100685 *devices_in_package |= phy_reg;
Shaohui Xie5f6c99e2015-11-03 12:27:33 +0800686
Heiner Kallweit3b5e74e2019-02-08 19:25:22 +0100687 /* Bit 0 doesn't represent a device, it indicates c22 regs presence */
688 *devices_in_package &= ~BIT(0);
689
Shaohui Xie5f6c99e2015-11-03 12:27:33 +0800690 return 0;
691}
692
David Daneyac28b9f2012-06-27 07:33:35 +0000693/**
694 * get_phy_c45_ids - reads the specified addr for its 802.3-c45 IDs.
695 * @bus: the target MII bus
696 * @addr: PHY address on the MII bus
697 * @phy_id: where to store the ID retrieved.
698 * @c45_ids: where to store the c45 ID information.
699 *
700 * If the PHY devices-in-package appears to be valid, it and the
701 * corresponding identifiers are stored in @c45_ids, zero is stored
702 * in @phy_id. Otherwise 0xffffffff is stored in @phy_id. Returns
703 * zero on success.
704 *
705 */
706static int get_phy_c45_ids(struct mii_bus *bus, int addr, u32 *phy_id,
707 struct phy_c45_device_ids *c45_ids) {
708 int phy_reg;
709 int i, reg_addr;
710 const int num_ids = ARRAY_SIZE(c45_ids->device_ids);
Shaohui Xie5f6c99e2015-11-03 12:27:33 +0800711 u32 *devs = &c45_ids->devices_in_package;
David Daneyac28b9f2012-06-27 07:33:35 +0000712
Shaohui Xie5f6c99e2015-11-03 12:27:33 +0800713 /* Find first non-zero Devices In package. Device zero is reserved
714 * for 802.3 c45 complied PHYs, so don't probe it at first.
David Daneyac28b9f2012-06-27 07:33:35 +0000715 */
Shaohui Xie5f6c99e2015-11-03 12:27:33 +0800716 for (i = 1; i < num_ids && *devs == 0; i++) {
717 phy_reg = get_phy_c45_devs_in_pkg(bus, addr, i, devs);
David Daneyac28b9f2012-06-27 07:33:35 +0000718 if (phy_reg < 0)
719 return -EIO;
David Daneyac28b9f2012-06-27 07:33:35 +0000720
Shaohui Xie5f6c99e2015-11-03 12:27:33 +0800721 if ((*devs & 0x1fffffff) == 0x1fffffff) {
722 /* If mostly Fs, there is no device there,
723 * then let's continue to probe more, as some
724 * 10G PHYs have zero Devices In package,
725 * e.g. Cortina CS4315/CS4340 PHY.
726 */
727 phy_reg = get_phy_c45_devs_in_pkg(bus, addr, 0, devs);
728 if (phy_reg < 0)
729 return -EIO;
730 /* no device there, let's get out of here */
731 if ((*devs & 0x1fffffff) == 0x1fffffff) {
Shengzhou Liuda1da282015-06-26 17:58:52 +0800732 *phy_id = 0xffffffff;
733 return 0;
Shaohui Xie5f6c99e2015-11-03 12:27:33 +0800734 } else {
735 break;
Shengzhou Liuda1da282015-06-26 17:58:52 +0800736 }
David Daneyac28b9f2012-06-27 07:33:35 +0000737 }
738 }
739
740 /* Now probe Device Identifiers for each device present. */
741 for (i = 1; i < num_ids; i++) {
742 if (!(c45_ids->devices_in_package & (1 << i)))
743 continue;
744
745 reg_addr = MII_ADDR_C45 | i << 16 | MII_PHYSID1;
746 phy_reg = mdiobus_read(bus, addr, reg_addr);
747 if (phy_reg < 0)
748 return -EIO;
Heiner Kallweit50684da2019-02-09 09:46:53 +0100749 c45_ids->device_ids[i] = phy_reg << 16;
David Daneyac28b9f2012-06-27 07:33:35 +0000750
751 reg_addr = MII_ADDR_C45 | i << 16 | MII_PHYSID2;
752 phy_reg = mdiobus_read(bus, addr, reg_addr);
753 if (phy_reg < 0)
754 return -EIO;
Heiner Kallweit50684da2019-02-09 09:46:53 +0100755 c45_ids->device_ids[i] |= phy_reg;
David Daneyac28b9f2012-06-27 07:33:35 +0000756 }
757 *phy_id = 0;
758 return 0;
759}
Vitaly Bordug11b0bac2006-08-14 23:00:29 -0700760
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800761/**
Paul Gortmakercac1f3c2008-04-15 12:49:21 -0400762 * get_phy_id - reads the specified addr for its ID.
763 * @bus: the target MII bus
764 * @addr: PHY address on the MII bus
765 * @phy_id: where to store the ID retrieved.
David Daneyac28b9f2012-06-27 07:33:35 +0000766 * @is_c45: If true the PHY uses the 802.3 clause 45 protocol
767 * @c45_ids: where to store the c45 ID information.
Paul Gortmakercac1f3c2008-04-15 12:49:21 -0400768 *
David Daneyac28b9f2012-06-27 07:33:35 +0000769 * Description: In the case of a 802.3-c22 PHY, reads the ID registers
770 * of the PHY at @addr on the @bus, stores it in @phy_id and returns
771 * zero on success.
772 *
773 * In the case of a 802.3-c45 PHY, get_phy_c45_ids() is invoked, and
774 * its return value is in turn returned.
775 *
Paul Gortmakercac1f3c2008-04-15 12:49:21 -0400776 */
David Daneyac28b9f2012-06-27 07:33:35 +0000777static int get_phy_id(struct mii_bus *bus, int addr, u32 *phy_id,
778 bool is_c45, struct phy_c45_device_ids *c45_ids)
Paul Gortmakercac1f3c2008-04-15 12:49:21 -0400779{
780 int phy_reg;
781
David Daneyac28b9f2012-06-27 07:33:35 +0000782 if (is_c45)
783 return get_phy_c45_ids(bus, addr, phy_id, c45_ids);
784
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300785 /* Grab the bits from PHYIR1, and put them in the upper half */
David Daney6fe32642011-09-30 11:51:22 +0000786 phy_reg = mdiobus_read(bus, addr, MII_PHYSID1);
Alexandre Belloni02a6efc2018-04-24 18:09:04 +0200787 if (phy_reg < 0) {
Heiner Kallweitd8cce3a2019-01-16 19:52:51 +0100788 /* returning -ENODEV doesn't stop bus scanning */
789 return (phy_reg == -EIO || phy_reg == -ENODEV) ? -ENODEV : -EIO;
Alexandre Belloni02a6efc2018-04-24 18:09:04 +0200790 }
Paul Gortmakercac1f3c2008-04-15 12:49:21 -0400791
Heiner Kallweit50684da2019-02-09 09:46:53 +0100792 *phy_id = phy_reg << 16;
Paul Gortmakercac1f3c2008-04-15 12:49:21 -0400793
794 /* Grab the bits from PHYIR2, and put them in the lower half */
David Daney6fe32642011-09-30 11:51:22 +0000795 phy_reg = mdiobus_read(bus, addr, MII_PHYSID2);
Paul Gortmakercac1f3c2008-04-15 12:49:21 -0400796 if (phy_reg < 0)
797 return -EIO;
798
Heiner Kallweit50684da2019-02-09 09:46:53 +0100799 *phy_id |= phy_reg;
Paul Gortmakercac1f3c2008-04-15 12:49:21 -0400800
801 return 0;
802}
803
804/**
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300805 * get_phy_device - reads the specified PHY device and returns its @phy_device
806 * struct
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800807 * @bus: the target MII bus
808 * @addr: PHY address on the MII bus
David Daneyac28b9f2012-06-27 07:33:35 +0000809 * @is_c45: If true the PHY uses the 802.3 clause 45 protocol
Andy Fleming00db8182005-07-30 19:31:23 -0400810 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800811 * Description: Reads the ID registers of the PHY at @addr on the
812 * @bus, then allocates and returns the phy_device to represent it.
Andy Fleming00db8182005-07-30 19:31:23 -0400813 */
David Daneyac28b9f2012-06-27 07:33:35 +0000814struct phy_device *get_phy_device(struct mii_bus *bus, int addr, bool is_c45)
Andy Fleming00db8182005-07-30 19:31:23 -0400815{
Russell Kingb95e86d2019-11-15 20:08:37 +0000816 struct phy_c45_device_ids c45_ids;
David S. Miller160c85f2012-06-27 21:28:14 -0700817 u32 phy_id = 0;
Paul Gortmakercac1f3c2008-04-15 12:49:21 -0400818 int r;
Andy Fleming00db8182005-07-30 19:31:23 -0400819
Russell Kingb95e86d2019-11-15 20:08:37 +0000820 c45_ids.devices_in_package = 0;
821 memset(c45_ids.device_ids, 0xff, sizeof(c45_ids.device_ids));
822
David Daneyac28b9f2012-06-27 07:33:35 +0000823 r = get_phy_id(bus, addr, &phy_id, is_c45, &c45_ids);
Paul Gortmakercac1f3c2008-04-15 12:49:21 -0400824 if (r)
825 return ERR_PTR(r);
Andy Fleming00db8182005-07-30 19:31:23 -0400826
Giuseppe Cavallaro6436cbc2008-11-20 20:43:18 -0800827 /* If the phy_id is mostly Fs, there is no device there */
828 if ((phy_id & 0x1fffffff) == 0x1fffffff)
Sergei Shtylyovb74766a2016-04-24 20:25:23 +0300829 return ERR_PTR(-ENODEV);
Giuseppe Cavallaro6436cbc2008-11-20 20:43:18 -0800830
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300831 return phy_device_create(bus, addr, phy_id, is_c45, &c45_ids);
Andy Fleming00db8182005-07-30 19:31:23 -0400832}
Grant Likely4dea5472009-04-25 12:52:46 +0000833EXPORT_SYMBOL(get_phy_device);
834
835/**
836 * phy_device_register - Register the phy device on the MDIO bus
Randy Dunlap1d4ac5d2009-06-16 16:56:33 +0000837 * @phydev: phy_device structure to be added to the MDIO bus
Grant Likely4dea5472009-04-25 12:52:46 +0000838 */
839int phy_device_register(struct phy_device *phydev)
840{
841 int err;
842
Andrew Lunn7f854422016-01-06 20:11:18 +0100843 err = mdiobus_register_device(&phydev->mdio);
844 if (err)
845 return err;
Grant Likely4dea5472009-04-25 12:52:46 +0000846
Sergei Shtylyovbafbdd52017-12-04 13:35:05 +0100847 /* Deassert the reset signal */
848 phy_device_reset(phydev, 0);
849
Grant Likely4dea5472009-04-25 12:52:46 +0000850 /* Run all of the fixups for this PHY */
Florian Fainellid92f5de2014-07-28 16:28:07 -0700851 err = phy_scan_fixups(phydev);
Florian Fainelli87aa9f92013-12-06 13:01:34 -0800852 if (err) {
Heiner Kallweitc3a6a172019-01-15 21:50:25 +0100853 phydev_err(phydev, "failed to initialize\n");
Florian Fainelli87aa9f92013-12-06 13:01:34 -0800854 goto out;
855 }
Grant Likely4dea5472009-04-25 12:52:46 +0000856
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100857 err = device_add(&phydev->mdio.dev);
Grant Likely4dea5472009-04-25 12:52:46 +0000858 if (err) {
Heiner Kallweitc3a6a172019-01-15 21:50:25 +0100859 phydev_err(phydev, "failed to add\n");
Grant Likely4dea5472009-04-25 12:52:46 +0000860 goto out;
861 }
862
863 return 0;
864
865 out:
Sergei Shtylyovbafbdd52017-12-04 13:35:05 +0100866 /* Assert the reset signal */
867 phy_device_reset(phydev, 1);
868
Andrew Lunn7f854422016-01-06 20:11:18 +0100869 mdiobus_unregister_device(&phydev->mdio);
Grant Likely4dea5472009-04-25 12:52:46 +0000870 return err;
871}
872EXPORT_SYMBOL(phy_device_register);
Andy Fleming00db8182005-07-30 19:31:23 -0400873
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800874/**
Russell King38737e42015-09-24 20:36:28 +0100875 * phy_device_remove - Remove a previously registered phy device from the MDIO bus
876 * @phydev: phy_device structure to remove
877 *
878 * This doesn't free the phy_device itself, it merely reverses the effects
879 * of phy_device_register(). Use phy_device_free() to free the device
880 * after calling this function.
881 */
882void phy_device_remove(struct phy_device *phydev)
883{
Richard Cochran1dca22b2019-12-25 18:16:18 -0800884 if (phydev->mii_ts)
885 unregister_mii_timestamper(phydev->mii_ts);
886
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100887 device_del(&phydev->mdio.dev);
Sergei Shtylyovbafbdd52017-12-04 13:35:05 +0100888
889 /* Assert the reset signal */
890 phy_device_reset(phydev, 1);
891
Andrew Lunn7f854422016-01-06 20:11:18 +0100892 mdiobus_unregister_device(&phydev->mdio);
Russell King38737e42015-09-24 20:36:28 +0100893}
894EXPORT_SYMBOL(phy_device_remove);
895
896/**
Jiri Pirkof8f76db2010-02-04 10:23:02 -0800897 * phy_find_first - finds the first PHY device on the bus
898 * @bus: the target MII bus
899 */
900struct phy_device *phy_find_first(struct mii_bus *bus)
901{
Andrew Lunn7f854422016-01-06 20:11:18 +0100902 struct phy_device *phydev;
Jiri Pirkof8f76db2010-02-04 10:23:02 -0800903 int addr;
904
905 for (addr = 0; addr < PHY_MAX_ADDR; addr++) {
Andrew Lunn7f854422016-01-06 20:11:18 +0100906 phydev = mdiobus_get_phy(bus, addr);
907 if (phydev)
908 return phydev;
Jiri Pirkof8f76db2010-02-04 10:23:02 -0800909 }
910 return NULL;
911}
912EXPORT_SYMBOL(phy_find_first);
913
Russell Kinga81497b2017-07-25 15:02:58 +0100914static void phy_link_change(struct phy_device *phydev, bool up, bool do_carrier)
915{
916 struct net_device *netdev = phydev->attached_dev;
917
918 if (do_carrier) {
919 if (up)
920 netif_carrier_on(netdev);
921 else
922 netif_carrier_off(netdev);
923 }
924 phydev->adjust_link(netdev);
Richard Cochran4715f652019-12-25 18:16:15 -0800925 if (phydev->mii_ts && phydev->mii_ts->link_state)
926 phydev->mii_ts->link_state(phydev->mii_ts, phydev);
Russell Kinga81497b2017-07-25 15:02:58 +0100927}
928
Jiri Pirkof8f76db2010-02-04 10:23:02 -0800929/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800930 * phy_prepare_link - prepares the PHY layer to monitor link status
931 * @phydev: target phy_device struct
932 * @handler: callback function for link status change notifications
Andy Fleming00db8182005-07-30 19:31:23 -0400933 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800934 * Description: Tells the PHY infrastructure to handle the
Andy Fleming00db8182005-07-30 19:31:23 -0400935 * gory details on monitoring link status (whether through
936 * polling or an interrupt), and to call back to the
937 * connected device driver when the link status changes.
938 * If you want to monitor your own link state, don't call
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800939 * this function.
940 */
stephen hemminger89ff05e2010-10-21 08:37:41 +0000941static void phy_prepare_link(struct phy_device *phydev,
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300942 void (*handler)(struct net_device *))
Andy Fleming00db8182005-07-30 19:31:23 -0400943{
944 phydev->adjust_link = handler;
945}
946
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800947/**
Grant Likelyfa94f6d2009-04-25 12:52:51 +0000948 * phy_connect_direct - connect an ethernet device to a specific phy_device
949 * @dev: the network device to connect
950 * @phydev: the pointer to the phy device
951 * @handler: callback function for state change notifications
Grant Likelyfa94f6d2009-04-25 12:52:51 +0000952 * @interface: PHY device's interface
953 */
954int phy_connect_direct(struct net_device *dev, struct phy_device *phydev,
Florian Fainellif9a8f832013-01-14 00:52:52 +0000955 void (*handler)(struct net_device *),
Grant Likelyfa94f6d2009-04-25 12:52:51 +0000956 phy_interface_t interface)
957{
958 int rc;
959
Ioana Ciornei82c76ac2019-05-28 20:38:09 +0300960 if (!dev)
961 return -EINVAL;
962
Florian Fainellif9a8f832013-01-14 00:52:52 +0000963 rc = phy_attach_direct(dev, phydev, phydev->dev_flags, interface);
Grant Likelyfa94f6d2009-04-25 12:52:51 +0000964 if (rc)
965 return rc;
966
967 phy_prepare_link(phydev, handler);
Heiner Kallweit434a4312019-01-23 07:31:58 +0100968 if (phy_interrupt_is_valid(phydev))
969 phy_request_interrupt(phydev);
Grant Likelyfa94f6d2009-04-25 12:52:51 +0000970
971 return 0;
972}
973EXPORT_SYMBOL(phy_connect_direct);
974
975/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800976 * phy_connect - connect an ethernet device to a PHY device
977 * @dev: the network device to connect
Randy Dunlap5d12b132008-04-28 10:58:22 -0700978 * @bus_id: the id string of the PHY device to connect
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800979 * @handler: callback function for state change notifications
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800980 * @interface: PHY device's interface
Andy Fleminge1393452005-08-24 18:46:21 -0500981 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800982 * Description: Convenience function for connecting ethernet
Andy Fleminge1393452005-08-24 18:46:21 -0500983 * devices to PHY devices. The default behavior is for
984 * the PHY infrastructure to handle everything, and only notify
985 * the connected driver when the link status changes. If you
986 * don't want, or can't use the provided functionality, you may
987 * choose to call only the subset of functions which provide
988 * the desired functionality.
989 */
Florian Fainellie1093742013-12-17 21:38:12 -0800990struct phy_device *phy_connect(struct net_device *dev, const char *bus_id,
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300991 void (*handler)(struct net_device *),
992 phy_interface_t interface)
Andy Fleminge1393452005-08-24 18:46:21 -0500993{
994 struct phy_device *phydev;
Grant Likelyfa94f6d2009-04-25 12:52:51 +0000995 struct device *d;
996 int rc;
Andy Fleminge1393452005-08-24 18:46:21 -0500997
Grant Likelyfa94f6d2009-04-25 12:52:51 +0000998 /* Search the list of PHY devices on the mdio bus for the
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300999 * PHY with the requested name
1000 */
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001001 d = bus_find_device_by_name(&mdio_bus_type, NULL, bus_id);
1002 if (!d) {
1003 pr_err("PHY %s not found\n", bus_id);
1004 return ERR_PTR(-ENODEV);
1005 }
1006 phydev = to_phy_device(d);
Andy Fleminge1393452005-08-24 18:46:21 -05001007
Florian Fainellif9a8f832013-01-14 00:52:52 +00001008 rc = phy_connect_direct(dev, phydev, handler, interface);
Johan Hovold17ae1c62016-11-03 18:40:19 +01001009 put_device(d);
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001010 if (rc)
1011 return ERR_PTR(rc);
Andy Fleminge1393452005-08-24 18:46:21 -05001012
1013 return phydev;
1014}
1015EXPORT_SYMBOL(phy_connect);
1016
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001017/**
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001018 * phy_disconnect - disable interrupts, stop state machine, and detach a PHY
1019 * device
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001020 * @phydev: target phy_device struct
1021 */
Andy Fleminge1393452005-08-24 18:46:21 -05001022void phy_disconnect(struct phy_device *phydev)
1023{
Heiner Kallweit472115d2019-01-17 20:07:54 +01001024 if (phy_is_started(phydev))
1025 phy_stop(phydev);
1026
Heiner Kallweitbb658ab2019-01-17 20:09:21 +01001027 if (phy_interrupt_is_valid(phydev))
Heiner Kallweit07b09282019-05-30 15:09:15 +02001028 phy_free_interrupt(phydev);
Andy Fleminge1393452005-08-24 18:46:21 -05001029
Andy Fleminge1393452005-08-24 18:46:21 -05001030 phydev->adjust_link = NULL;
1031
1032 phy_detach(phydev);
1033}
1034EXPORT_SYMBOL(phy_disconnect);
1035
Florian Fainelli87aa9f92013-12-06 13:01:34 -08001036/**
1037 * phy_poll_reset - Safely wait until a PHY reset has properly completed
1038 * @phydev: The PHY device to poll
1039 *
1040 * Description: According to IEEE 802.3, Section 2, Subsection 22.2.4.1.1, as
1041 * published in 2008, a PHY reset may take up to 0.5 seconds. The MII BMCR
1042 * register must be polled until the BMCR_RESET bit clears.
1043 *
1044 * Furthermore, any attempts to write to PHY registers may have no effect
1045 * or even generate MDIO bus errors until this is complete.
1046 *
1047 * Some PHYs (such as the Marvell 88E1111) don't entirely conform to the
1048 * standard and do not fully reset after the BMCR_RESET bit is set, and may
1049 * even *REQUIRE* a soft-reset to properly restart autonegotiation. In an
1050 * effort to support such broken PHYs, this function is separate from the
1051 * standard phy_init_hw() which will zero all the other bits in the BMCR
1052 * and reapply all driver-specific and board-specific fixups.
1053 */
1054static int phy_poll_reset(struct phy_device *phydev)
1055{
1056 /* Poll until the reset bit clears (50ms per retry == 0.6 sec) */
1057 unsigned int retries = 12;
1058 int ret;
1059
1060 do {
1061 msleep(50);
1062 ret = phy_read(phydev, MII_BMCR);
1063 if (ret < 0)
1064 return ret;
1065 } while (ret & BMCR_RESET && --retries);
1066 if (ret & BMCR_RESET)
1067 return -ETIMEDOUT;
1068
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001069 /* Some chips (smsc911x) may still need up to another 1ms after the
Florian Fainelli87aa9f92013-12-06 13:01:34 -08001070 * BMCR_RESET bit is cleared before they are usable.
1071 */
1072 msleep(1);
1073 return 0;
1074}
1075
Anton Vorontsov2f5cb432009-12-30 08:23:30 +00001076int phy_init_hw(struct phy_device *phydev)
1077{
Florian Fainelli9df81dd2014-02-17 13:34:03 -08001078 int ret = 0;
Anton Vorontsov2f5cb432009-12-30 08:23:30 +00001079
Sergei Shtylyovbafbdd52017-12-04 13:35:05 +01001080 /* Deassert the reset signal */
1081 phy_device_reset(phydev, 0);
1082
Heiner Kallweita5996982019-01-19 10:43:07 +01001083 if (!phydev->drv)
Anton Vorontsov2f5cb432009-12-30 08:23:30 +00001084 return 0;
1085
Florian Fainelli9df81dd2014-02-17 13:34:03 -08001086 if (phydev->drv->soft_reset)
1087 ret = phydev->drv->soft_reset(phydev);
Florian Fainelli9df81dd2014-02-17 13:34:03 -08001088
Florian Fainelli87aa9f92013-12-06 13:01:34 -08001089 if (ret < 0)
1090 return ret;
1091
Anton Vorontsov2f5cb432009-12-30 08:23:30 +00001092 ret = phy_scan_fixups(phydev);
1093 if (ret < 0)
1094 return ret;
1095
Heiner Kallweita5996982019-01-19 10:43:07 +01001096 if (phydev->drv->config_init)
1097 ret = phydev->drv->config_init(phydev);
1098
1099 return ret;
Anton Vorontsov2f5cb432009-12-30 08:23:30 +00001100}
Florian Fainelli87aa9f92013-12-06 13:01:34 -08001101EXPORT_SYMBOL(phy_init_hw);
Anton Vorontsov2f5cb432009-12-30 08:23:30 +00001102
Andrew Lunn22209432016-01-06 20:11:13 +01001103void phy_attached_info(struct phy_device *phydev)
1104{
1105 phy_attached_print(phydev, NULL);
1106}
1107EXPORT_SYMBOL(phy_attached_info);
1108
Romain Perier5e369ae2017-09-04 10:41:36 +02001109#define ATTACHED_FMT "attached PHY driver [%s] (mii_bus:phy_addr=%s, irq=%s)"
Andrew Lunn22209432016-01-06 20:11:13 +01001110void phy_attached_print(struct phy_device *phydev, const char *fmt, ...)
1111{
Florian Fainellifcd03e32017-08-22 14:26:47 -07001112 const char *drv_name = phydev->drv ? phydev->drv->name : "unbound";
Romain Perier5e369ae2017-09-04 10:41:36 +02001113 char *irq_str;
Geert Uytterhoeven059fbe82017-09-21 13:27:02 +02001114 char irq_num[8];
Romain Perier5e369ae2017-09-04 10:41:36 +02001115
1116 switch(phydev->irq) {
1117 case PHY_POLL:
1118 irq_str = "POLL";
1119 break;
1120 case PHY_IGNORE_INTERRUPT:
1121 irq_str = "IGNORE";
1122 break;
1123 default:
1124 snprintf(irq_num, sizeof(irq_num), "%d", phydev->irq);
1125 irq_str = irq_num;
1126 break;
1127 }
1128
Florian Fainellifcd03e32017-08-22 14:26:47 -07001129
Andrew Lunn22209432016-01-06 20:11:13 +01001130 if (!fmt) {
Andrew Lunnc4fabb82018-09-29 23:04:11 +02001131 phydev_info(phydev, ATTACHED_FMT "\n",
Florian Fainellifcd03e32017-08-22 14:26:47 -07001132 drv_name, phydev_name(phydev),
Romain Perier5e369ae2017-09-04 10:41:36 +02001133 irq_str);
Andrew Lunn22209432016-01-06 20:11:13 +01001134 } else {
1135 va_list ap;
1136
Andrew Lunnc4fabb82018-09-29 23:04:11 +02001137 phydev_info(phydev, ATTACHED_FMT,
Florian Fainellifcd03e32017-08-22 14:26:47 -07001138 drv_name, phydev_name(phydev),
Romain Perier5e369ae2017-09-04 10:41:36 +02001139 irq_str);
Andrew Lunn22209432016-01-06 20:11:13 +01001140
1141 va_start(ap, fmt);
1142 vprintk(fmt, ap);
1143 va_end(ap);
1144 }
1145}
1146EXPORT_SYMBOL(phy_attached_print);
1147
Vladimir Oltean53cfca22019-05-28 20:38:07 +03001148static void phy_sysfs_create_links(struct phy_device *phydev)
1149{
1150 struct net_device *dev = phydev->attached_dev;
1151 int err;
1152
Ioana Ciornei2db2d9d12019-05-28 20:38:08 +03001153 if (!dev)
1154 return;
1155
Vladimir Oltean53cfca22019-05-28 20:38:07 +03001156 err = sysfs_create_link(&phydev->mdio.dev.kobj, &dev->dev.kobj,
1157 "attached_dev");
1158 if (err)
1159 return;
1160
1161 err = sysfs_create_link_nowarn(&dev->dev.kobj,
1162 &phydev->mdio.dev.kobj,
1163 "phydev");
1164 if (err) {
1165 dev_err(&dev->dev, "could not add device link to %s err %d\n",
1166 kobject_name(&phydev->mdio.dev.kobj),
1167 err);
1168 /* non-fatal - some net drivers can use one netdevice
1169 * with more then one phy
1170 */
1171 }
1172
1173 phydev->sysfs_links = true;
1174}
1175
Ioana Ciorneic920f742019-05-28 20:38:10 +03001176static ssize_t
1177phy_standalone_show(struct device *dev, struct device_attribute *attr,
1178 char *buf)
1179{
1180 struct phy_device *phydev = to_phy_device(dev);
1181
1182 return sprintf(buf, "%d\n", !phydev->attached_dev);
1183}
1184static DEVICE_ATTR_RO(phy_standalone);
1185
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001186/**
Russell King298e54f2019-11-15 19:56:51 +00001187 * phy_sfp_attach - attach the SFP bus to the PHY upstream network device
1188 * @upstream: pointer to the phy device
1189 * @bus: sfp bus representing cage being attached
1190 *
1191 * This is used to fill in the sfp_upstream_ops .attach member.
1192 */
1193void phy_sfp_attach(void *upstream, struct sfp_bus *bus)
1194{
1195 struct phy_device *phydev = upstream;
1196
1197 if (phydev->attached_dev)
1198 phydev->attached_dev->sfp_bus = bus;
1199 phydev->sfp_bus_attached = true;
1200}
1201EXPORT_SYMBOL(phy_sfp_attach);
1202
1203/**
1204 * phy_sfp_detach - detach the SFP bus from the PHY upstream network device
1205 * @upstream: pointer to the phy device
1206 * @bus: sfp bus representing cage being attached
1207 *
1208 * This is used to fill in the sfp_upstream_ops .detach member.
1209 */
1210void phy_sfp_detach(void *upstream, struct sfp_bus *bus)
1211{
1212 struct phy_device *phydev = upstream;
1213
1214 if (phydev->attached_dev)
1215 phydev->attached_dev->sfp_bus = NULL;
1216 phydev->sfp_bus_attached = false;
1217}
1218EXPORT_SYMBOL(phy_sfp_detach);
1219
1220/**
1221 * phy_sfp_probe - probe for a SFP cage attached to this PHY device
1222 * @phydev: Pointer to phy_device
1223 * @ops: SFP's upstream operations
1224 */
1225int phy_sfp_probe(struct phy_device *phydev,
1226 const struct sfp_upstream_ops *ops)
1227{
1228 struct sfp_bus *bus;
1229 int ret;
1230
1231 if (phydev->mdio.dev.fwnode) {
1232 bus = sfp_bus_find_fwnode(phydev->mdio.dev.fwnode);
1233 if (IS_ERR(bus))
1234 return PTR_ERR(bus);
1235
1236 phydev->sfp_bus = bus;
1237
1238 ret = sfp_bus_add_upstream(bus, phydev, ops);
1239 sfp_bus_put(bus);
1240 }
1241 return 0;
1242}
1243EXPORT_SYMBOL(phy_sfp_probe);
1244
1245/**
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001246 * phy_attach_direct - attach a network device to a given PHY device pointer
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001247 * @dev: network device to attach
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001248 * @phydev: Pointer to phy_device to attach
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001249 * @flags: PHY device's dev_flags
1250 * @interface: PHY device's interface
1251 *
1252 * Description: Called by drivers to attach to a particular PHY
1253 * device. The phy_device is found, and properly hooked up
Andy Fleming257184d2014-01-10 14:27:54 +08001254 * to the phy_driver. If no driver is attached, then a
1255 * generic driver is used. The phy_device is given a ptr to
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001256 * the attaching device, and given a callback for link status
1257 * change. The phy_device is returned to the attaching driver.
Russell King73229672015-09-24 20:36:08 +01001258 * This function takes a reference on the phy device.
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001259 */
Andy Fleming257184d2014-01-10 14:27:54 +08001260int phy_attach_direct(struct net_device *dev, struct phy_device *phydev,
1261 u32 flags, phy_interface_t interface)
Andy Fleminge1393452005-08-24 18:46:21 -05001262{
Andrew Lunne5a03bf2016-01-06 20:11:16 +01001263 struct mii_bus *bus = phydev->mdio.bus;
1264 struct device *d = &phydev->mdio.dev;
Ioana Ciornei2db2d9d12019-05-28 20:38:08 +03001265 struct module *ndev_owner = NULL;
Florian Fainelli6d9f66a2017-02-08 19:05:26 -08001266 bool using_genphy = false;
Marc Kleine-Budded005a092011-03-28 14:54:08 +00001267 int err;
Andy Fleminge1393452005-08-24 18:46:21 -05001268
Florian Fainelliec988ad2016-12-06 20:54:43 -08001269 /* For Ethernet device drivers that register their own MDIO bus, we
1270 * will have bus->owner match ndev_mod, so we do not want to increment
1271 * our own module->refcnt here, otherwise we would not be able to
1272 * unload later on.
1273 */
Ioana Ciornei2db2d9d12019-05-28 20:38:08 +03001274 if (dev)
1275 ndev_owner = dev->dev.parent->driver->owner;
Florian Fainelliec988ad2016-12-06 20:54:43 -08001276 if (ndev_owner != bus->owner && !try_module_get(bus->owner)) {
Ioana Ciornei2db2d9d12019-05-28 20:38:08 +03001277 phydev_err(phydev, "failed to get the bus module\n");
Russell King3e3aaf62015-09-24 20:36:02 +01001278 return -EIO;
1279 }
1280
Russell King73229672015-09-24 20:36:08 +01001281 get_device(d);
1282
Andy Fleminge1393452005-08-24 18:46:21 -05001283 /* Assume that if there is no driver, that it doesn't
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001284 * exist, and we should use the genphy driver.
1285 */
Sergei Shtylyovef899c02015-08-28 21:35:14 +03001286 if (!d->driver) {
Andy Fleming257184d2014-01-10 14:27:54 +08001287 if (phydev->is_c45)
Heiner Kallweit22b56e82019-04-07 13:55:01 +02001288 d->driver = &genphy_c45_driver.mdiodrv.driver;
Andy Fleming257184d2014-01-10 14:27:54 +08001289 else
Russell King921690f2017-06-05 12:23:05 +01001290 d->driver = &genphy_driver.mdiodrv.driver;
Andy Fleminge1393452005-08-24 18:46:21 -05001291
Florian Fainelli6d9f66a2017-02-08 19:05:26 -08001292 using_genphy = true;
1293 }
1294
1295 if (!try_module_get(d->driver->owner)) {
Ioana Ciornei2db2d9d12019-05-28 20:38:08 +03001296 phydev_err(phydev, "failed to get the device driver module\n");
Florian Fainelli6d9f66a2017-02-08 19:05:26 -08001297 err = -EIO;
1298 goto error_put_device;
1299 }
1300
1301 if (using_genphy) {
Andy Fleminge1393452005-08-24 18:46:21 -05001302 err = d->driver->probe(d);
Jeff Garzikb7a00ec2006-10-01 07:27:46 -04001303 if (err >= 0)
1304 err = device_bind_driver(d);
Andy Fleminge1393452005-08-24 18:46:21 -05001305
Jeff Garzikb7a00ec2006-10-01 07:27:46 -04001306 if (err)
Florian Fainelli6d9f66a2017-02-08 19:05:26 -08001307 goto error_module_put;
Andy Fleminge1393452005-08-24 18:46:21 -05001308 }
1309
1310 if (phydev->attached_dev) {
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001311 dev_err(&dev->dev, "PHY already attached\n");
Russell King3e3aaf62015-09-24 20:36:02 +01001312 err = -EBUSY;
1313 goto error;
Ezequiel Garciab3565f22014-07-23 16:47:32 -03001314 }
1315
Russell Kinga81497b2017-07-25 15:02:58 +01001316 phydev->phy_link_change = phy_link_change;
Ioana Ciornei2db2d9d12019-05-28 20:38:08 +03001317 if (dev) {
1318 phydev->attached_dev = dev;
1319 dev->phydev = phydev;
Russell King298e54f2019-11-15 19:56:51 +00001320
1321 if (phydev->sfp_bus_attached)
1322 dev->sfp_bus = phydev->sfp_bus;
Ioana Ciornei2db2d9d12019-05-28 20:38:08 +03001323 }
Florian Fainellia3995462017-05-27 10:42:25 -07001324
1325 /* Some Ethernet drivers try to connect to a PHY device before
1326 * calling register_netdevice() -> netdev_register_kobject() and
1327 * does the dev->dev.kobj initialization. Here we only check for
1328 * success which indicates that the network device kobject is
1329 * ready. Once we do that we still need to keep track of whether
1330 * links were successfully set up or not for phy_detach() to
1331 * remove them accordingly.
1332 */
1333 phydev->sysfs_links = false;
1334
Vladimir Oltean53cfca22019-05-28 20:38:07 +03001335 phy_sysfs_create_links(phydev);
Andy Fleminge1393452005-08-24 18:46:21 -05001336
Ioana Ciorneic920f742019-05-28 20:38:10 +03001337 if (!phydev->attached_dev) {
1338 err = sysfs_create_file(&phydev->mdio.dev.kobj,
1339 &dev_attr_phy_standalone.attr);
1340 if (err)
1341 phydev_err(phydev, "error creating 'phy_standalone' sysfs entry\n");
1342 }
1343
Tao Rene7312ef2019-10-22 11:31:06 -07001344 phydev->dev_flags |= flags;
Andy Fleminge1393452005-08-24 18:46:21 -05001345
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001346 phydev->interface = interface;
1347
Anton Vorontsovef24b162010-08-24 14:46:12 -07001348 phydev->state = PHY_READY;
1349
Sjoerd Simons113c74d2016-01-14 21:57:18 +01001350 /* Initial carrier state is off as the phy is about to be
1351 * (re)initialized.
1352 */
Ioana Ciornei2db2d9d12019-05-28 20:38:08 +03001353 if (dev)
1354 netif_carrier_off(phydev->attached_dev);
Sjoerd Simons113c74d2016-01-14 21:57:18 +01001355
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001356 /* Do initial configuration here, now that
1357 * we have certain key parameters
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001358 * (dev_flags and interface)
1359 */
Marc Kleine-Budded005a092011-03-28 14:54:08 +00001360 err = phy_init_hw(phydev);
1361 if (err)
Woojung Huha7dac9f2016-11-23 23:10:33 +00001362 goto error;
Sebastian Hesselbarth1211ce52013-12-13 10:20:28 +01001363
Woojung Huha7dac9f2016-11-23 23:10:33 +00001364 phy_resume(phydev);
Zach Brown2e0bc452016-10-17 10:49:55 -05001365 phy_led_triggers_register(phydev);
1366
Marc Kleine-Budded005a092011-03-28 14:54:08 +00001367 return err;
Russell King3e3aaf62015-09-24 20:36:02 +01001368
1369error:
Florian Fainelli6d9f66a2017-02-08 19:05:26 -08001370 /* phy_detach() does all of the cleanup below */
Woojung Huha7dac9f2016-11-23 23:10:33 +00001371 phy_detach(phydev);
Florian Fainelli6d9f66a2017-02-08 19:05:26 -08001372 return err;
1373
1374error_module_put:
Mao Wenancafe8df2017-01-31 18:46:43 -08001375 module_put(d->driver->owner);
Florian Fainelli6d9f66a2017-02-08 19:05:26 -08001376error_put_device:
1377 put_device(d);
Florian Fainelliec988ad2016-12-06 20:54:43 -08001378 if (ndev_owner != bus->owner)
1379 module_put(bus->owner);
Russell King3e3aaf62015-09-24 20:36:02 +01001380 return err;
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001381}
Andy Fleming257184d2014-01-10 14:27:54 +08001382EXPORT_SYMBOL(phy_attach_direct);
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001383
1384/**
1385 * phy_attach - attach a network device to a particular PHY device
1386 * @dev: network device to attach
1387 * @bus_id: Bus ID of PHY device to attach
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001388 * @interface: PHY device's interface
1389 *
1390 * Description: Same as phy_attach_direct() except that a PHY bus_id
1391 * string is passed instead of a pointer to a struct phy_device.
1392 */
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001393struct phy_device *phy_attach(struct net_device *dev, const char *bus_id,
1394 phy_interface_t interface)
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001395{
1396 struct bus_type *bus = &mdio_bus_type;
1397 struct phy_device *phydev;
1398 struct device *d;
1399 int rc;
1400
Ioana Ciornei82c76ac2019-05-28 20:38:09 +03001401 if (!dev)
1402 return ERR_PTR(-EINVAL);
1403
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001404 /* Search the list of PHY devices on the mdio bus for the
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001405 * PHY with the requested name
1406 */
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001407 d = bus_find_device_by_name(bus, NULL, bus_id);
1408 if (!d) {
1409 pr_err("PHY %s not found\n", bus_id);
1410 return ERR_PTR(-ENODEV);
1411 }
1412 phydev = to_phy_device(d);
1413
Florian Fainellif9a8f832013-01-14 00:52:52 +00001414 rc = phy_attach_direct(dev, phydev, phydev->dev_flags, interface);
Johan Hovold17ae1c62016-11-03 18:40:19 +01001415 put_device(d);
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001416 if (rc)
1417 return ERR_PTR(rc);
1418
Andy Fleminge1393452005-08-24 18:46:21 -05001419 return phydev;
1420}
1421EXPORT_SYMBOL(phy_attach);
1422
Florian Fainelli5db5ea92019-01-15 15:09:35 -08001423static bool phy_driver_is_genphy_kind(struct phy_device *phydev,
1424 struct device_driver *driver)
1425{
1426 struct device *d = &phydev->mdio.dev;
1427 bool ret = false;
1428
1429 if (!phydev->drv)
1430 return ret;
1431
1432 get_device(d);
1433 ret = d->driver == driver;
1434 put_device(d);
1435
1436 return ret;
1437}
1438
1439bool phy_driver_is_genphy(struct phy_device *phydev)
1440{
1441 return phy_driver_is_genphy_kind(phydev,
1442 &genphy_driver.mdiodrv.driver);
1443}
1444EXPORT_SYMBOL_GPL(phy_driver_is_genphy);
1445
1446bool phy_driver_is_genphy_10g(struct phy_device *phydev)
1447{
1448 return phy_driver_is_genphy_kind(phydev,
Heiner Kallweit22b56e82019-04-07 13:55:01 +02001449 &genphy_c45_driver.mdiodrv.driver);
Florian Fainelli5db5ea92019-01-15 15:09:35 -08001450}
1451EXPORT_SYMBOL_GPL(phy_driver_is_genphy_10g);
1452
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001453/**
1454 * phy_detach - detach a PHY device from its network device
1455 * @phydev: target phy_device struct
Russell King73229672015-09-24 20:36:08 +01001456 *
1457 * This detaches the phy device from its network device and the phy
1458 * driver, and drops the reference count taken in phy_attach_direct().
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001459 */
Andy Fleminge1393452005-08-24 18:46:21 -05001460void phy_detach(struct phy_device *phydev)
1461{
Florian Fainelliec988ad2016-12-06 20:54:43 -08001462 struct net_device *dev = phydev->attached_dev;
Ioana Ciornei2db2d9d12019-05-28 20:38:08 +03001463 struct module *ndev_owner = NULL;
Russell King3e3aaf62015-09-24 20:36:02 +01001464 struct mii_bus *bus;
Ezequiel Garciab3565f22014-07-23 16:47:32 -03001465
Florian Fainellia3995462017-05-27 10:42:25 -07001466 if (phydev->sysfs_links) {
Ioana Ciornei2db2d9d12019-05-28 20:38:08 +03001467 if (dev)
1468 sysfs_remove_link(&dev->dev.kobj, "phydev");
Florian Fainellia3995462017-05-27 10:42:25 -07001469 sysfs_remove_link(&phydev->mdio.dev.kobj, "attached_dev");
1470 }
Ioana Ciorneic920f742019-05-28 20:38:10 +03001471
1472 if (!phydev->attached_dev)
1473 sysfs_remove_file(&phydev->mdio.dev.kobj,
1474 &dev_attr_phy_standalone.attr);
1475
Heiner Kallweit93f41e62018-09-24 22:01:32 +02001476 phy_suspend(phydev);
Ioana Ciornei2db2d9d12019-05-28 20:38:08 +03001477 if (dev) {
1478 phydev->attached_dev->phydev = NULL;
1479 phydev->attached_dev = NULL;
1480 }
Russell King9525ae82017-07-25 15:03:13 +01001481 phydev->phylink = NULL;
Andy Fleminge1393452005-08-24 18:46:21 -05001482
Geert Uytterhoeven0075bd62016-11-28 15:18:31 +01001483 phy_led_triggers_unregister(phydev);
1484
Florian Fainelli6d9f66a2017-02-08 19:05:26 -08001485 module_put(phydev->mdio.dev.driver->owner);
1486
Andy Fleminge1393452005-08-24 18:46:21 -05001487 /* If the device had no specific driver before (i.e. - it
1488 * was using the generic driver), we unbind the device
1489 * from the generic driver so that there's a chance a
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001490 * real driver could be loaded
1491 */
Florian Fainelli5db5ea92019-01-15 15:09:35 -08001492 if (phy_driver_is_genphy(phydev) ||
1493 phy_driver_is_genphy_10g(phydev))
Russell King921690f2017-06-05 12:23:05 +01001494 device_release_driver(&phydev->mdio.dev);
Russell King3e3aaf62015-09-24 20:36:02 +01001495
Russell King73229672015-09-24 20:36:08 +01001496 /*
1497 * The phydev might go away on the put_device() below, so avoid
1498 * a use-after-free bug by reading the underlying bus first.
1499 */
Andrew Lunne5a03bf2016-01-06 20:11:16 +01001500 bus = phydev->mdio.bus;
Russell King3e3aaf62015-09-24 20:36:02 +01001501
Andrew Lunne5a03bf2016-01-06 20:11:16 +01001502 put_device(&phydev->mdio.dev);
Ioana Ciornei2db2d9d12019-05-28 20:38:08 +03001503 if (dev)
1504 ndev_owner = dev->dev.parent->driver->owner;
Florian Fainelliec988ad2016-12-06 20:54:43 -08001505 if (ndev_owner != bus->owner)
1506 module_put(bus->owner);
Sergei Shtylyovbafbdd52017-12-04 13:35:05 +01001507
1508 /* Assert the reset signal */
1509 phy_device_reset(phydev, 1);
Andy Fleminge1393452005-08-24 18:46:21 -05001510}
1511EXPORT_SYMBOL(phy_detach);
1512
Sebastian Hesselbarth481b5d92013-12-13 10:20:27 +01001513int phy_suspend(struct phy_device *phydev)
1514{
Andrew Lunne5a03bf2016-01-06 20:11:16 +01001515 struct phy_driver *phydrv = to_phy_driver(phydev->mdio.dev.driver);
Heiner Kallweit93f41e62018-09-24 22:01:32 +02001516 struct net_device *netdev = phydev->attached_dev;
Sebastian Hesselbarth32fc3fd2014-03-14 10:07:44 +01001517 struct ethtool_wolinfo wol = { .cmd = ETHTOOL_GWOL };
Florian Fainelli8a477a62015-01-26 22:05:39 -08001518 int ret = 0;
Sebastian Hesselbarth481b5d92013-12-13 10:20:27 +01001519
1520 /* If the device has WOL enabled, we cannot suspend the PHY */
Sebastian Hesselbarth481b5d92013-12-13 10:20:27 +01001521 phy_ethtool_get_wol(phydev, &wol);
Heiner Kallweit93f41e62018-09-24 22:01:32 +02001522 if (wol.wolopts || (netdev && netdev->wol_enabled))
Sebastian Hesselbarth481b5d92013-12-13 10:20:27 +01001523 return -EBUSY;
1524
Florian Fainelli25149ef2017-02-17 16:07:34 -08001525 if (phydev->drv && phydrv->suspend)
Florian Fainelli8a477a62015-01-26 22:05:39 -08001526 ret = phydrv->suspend(phydev);
1527
1528 if (ret)
1529 return ret;
1530
1531 phydev->suspended = true;
1532
1533 return ret;
Sebastian Hesselbarth481b5d92013-12-13 10:20:27 +01001534}
Florian Fainellica127692014-07-08 10:38:36 -07001535EXPORT_SYMBOL(phy_suspend);
Sebastian Hesselbarth481b5d92013-12-13 10:20:27 +01001536
Andrew Lunn9c2c2e62018-02-27 01:56:06 +01001537int __phy_resume(struct phy_device *phydev)
Sebastian Hesselbarth481b5d92013-12-13 10:20:27 +01001538{
Andrew Lunne5a03bf2016-01-06 20:11:16 +01001539 struct phy_driver *phydrv = to_phy_driver(phydev->mdio.dev.driver);
Florian Fainelli8a477a62015-01-26 22:05:39 -08001540 int ret = 0;
Sebastian Hesselbarth481b5d92013-12-13 10:20:27 +01001541
Russell Kingf5e64032017-12-12 10:45:36 +00001542 WARN_ON(!mutex_is_locked(&phydev->lock));
1543
Florian Fainelli25149ef2017-02-17 16:07:34 -08001544 if (phydev->drv && phydrv->resume)
Florian Fainelli8a477a62015-01-26 22:05:39 -08001545 ret = phydrv->resume(phydev);
1546
1547 if (ret)
1548 return ret;
1549
1550 phydev->suspended = false;
1551
1552 return ret;
Sebastian Hesselbarth481b5d92013-12-13 10:20:27 +01001553}
Andrew Lunn9c2c2e62018-02-27 01:56:06 +01001554EXPORT_SYMBOL(__phy_resume);
1555
1556int phy_resume(struct phy_device *phydev)
1557{
1558 int ret;
1559
1560 mutex_lock(&phydev->lock);
1561 ret = __phy_resume(phydev);
1562 mutex_unlock(&phydev->lock);
1563
1564 return ret;
1565}
Florian Fainellica127692014-07-08 10:38:36 -07001566EXPORT_SYMBOL(phy_resume);
Andy Fleminge1393452005-08-24 18:46:21 -05001567
Lin Yun Shengf0f9b4e2017-06-30 17:44:15 +08001568int phy_loopback(struct phy_device *phydev, bool enable)
1569{
1570 struct phy_driver *phydrv = to_phy_driver(phydev->mdio.dev.driver);
1571 int ret = 0;
1572
1573 mutex_lock(&phydev->lock);
1574
1575 if (enable && phydev->loopback_enabled) {
1576 ret = -EBUSY;
1577 goto out;
1578 }
1579
1580 if (!enable && !phydev->loopback_enabled) {
1581 ret = -EINVAL;
1582 goto out;
1583 }
1584
1585 if (phydev->drv && phydrv->set_loopback)
1586 ret = phydrv->set_loopback(phydev, enable);
1587 else
1588 ret = -EOPNOTSUPP;
1589
1590 if (ret)
1591 goto out;
1592
1593 phydev->loopback_enabled = enable;
1594
1595out:
1596 mutex_unlock(&phydev->lock);
1597 return ret;
1598}
1599EXPORT_SYMBOL(phy_loopback);
1600
Richard Leitnera9668492017-12-11 13:16:58 +01001601/**
1602 * phy_reset_after_clk_enable - perform a PHY reset if needed
1603 * @phydev: target phy_device struct
1604 *
1605 * Description: Some PHYs are known to need a reset after their refclk was
1606 * enabled. This function evaluates the flags and perform the reset if it's
1607 * needed. Returns < 0 on error, 0 if the phy wasn't reset and 1 if the phy
1608 * was reset.
1609 */
1610int phy_reset_after_clk_enable(struct phy_device *phydev)
1611{
1612 if (!phydev || !phydev->drv)
1613 return -ENODEV;
1614
1615 if (phydev->drv->flags & PHY_RST_AFTER_CLK_EN) {
1616 phy_device_reset(phydev, 1);
1617 phy_device_reset(phydev, 0);
1618 return 1;
1619 }
1620
1621 return 0;
1622}
1623EXPORT_SYMBOL(phy_reset_after_clk_enable);
1624
Andy Fleming00db8182005-07-30 19:31:23 -04001625/* Generic PHY support and helper functions */
1626
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001627/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001628 * genphy_config_advert - sanitize and advertise auto-negotiation parameters
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001629 * @phydev: target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -04001630 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001631 * Description: Writes MII_ADVERTISE with the appropriate values,
Andy Fleming00db8182005-07-30 19:31:23 -04001632 * after sanitizing the values to make sure we only advertise
Trent Piepho51e2a382008-09-24 10:55:46 +00001633 * what is supported. Returns < 0 on error, 0 if the PHY's advertisement
1634 * hasn't changed, and > 0 if it has changed.
Andy Fleming00db8182005-07-30 19:31:23 -04001635 */
stephen hemminger89ff05e2010-10-21 08:37:41 +00001636static int genphy_config_advert(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -04001637{
Heiner Kallweit3eef8682019-08-09 20:43:04 +02001638 int err, bmsr, changed = 0;
1639 u32 adv;
Andy Fleming00db8182005-07-30 19:31:23 -04001640
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001641 /* Only allow advertising what this PHY supports */
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01001642 linkmode_and(phydev->advertising, phydev->advertising,
1643 phydev->supported);
Heiner Kallweit3eef8682019-08-09 20:43:04 +02001644
1645 adv = linkmode_adv_to_mii_adv_t(phydev->advertising);
Andy Fleming00db8182005-07-30 19:31:23 -04001646
1647 /* Setup standard advertisement */
Heiner Kallweit4f9744e2019-02-10 19:59:57 +01001648 err = phy_modify_changed(phydev, MII_ADVERTISE,
1649 ADVERTISE_ALL | ADVERTISE_100BASE4 |
1650 ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM,
Heiner Kallweit3eef8682019-08-09 20:43:04 +02001651 adv);
Heiner Kallweit4f9744e2019-02-10 19:59:57 +01001652 if (err < 0)
1653 return err;
1654 if (err > 0)
Trent Piepho51e2a382008-09-24 10:55:46 +00001655 changed = 1;
Andy Fleming00db8182005-07-30 19:31:23 -04001656
Florian Fainelli5273e3a2014-02-03 12:35:46 -08001657 bmsr = phy_read(phydev, MII_BMSR);
1658 if (bmsr < 0)
1659 return bmsr;
1660
1661 /* Per 802.3-2008, Section 22.2.4.2.16 Extended status all
1662 * 1000Mbits/sec capable PHYs shall have the BMSR_ESTATEN bit set to a
1663 * logical 1.
1664 */
1665 if (!(bmsr & BMSR_ESTATEN))
1666 return changed;
1667
Heiner Kallweit3eef8682019-08-09 20:43:04 +02001668 adv = linkmode_adv_to_mii_ctrl1000_t(phydev->advertising);
Andy Fleming00db8182005-07-30 19:31:23 -04001669
Heiner Kallweit4f9744e2019-02-10 19:59:57 +01001670 err = phy_modify_changed(phydev, MII_CTRL1000,
1671 ADVERTISE_1000FULL | ADVERTISE_1000HALF,
1672 adv);
Florian Fainelli5273e3a2014-02-03 12:35:46 -08001673 if (err < 0)
1674 return err;
Heiner Kallweit4f9744e2019-02-10 19:59:57 +01001675 if (err > 0)
1676 changed = 1;
Florian Fainelli5273e3a2014-02-03 12:35:46 -08001677
Trent Piepho51e2a382008-09-24 10:55:46 +00001678 return changed;
Andy Fleming00db8182005-07-30 19:31:23 -04001679}
Andy Fleming00db8182005-07-30 19:31:23 -04001680
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001681/**
Heiner Kallweitfa6e98c2019-10-22 11:31:07 -07001682 * genphy_c37_config_advert - sanitize and advertise auto-negotiation parameters
1683 * @phydev: target phy_device struct
1684 *
1685 * Description: Writes MII_ADVERTISE with the appropriate values,
1686 * after sanitizing the values to make sure we only advertise
1687 * what is supported. Returns < 0 on error, 0 if the PHY's advertisement
1688 * hasn't changed, and > 0 if it has changed. This function is intended
1689 * for Clause 37 1000Base-X mode.
1690 */
1691static int genphy_c37_config_advert(struct phy_device *phydev)
1692{
1693 u16 adv = 0;
1694
1695 /* Only allow advertising what this PHY supports */
1696 linkmode_and(phydev->advertising, phydev->advertising,
1697 phydev->supported);
1698
1699 if (linkmode_test_bit(ETHTOOL_LINK_MODE_1000baseX_Full_BIT,
1700 phydev->advertising))
1701 adv |= ADVERTISE_1000XFULL;
1702 if (linkmode_test_bit(ETHTOOL_LINK_MODE_Pause_BIT,
1703 phydev->advertising))
1704 adv |= ADVERTISE_1000XPAUSE;
1705 if (linkmode_test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
1706 phydev->advertising))
1707 adv |= ADVERTISE_1000XPSE_ASYM;
1708
1709 return phy_modify_changed(phydev, MII_ADVERTISE,
1710 ADVERTISE_1000XFULL | ADVERTISE_1000XPAUSE |
1711 ADVERTISE_1000XHALF | ADVERTISE_1000XPSE_ASYM,
1712 adv);
1713}
1714
1715/**
jbrunetd853d142016-11-28 10:46:46 +01001716 * genphy_config_eee_advert - disable unwanted eee mode advertisement
1717 * @phydev: target phy_device struct
1718 *
1719 * Description: Writes MDIO_AN_EEE_ADV after disabling unsupported energy
1720 * efficent ethernet modes. Returns 0 if the PHY's advertisement hasn't
1721 * changed, and 1 if it has changed.
1722 */
Heiner Kallweitcd344992019-02-18 21:26:58 +01001723int genphy_config_eee_advert(struct phy_device *phydev)
jbrunetd853d142016-11-28 10:46:46 +01001724{
Heiner Kallweit9f771f12019-02-11 22:16:13 +01001725 int err;
jbrunetd853d142016-11-28 10:46:46 +01001726
1727 /* Nothing to disable */
Heiner Kallweit9f771f12019-02-11 22:16:13 +01001728 if (!phydev->eee_broken_modes)
jbrunetd853d142016-11-28 10:46:46 +01001729 return 0;
1730
Heiner Kallweit9f771f12019-02-11 22:16:13 +01001731 err = phy_modify_mmd_changed(phydev, MDIO_MMD_AN, MDIO_AN_EEE_ADV,
1732 phydev->eee_broken_modes, 0);
1733 /* If the call failed, we assume that EEE is not supported */
1734 return err < 0 ? 0 : err;
jbrunetd853d142016-11-28 10:46:46 +01001735}
Heiner Kallweitcd344992019-02-18 21:26:58 +01001736EXPORT_SYMBOL(genphy_config_eee_advert);
jbrunetd853d142016-11-28 10:46:46 +01001737
1738/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001739 * genphy_setup_forced - configures/forces speed/duplex from @phydev
1740 * @phydev: target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -04001741 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001742 * Description: Configures MII_BMCR to force speed/duplex
Andy Fleming00db8182005-07-30 19:31:23 -04001743 * to the values in phydev. Assumes that the values are valid.
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001744 * Please see phy_sanitize_settings().
1745 */
Madalin Bucur3fb69bc2013-11-20 16:38:19 -06001746int genphy_setup_forced(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -04001747{
Russell Kingfea23fb2018-01-02 10:58:58 +00001748 u16 ctl = 0;
Andy Fleming00db8182005-07-30 19:31:23 -04001749
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001750 phydev->pause = 0;
1751 phydev->asym_pause = 0;
Andy Fleming00db8182005-07-30 19:31:23 -04001752
1753 if (SPEED_1000 == phydev->speed)
1754 ctl |= BMCR_SPEED1000;
1755 else if (SPEED_100 == phydev->speed)
1756 ctl |= BMCR_SPEED100;
1757
1758 if (DUPLEX_FULL == phydev->duplex)
1759 ctl |= BMCR_FULLDPLX;
Florian Fainellie1093742013-12-17 21:38:12 -08001760
Russell Kingfea23fb2018-01-02 10:58:58 +00001761 return phy_modify(phydev, MII_BMCR,
Ingo van Lil18a5b052018-02-12 12:02:52 +01001762 ~(BMCR_LOOPBACK | BMCR_ISOLATE | BMCR_PDOWN), ctl);
Andy Fleming00db8182005-07-30 19:31:23 -04001763}
Madalin Bucur3fb69bc2013-11-20 16:38:19 -06001764EXPORT_SYMBOL(genphy_setup_forced);
Andy Fleming00db8182005-07-30 19:31:23 -04001765
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001766/**
1767 * genphy_restart_aneg - Enable and Restart Autonegotiation
1768 * @phydev: target phy_device struct
1769 */
Andy Fleming00db8182005-07-30 19:31:23 -04001770int genphy_restart_aneg(struct phy_device *phydev)
1771{
Andy Fleming00db8182005-07-30 19:31:23 -04001772 /* Don't isolate the PHY if we're negotiating */
Russell Kingf1028522018-01-05 16:07:10 +00001773 return phy_modify(phydev, MII_BMCR, BMCR_ISOLATE,
Russell Kingfea23fb2018-01-02 10:58:58 +00001774 BMCR_ANENABLE | BMCR_ANRESTART);
Andy Fleming00db8182005-07-30 19:31:23 -04001775}
Adrian Bunk892871d2008-10-13 18:48:09 -07001776EXPORT_SYMBOL(genphy_restart_aneg);
Andy Fleming00db8182005-07-30 19:31:23 -04001777
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001778/**
Russell King2a10ab02019-12-17 13:39:11 +00001779 * genphy_check_and_restart_aneg - Enable and restart auto-negotiation
1780 * @phydev: target phy_device struct
1781 * @restart: whether aneg restart is requested
1782 *
1783 * Check, and restart auto-negotiation if needed.
1784 */
1785int genphy_check_and_restart_aneg(struct phy_device *phydev, bool restart)
1786{
1787 int ret = 0;
1788
1789 if (!restart) {
1790 /* Advertisement hasn't changed, but maybe aneg was never on to
1791 * begin with? Or maybe phy was isolated?
1792 */
1793 ret = phy_read(phydev, MII_BMCR);
1794 if (ret < 0)
1795 return ret;
1796
1797 if (!(ret & BMCR_ANENABLE) || (ret & BMCR_ISOLATE))
1798 restart = true;
1799 }
1800
1801 if (restart)
1802 ret = genphy_restart_aneg(phydev);
1803
1804 return ret;
1805}
1806EXPORT_SYMBOL(genphy_check_and_restart_aneg);
1807
1808/**
Heiner Kallweitf4069cd2019-08-09 20:43:50 +02001809 * __genphy_config_aneg - restart auto-negotiation or write BMCR
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001810 * @phydev: target phy_device struct
Heiner Kallweitf4069cd2019-08-09 20:43:50 +02001811 * @changed: whether autoneg is requested
Andy Fleming00db8182005-07-30 19:31:23 -04001812 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001813 * Description: If auto-negotiation is enabled, we configure the
Andy Fleming00db8182005-07-30 19:31:23 -04001814 * advertising, and then restart auto-negotiation. If it is not
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001815 * enabled, then we write the BMCR.
Andy Fleming00db8182005-07-30 19:31:23 -04001816 */
Heiner Kallweitf4069cd2019-08-09 20:43:50 +02001817int __genphy_config_aneg(struct phy_device *phydev, bool changed)
Andy Fleming00db8182005-07-30 19:31:23 -04001818{
Heiner Kallweitf4069cd2019-08-09 20:43:50 +02001819 int err;
jbrunetd853d142016-11-28 10:46:46 +01001820
Heiner Kallweitf4069cd2019-08-09 20:43:50 +02001821 if (genphy_config_eee_advert(phydev))
1822 changed = true;
Andy Fleming00db8182005-07-30 19:31:23 -04001823
Trent Piephode339c22008-11-19 15:52:41 -08001824 if (AUTONEG_ENABLE != phydev->autoneg)
1825 return genphy_setup_forced(phydev);
Andy Fleming00db8182005-07-30 19:31:23 -04001826
jbrunetd853d142016-11-28 10:46:46 +01001827 err = genphy_config_advert(phydev);
1828 if (err < 0) /* error */
1829 return err;
Heiner Kallweitf4069cd2019-08-09 20:43:50 +02001830 else if (err)
1831 changed = true;
jbrunetd853d142016-11-28 10:46:46 +01001832
Russell King2a10ab02019-12-17 13:39:11 +00001833 return genphy_check_and_restart_aneg(phydev, changed);
Andy Fleming00db8182005-07-30 19:31:23 -04001834}
Heiner Kallweitf4069cd2019-08-09 20:43:50 +02001835EXPORT_SYMBOL(__genphy_config_aneg);
Andy Fleming00db8182005-07-30 19:31:23 -04001836
Florian Fainellia9fa6e62014-02-11 17:27:36 -08001837/**
Heiner Kallweitfa6e98c2019-10-22 11:31:07 -07001838 * genphy_c37_config_aneg - restart auto-negotiation or write BMCR
1839 * @phydev: target phy_device struct
1840 *
1841 * Description: If auto-negotiation is enabled, we configure the
1842 * advertising, and then restart auto-negotiation. If it is not
1843 * enabled, then we write the BMCR. This function is intended
1844 * for use with Clause 37 1000Base-X mode.
1845 */
1846int genphy_c37_config_aneg(struct phy_device *phydev)
1847{
1848 int err, changed;
1849
1850 if (phydev->autoneg != AUTONEG_ENABLE)
1851 return genphy_setup_forced(phydev);
1852
1853 err = phy_modify(phydev, MII_BMCR, BMCR_SPEED1000 | BMCR_SPEED100,
1854 BMCR_SPEED1000);
1855 if (err)
1856 return err;
1857
1858 changed = genphy_c37_config_advert(phydev);
1859 if (changed < 0) /* error */
1860 return changed;
1861
1862 if (!changed) {
1863 /* Advertisement hasn't changed, but maybe aneg was never on to
1864 * begin with? Or maybe phy was isolated?
1865 */
1866 int ctl = phy_read(phydev, MII_BMCR);
1867
1868 if (ctl < 0)
1869 return ctl;
1870
1871 if (!(ctl & BMCR_ANENABLE) || (ctl & BMCR_ISOLATE))
1872 changed = 1; /* do restart aneg */
1873 }
1874
1875 /* Only restart aneg if we are advertising something different
1876 * than we were before.
1877 */
1878 if (changed > 0)
1879 return genphy_restart_aneg(phydev);
1880
1881 return 0;
1882}
1883EXPORT_SYMBOL(genphy_c37_config_aneg);
1884
1885/**
Florian Fainellia9fa6e62014-02-11 17:27:36 -08001886 * genphy_aneg_done - return auto-negotiation status
1887 * @phydev: target phy_device struct
1888 *
1889 * Description: Reads the status register and returns 0 either if
1890 * auto-negotiation is incomplete, or if there was an error.
1891 * Returns BMSR_ANEGCOMPLETE if auto-negotiation is done.
1892 */
1893int genphy_aneg_done(struct phy_device *phydev)
1894{
1895 int retval = phy_read(phydev, MII_BMSR);
1896
1897 return (retval < 0) ? retval : (retval & BMSR_ANEGCOMPLETE);
1898}
1899EXPORT_SYMBOL(genphy_aneg_done);
1900
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001901/**
1902 * genphy_update_link - update link status in @phydev
1903 * @phydev: target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -04001904 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001905 * Description: Update the value in phydev->link to reflect the
Andy Fleming00db8182005-07-30 19:31:23 -04001906 * current link value. In order to do this, we need to read
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001907 * the status register twice, keeping the second value.
Andy Fleming00db8182005-07-30 19:31:23 -04001908 */
1909int genphy_update_link(struct phy_device *phydev)
1910{
Heiner Kallweitc36757eb2019-08-12 21:20:02 +02001911 int status = 0, bmcr;
1912
1913 bmcr = phy_read(phydev, MII_BMCR);
1914 if (bmcr < 0)
1915 return bmcr;
1916
1917 /* Autoneg is being started, therefore disregard BMSR value and
1918 * report link as down.
1919 */
1920 if (bmcr & BMCR_ANRESTART)
1921 goto done;
Andy Fleming00db8182005-07-30 19:31:23 -04001922
Heiner Kallweit93c09702019-02-06 19:39:52 +01001923 /* The link state is latched low so that momentary link
1924 * drops can be detected. Do not double-read the status
1925 * in polling mode to detect such short link drops.
1926 */
1927 if (!phy_polling_mode(phydev)) {
1928 status = phy_read(phydev, MII_BMSR);
Heiner Kallweitb7f29f82019-04-08 19:28:28 +02001929 if (status < 0)
Heiner Kallweit93c09702019-02-06 19:39:52 +01001930 return status;
Heiner Kallweitb7f29f82019-04-08 19:28:28 +02001931 else if (status & BMSR_LSTATUS)
1932 goto done;
Heiner Kallweit93c09702019-02-06 19:39:52 +01001933 }
Andy Fleming00db8182005-07-30 19:31:23 -04001934
1935 /* Read link and autonegotiation status */
1936 status = phy_read(phydev, MII_BMSR);
Andy Fleming00db8182005-07-30 19:31:23 -04001937 if (status < 0)
1938 return status;
Heiner Kallweitb7f29f82019-04-08 19:28:28 +02001939done:
Heiner Kallweit4950c2b2019-04-02 20:43:30 +02001940 phydev->link = status & BMSR_LSTATUS ? 1 : 0;
1941 phydev->autoneg_complete = status & BMSR_ANEGCOMPLETE ? 1 : 0;
Andy Fleming00db8182005-07-30 19:31:23 -04001942
Heiner Kallweitaa6b1952019-07-31 23:05:10 +02001943 /* Consider the case that autoneg was started and "aneg complete"
1944 * bit has been reset, but "link up" bit not yet.
1945 */
1946 if (phydev->autoneg == AUTONEG_ENABLE && !phydev->autoneg_complete)
1947 phydev->link = 0;
1948
Andy Fleming00db8182005-07-30 19:31:23 -04001949 return 0;
1950}
Andy Fleming6b655522006-10-16 16:19:17 -05001951EXPORT_SYMBOL(genphy_update_link);
Andy Fleming00db8182005-07-30 19:31:23 -04001952
Russell King8d3dc3ac2019-10-04 17:06:04 +01001953int genphy_read_lpa(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -04001954{
Russell King8d3dc3ac2019-10-04 17:06:04 +01001955 int lpa, lpagb;
Heiner Kallweitb6163f12019-03-30 10:22:45 +01001956
Yonglong Liu3de5ae52019-10-16 10:30:39 +08001957 if (phydev->autoneg == AUTONEG_ENABLE) {
1958 if (!phydev->autoneg_complete) {
1959 mii_stat1000_mod_linkmode_lpa_t(phydev->lp_advertising,
1960 0);
1961 mii_lpa_mod_linkmode_lpa_t(phydev->lp_advertising, 0);
1962 return 0;
1963 }
1964
Heiner Kallweit3b8b11f2019-04-05 21:23:13 +02001965 if (phydev->is_gigabit_capable) {
Andy Fleming00db8182005-07-30 19:31:23 -04001966 lpagb = phy_read(phydev, MII_STAT1000);
Andy Fleming00db8182005-07-30 19:31:23 -04001967 if (lpagb < 0)
1968 return lpagb;
1969
Heiner Kallweitb8f8c8e2018-07-21 15:48:47 +02001970 if (lpagb & LPA_1000MSFAIL) {
Heiner Kallweit916e5712019-08-15 13:15:19 +02001971 int adv = phy_read(phydev, MII_CTRL1000);
1972
1973 if (adv < 0)
1974 return adv;
1975
Heiner Kallweitb8f8c8e2018-07-21 15:48:47 +02001976 if (adv & CTL1000_ENABLE_MASTER)
1977 phydev_err(phydev, "Master/Slave resolution failed, maybe conflicting manual settings?\n");
1978 else
1979 phydev_err(phydev, "Master/Slave resolution failed\n");
1980 return -ENOLINK;
1981 }
1982
Andrew Lunn78a24df2018-12-05 21:49:41 +01001983 mii_stat1000_mod_linkmode_lpa_t(phydev->lp_advertising,
1984 lpagb);
Andy Fleming00db8182005-07-30 19:31:23 -04001985 }
1986
1987 lpa = phy_read(phydev, MII_LPA);
Andy Fleming00db8182005-07-30 19:31:23 -04001988 if (lpa < 0)
1989 return lpa;
1990
Andrew Lunnd3351932018-12-05 21:49:43 +01001991 mii_lpa_mod_linkmode_lpa_t(phydev->lp_advertising, lpa);
Yonglong Liu3de5ae52019-10-16 10:30:39 +08001992 } else {
1993 linkmode_zero(phydev->lp_advertising);
Russell King8d3dc3ac2019-10-04 17:06:04 +01001994 }
1995
1996 return 0;
1997}
1998EXPORT_SYMBOL(genphy_read_lpa);
1999
2000/**
Russell King0efc2862019-12-17 13:39:16 +00002001 * genphy_read_status_fixed - read the link parameters for !aneg mode
2002 * @phydev: target phy_device struct
2003 *
2004 * Read the current duplex and speed state for a PHY operating with
2005 * autonegotiation disabled.
2006 */
2007int genphy_read_status_fixed(struct phy_device *phydev)
2008{
2009 int bmcr = phy_read(phydev, MII_BMCR);
2010
2011 if (bmcr < 0)
2012 return bmcr;
2013
2014 if (bmcr & BMCR_FULLDPLX)
2015 phydev->duplex = DUPLEX_FULL;
2016 else
2017 phydev->duplex = DUPLEX_HALF;
2018
2019 if (bmcr & BMCR_SPEED1000)
2020 phydev->speed = SPEED_1000;
2021 else if (bmcr & BMCR_SPEED100)
2022 phydev->speed = SPEED_100;
2023 else
2024 phydev->speed = SPEED_10;
2025
2026 return 0;
2027}
2028EXPORT_SYMBOL(genphy_read_status_fixed);
2029
2030/**
Russell King8d3dc3ac2019-10-04 17:06:04 +01002031 * genphy_read_status - check the link status and update current link state
2032 * @phydev: target phy_device struct
2033 *
2034 * Description: Check the link, then figure out the current state
2035 * by comparing what we advertise with what the link partner
2036 * advertises. Start by checking the gigabit possibilities,
2037 * then move on to 10/100.
2038 */
2039int genphy_read_status(struct phy_device *phydev)
2040{
2041 int err, old_link = phydev->link;
2042
2043 /* Update the link, but return if there was an error */
2044 err = genphy_update_link(phydev);
2045 if (err)
2046 return err;
2047
2048 /* why bother the PHY if nothing can have changed */
2049 if (phydev->autoneg == AUTONEG_ENABLE && old_link && phydev->link)
2050 return 0;
2051
2052 phydev->speed = SPEED_UNKNOWN;
2053 phydev->duplex = DUPLEX_UNKNOWN;
2054 phydev->pause = 0;
2055 phydev->asym_pause = 0;
2056
2057 err = genphy_read_lpa(phydev);
2058 if (err < 0)
2059 return err;
2060
2061 if (phydev->autoneg == AUTONEG_ENABLE && phydev->autoneg_complete) {
Heiner Kallweit5502b212019-02-14 22:16:27 +01002062 phy_resolve_aneg_linkmode(phydev);
Heiner Kallweitb6163f12019-03-30 10:22:45 +01002063 } else if (phydev->autoneg == AUTONEG_DISABLE) {
Russell King0efc2862019-12-17 13:39:16 +00002064 err = genphy_read_status_fixed(phydev);
2065 if (err < 0)
2066 return err;
Andy Fleming00db8182005-07-30 19:31:23 -04002067 }
2068
2069 return 0;
2070}
2071EXPORT_SYMBOL(genphy_read_status);
2072
Florian Fainelli797ac072014-02-17 13:34:02 -08002073/**
Heiner Kallweitfa6e98c2019-10-22 11:31:07 -07002074 * genphy_c37_read_status - check the link status and update current link state
2075 * @phydev: target phy_device struct
2076 *
2077 * Description: Check the link, then figure out the current state
2078 * by comparing what we advertise with what the link partner
2079 * advertises. This function is for Clause 37 1000Base-X mode.
2080 */
2081int genphy_c37_read_status(struct phy_device *phydev)
2082{
2083 int lpa, err, old_link = phydev->link;
2084
2085 /* Update the link, but return if there was an error */
2086 err = genphy_update_link(phydev);
2087 if (err)
2088 return err;
2089
2090 /* why bother the PHY if nothing can have changed */
2091 if (phydev->autoneg == AUTONEG_ENABLE && old_link && phydev->link)
2092 return 0;
2093
2094 phydev->duplex = DUPLEX_UNKNOWN;
2095 phydev->pause = 0;
2096 phydev->asym_pause = 0;
2097
2098 if (phydev->autoneg == AUTONEG_ENABLE && phydev->autoneg_complete) {
2099 lpa = phy_read(phydev, MII_LPA);
2100 if (lpa < 0)
2101 return lpa;
2102
2103 linkmode_mod_bit(ETHTOOL_LINK_MODE_Autoneg_BIT,
2104 phydev->lp_advertising, lpa & LPA_LPACK);
2105 linkmode_mod_bit(ETHTOOL_LINK_MODE_1000baseX_Full_BIT,
2106 phydev->lp_advertising, lpa & LPA_1000XFULL);
2107 linkmode_mod_bit(ETHTOOL_LINK_MODE_Pause_BIT,
2108 phydev->lp_advertising, lpa & LPA_1000XPAUSE);
2109 linkmode_mod_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
2110 phydev->lp_advertising,
2111 lpa & LPA_1000XPAUSE_ASYM);
2112
2113 phy_resolve_aneg_linkmode(phydev);
2114 } else if (phydev->autoneg == AUTONEG_DISABLE) {
2115 int bmcr = phy_read(phydev, MII_BMCR);
2116
2117 if (bmcr < 0)
2118 return bmcr;
2119
2120 if (bmcr & BMCR_FULLDPLX)
2121 phydev->duplex = DUPLEX_FULL;
2122 else
2123 phydev->duplex = DUPLEX_HALF;
2124 }
2125
2126 return 0;
2127}
2128EXPORT_SYMBOL(genphy_c37_read_status);
2129
2130/**
Florian Fainelli797ac072014-02-17 13:34:02 -08002131 * genphy_soft_reset - software reset the PHY via BMCR_RESET bit
2132 * @phydev: target phy_device struct
2133 *
2134 * Description: Perform a software PHY reset using the standard
2135 * BMCR_RESET bit and poll for the reset bit to be cleared.
2136 *
2137 * Returns: 0 on success, < 0 on failure
2138 */
2139int genphy_soft_reset(struct phy_device *phydev)
2140{
Heiner Kallweit8c90b792019-04-24 21:41:06 +02002141 u16 res = BMCR_RESET;
Florian Fainelli797ac072014-02-17 13:34:02 -08002142 int ret;
2143
Heiner Kallweit8c90b792019-04-24 21:41:06 +02002144 if (phydev->autoneg == AUTONEG_ENABLE)
2145 res |= BMCR_ANRESTART;
2146
2147 ret = phy_modify(phydev, MII_BMCR, BMCR_ISOLATE, res);
Florian Fainelli797ac072014-02-17 13:34:02 -08002148 if (ret < 0)
2149 return ret;
2150
Heiner Kallweit8c90b792019-04-24 21:41:06 +02002151 ret = phy_poll_reset(phydev);
2152 if (ret)
2153 return ret;
2154
2155 /* BMCR may be reset to defaults */
2156 if (phydev->autoneg == AUTONEG_DISABLE)
2157 ret = genphy_setup_forced(phydev);
2158
2159 return ret;
Florian Fainelli797ac072014-02-17 13:34:02 -08002160}
2161EXPORT_SYMBOL(genphy_soft_reset);
2162
Heiner Kallweit045925e2019-03-27 21:58:44 +01002163/**
2164 * genphy_read_abilities - read PHY abilities from Clause 22 registers
2165 * @phydev: target phy_device struct
2166 *
2167 * Description: Reads the PHY's abilities and populates
2168 * phydev->supported accordingly.
2169 *
2170 * Returns: 0 on success, < 0 on failure
2171 */
2172int genphy_read_abilities(struct phy_device *phydev)
2173{
2174 int val;
2175
2176 linkmode_set_bit_array(phy_basic_ports_array,
2177 ARRAY_SIZE(phy_basic_ports_array),
2178 phydev->supported);
2179
2180 val = phy_read(phydev, MII_BMSR);
2181 if (val < 0)
2182 return val;
2183
2184 linkmode_mod_bit(ETHTOOL_LINK_MODE_Autoneg_BIT, phydev->supported,
2185 val & BMSR_ANEGCAPABLE);
2186
2187 linkmode_mod_bit(ETHTOOL_LINK_MODE_100baseT_Full_BIT, phydev->supported,
2188 val & BMSR_100FULL);
2189 linkmode_mod_bit(ETHTOOL_LINK_MODE_100baseT_Half_BIT, phydev->supported,
2190 val & BMSR_100HALF);
2191 linkmode_mod_bit(ETHTOOL_LINK_MODE_10baseT_Full_BIT, phydev->supported,
2192 val & BMSR_10FULL);
2193 linkmode_mod_bit(ETHTOOL_LINK_MODE_10baseT_Half_BIT, phydev->supported,
2194 val & BMSR_10HALF);
2195
2196 if (val & BMSR_ESTATEN) {
2197 val = phy_read(phydev, MII_ESTATUS);
2198 if (val < 0)
2199 return val;
2200
2201 linkmode_mod_bit(ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
2202 phydev->supported, val & ESTATUS_1000_TFULL);
2203 linkmode_mod_bit(ETHTOOL_LINK_MODE_1000baseT_Half_BIT,
2204 phydev->supported, val & ESTATUS_1000_THALF);
Robert Hancockf30e33b2019-06-11 16:06:09 -06002205 linkmode_mod_bit(ETHTOOL_LINK_MODE_1000baseX_Full_BIT,
2206 phydev->supported, val & ESTATUS_1000_XFULL);
Heiner Kallweit045925e2019-03-27 21:58:44 +01002207 }
2208
2209 return 0;
2210}
2211EXPORT_SYMBOL(genphy_read_abilities);
2212
Kevin Hao5df7af82018-03-20 09:44:52 +08002213/* This is used for the phy device which doesn't support the MMD extended
2214 * register access, but it does have side effect when we are trying to access
2215 * the MMD register via indirect method.
2216 */
2217int genphy_read_mmd_unsupported(struct phy_device *phdev, int devad, u16 regnum)
2218{
2219 return -EOPNOTSUPP;
2220}
2221EXPORT_SYMBOL(genphy_read_mmd_unsupported);
2222
2223int genphy_write_mmd_unsupported(struct phy_device *phdev, int devnum,
2224 u16 regnum, u16 val)
2225{
2226 return -EOPNOTSUPP;
2227}
2228EXPORT_SYMBOL(genphy_write_mmd_unsupported);
2229
Giuseppe Cavallaro0f0ca342008-11-28 16:24:56 -08002230int genphy_suspend(struct phy_device *phydev)
2231{
Heiner Kallweit032f4702018-01-12 21:20:36 +01002232 return phy_set_bits(phydev, MII_BMCR, BMCR_PDOWN);
Giuseppe Cavallaro0f0ca342008-11-28 16:24:56 -08002233}
2234EXPORT_SYMBOL(genphy_suspend);
2235
2236int genphy_resume(struct phy_device *phydev)
2237{
Heiner Kallweit032f4702018-01-12 21:20:36 +01002238 return phy_clear_bits(phydev, MII_BMCR, BMCR_PDOWN);
Giuseppe Cavallaro0f0ca342008-11-28 16:24:56 -08002239}
2240EXPORT_SYMBOL(genphy_resume);
Andy Fleming00db8182005-07-30 19:31:23 -04002241
Lin Yun Shengf0f9b4e2017-06-30 17:44:15 +08002242int genphy_loopback(struct phy_device *phydev, bool enable)
2243{
Russell Kingf1028522018-01-05 16:07:10 +00002244 return phy_modify(phydev, MII_BMCR, BMCR_LOOPBACK,
Russell Kingfea23fb2018-01-02 10:58:58 +00002245 enable ? BMCR_LOOPBACK : 0);
Lin Yun Shengf0f9b4e2017-06-30 17:44:15 +08002246}
2247EXPORT_SYMBOL(genphy_loopback);
2248
Andrew Lunn41124fa2018-09-12 01:53:14 +02002249/**
2250 * phy_remove_link_mode - Remove a supported link mode
2251 * @phydev: phy_device structure to remove link mode from
2252 * @link_mode: Link mode to be removed
2253 *
2254 * Description: Some MACs don't support all link modes which the PHY
2255 * does. e.g. a 1G MAC often does not support 1000Half. Add a helper
2256 * to remove a link mode.
2257 */
2258void phy_remove_link_mode(struct phy_device *phydev, u32 link_mode)
2259{
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002260 linkmode_clear_bit(link_mode, phydev->supported);
Heiner Kallweit22c0ef62019-05-01 21:34:43 +02002261 phy_advertise_supported(phydev);
Andrew Lunn41124fa2018-09-12 01:53:14 +02002262}
2263EXPORT_SYMBOL(phy_remove_link_mode);
2264
Heiner Kallweit22c0ef62019-05-01 21:34:43 +02002265static void phy_copy_pause_bits(unsigned long *dst, unsigned long *src)
2266{
2267 linkmode_mod_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, dst,
2268 linkmode_test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, src));
2269 linkmode_mod_bit(ETHTOOL_LINK_MODE_Pause_BIT, dst,
2270 linkmode_test_bit(ETHTOOL_LINK_MODE_Pause_BIT, src));
2271}
2272
2273/**
2274 * phy_advertise_supported - Advertise all supported modes
2275 * @phydev: target phy_device struct
2276 *
2277 * Description: Called to advertise all supported modes, doesn't touch
2278 * pause mode advertising.
2279 */
2280void phy_advertise_supported(struct phy_device *phydev)
2281{
2282 __ETHTOOL_DECLARE_LINK_MODE_MASK(new);
2283
2284 linkmode_copy(new, phydev->supported);
2285 phy_copy_pause_bits(new, phydev->advertising);
2286 linkmode_copy(phydev->advertising, new);
2287}
2288EXPORT_SYMBOL(phy_advertise_supported);
2289
Andrew Lunnaf8d9bb2018-09-12 01:53:15 +02002290/**
Andrew Lunnc306ad32018-09-12 01:53:16 +02002291 * phy_support_sym_pause - Enable support of symmetrical pause
2292 * @phydev: target phy_device struct
2293 *
2294 * Description: Called by the MAC to indicate is supports symmetrical
2295 * Pause, but not asym pause.
2296 */
2297void phy_support_sym_pause(struct phy_device *phydev)
2298{
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002299 linkmode_clear_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, phydev->supported);
Heiner Kallweit22c0ef62019-05-01 21:34:43 +02002300 phy_copy_pause_bits(phydev->advertising, phydev->supported);
Andrew Lunnc306ad32018-09-12 01:53:16 +02002301}
2302EXPORT_SYMBOL(phy_support_sym_pause);
2303
2304/**
Andrew Lunnaf8d9bb2018-09-12 01:53:15 +02002305 * phy_support_asym_pause - Enable support of asym pause
2306 * @phydev: target phy_device struct
2307 *
2308 * Description: Called by the MAC to indicate is supports Asym Pause.
2309 */
2310void phy_support_asym_pause(struct phy_device *phydev)
2311{
Heiner Kallweit22c0ef62019-05-01 21:34:43 +02002312 phy_copy_pause_bits(phydev->advertising, phydev->supported);
Andrew Lunnaf8d9bb2018-09-12 01:53:15 +02002313}
2314EXPORT_SYMBOL(phy_support_asym_pause);
2315
Andrew Lunn70814e82018-09-12 01:53:17 +02002316/**
Andrew Lunn0c122402018-09-12 01:53:18 +02002317 * phy_set_sym_pause - Configure symmetric Pause
2318 * @phydev: target phy_device struct
2319 * @rx: Receiver Pause is supported
2320 * @tx: Transmit Pause is supported
2321 * @autoneg: Auto neg should be used
2322 *
2323 * Description: Configure advertised Pause support depending on if
2324 * receiver pause and pause auto neg is supported. Generally called
2325 * from the set_pauseparam .ndo.
2326 */
2327void phy_set_sym_pause(struct phy_device *phydev, bool rx, bool tx,
2328 bool autoneg)
2329{
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002330 linkmode_clear_bit(ETHTOOL_LINK_MODE_Pause_BIT, phydev->supported);
Andrew Lunn0c122402018-09-12 01:53:18 +02002331
2332 if (rx && tx && autoneg)
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002333 linkmode_set_bit(ETHTOOL_LINK_MODE_Pause_BIT,
2334 phydev->supported);
Andrew Lunn0c122402018-09-12 01:53:18 +02002335
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002336 linkmode_copy(phydev->advertising, phydev->supported);
Andrew Lunn0c122402018-09-12 01:53:18 +02002337}
2338EXPORT_SYMBOL(phy_set_sym_pause);
2339
2340/**
Andrew Lunn70814e82018-09-12 01:53:17 +02002341 * phy_set_asym_pause - Configure Pause and Asym Pause
2342 * @phydev: target phy_device struct
2343 * @rx: Receiver Pause is supported
2344 * @tx: Transmit Pause is supported
2345 *
2346 * Description: Configure advertised Pause support depending on if
2347 * transmit and receiver pause is supported. If there has been a
2348 * change in adverting, trigger a new autoneg. Generally called from
2349 * the set_pauseparam .ndo.
2350 */
2351void phy_set_asym_pause(struct phy_device *phydev, bool rx, bool tx)
2352{
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002353 __ETHTOOL_DECLARE_LINK_MODE_MASK(oldadv);
Andrew Lunn70814e82018-09-12 01:53:17 +02002354
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002355 linkmode_copy(oldadv, phydev->advertising);
Andrew Lunn70814e82018-09-12 01:53:17 +02002356
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002357 linkmode_clear_bit(ETHTOOL_LINK_MODE_Pause_BIT,
2358 phydev->advertising);
2359 linkmode_clear_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
2360 phydev->advertising);
Andrew Lunn70814e82018-09-12 01:53:17 +02002361
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002362 if (rx) {
2363 linkmode_set_bit(ETHTOOL_LINK_MODE_Pause_BIT,
2364 phydev->advertising);
2365 linkmode_set_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
2366 phydev->advertising);
Andrew Lunn70814e82018-09-12 01:53:17 +02002367 }
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002368
2369 if (tx)
2370 linkmode_change_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
2371 phydev->advertising);
2372
2373 if (!linkmode_equal(oldadv, phydev->advertising) &&
2374 phydev->autoneg)
2375 phy_start_aneg(phydev);
Andrew Lunn70814e82018-09-12 01:53:17 +02002376}
2377EXPORT_SYMBOL(phy_set_asym_pause);
2378
Andrew Lunn22b7d292018-09-12 01:53:19 +02002379/**
2380 * phy_validate_pause - Test if the PHY/MAC support the pause configuration
2381 * @phydev: phy_device struct
2382 * @pp: requested pause configuration
2383 *
2384 * Description: Test if the PHY/MAC combination supports the Pause
2385 * configuration the user is requesting. Returns True if it is
2386 * supported, false otherwise.
2387 */
2388bool phy_validate_pause(struct phy_device *phydev,
2389 struct ethtool_pauseparam *pp)
2390{
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002391 if (!linkmode_test_bit(ETHTOOL_LINK_MODE_Pause_BIT,
Heiner Kallweitb4010af2019-05-01 21:54:28 +02002392 phydev->supported) && pp->rx_pause)
Andrew Lunn22b7d292018-09-12 01:53:19 +02002393 return false;
Heiner Kallweitb4010af2019-05-01 21:54:28 +02002394
2395 if (!linkmode_test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
2396 phydev->supported) &&
2397 pp->rx_pause != pp->tx_pause)
2398 return false;
2399
Andrew Lunn22b7d292018-09-12 01:53:19 +02002400 return true;
2401}
2402EXPORT_SYMBOL(phy_validate_pause);
2403
Heiner Kallweit0d2e7782018-11-09 18:16:28 +01002404static bool phy_drv_supports_irq(struct phy_driver *phydrv)
2405{
Heiner Kallweita21ff3c2018-11-12 21:16:06 +01002406 return phydrv->config_intr && phydrv->ack_interrupt;
Heiner Kallweit0d2e7782018-11-09 18:16:28 +01002407}
2408
Randy Dunlapb3df0da2007-03-06 02:41:48 -08002409/**
2410 * phy_probe - probe and init a PHY device
2411 * @dev: device to probe and init
Andy Fleming00db8182005-07-30 19:31:23 -04002412 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -08002413 * Description: Take care of setting up the phy_device structure,
Andy Fleming00db8182005-07-30 19:31:23 -04002414 * set the state to READY (the driver's init function should
2415 * set it to STARTING if needed).
2416 */
2417static int phy_probe(struct device *dev)
2418{
Sergei Shtylyov553fe922014-01-05 03:23:19 +03002419 struct phy_device *phydev = to_phy_device(dev);
Andrew Lunne5a03bf2016-01-06 20:11:16 +01002420 struct device_driver *drv = phydev->mdio.dev.driver;
Sergei Shtylyov553fe922014-01-05 03:23:19 +03002421 struct phy_driver *phydrv = to_phy_driver(drv);
Andy Fleming00db8182005-07-30 19:31:23 -04002422 int err = 0;
2423
Andy Fleming00db8182005-07-30 19:31:23 -04002424 phydev->drv = phydrv;
2425
Florian Fainelli2c7b4922013-05-19 22:53:42 +00002426 /* Disable the interrupt if the PHY doesn't support it
2427 * but the interrupt is still a valid one
2428 */
Heiner Kallweit0d2e7782018-11-09 18:16:28 +01002429 if (!phy_drv_supports_irq(phydrv) && phy_interrupt_is_valid(phydev))
Andy Fleming00db8182005-07-30 19:31:23 -04002430 phydev->irq = PHY_POLL;
2431
Florian Fainelli4284b6a2013-05-23 01:11:12 +00002432 if (phydrv->flags & PHY_IS_INTERNAL)
2433 phydev->is_internal = true;
2434
Nate Case35b5f6b2008-01-29 10:05:09 -06002435 mutex_lock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -04002436
Andrew Lunn92ed2eb2019-02-09 14:46:30 +01002437 if (phydev->drv->probe) {
2438 /* Deassert the reset signal */
2439 phy_device_reset(phydev, 0);
2440
2441 err = phydev->drv->probe(phydev);
2442 if (err) {
2443 /* Assert the reset signal */
2444 phy_device_reset(phydev, 1);
2445 goto out;
2446 }
2447 }
2448
Andy Fleming00db8182005-07-30 19:31:23 -04002449 /* Start out supporting everything. Eventually,
2450 * a controller will attach, and may modify one
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03002451 * or both of these values
2452 */
Andrew Lunnefbdfdc2019-02-09 15:24:47 +01002453 if (phydrv->features) {
2454 linkmode_copy(phydev->supported, phydrv->features);
Heiner Kallweita1deab12019-04-03 23:14:33 +02002455 } else if (phydrv->get_features) {
Andrew Lunnefbdfdc2019-02-09 15:24:47 +01002456 err = phydrv->get_features(phydev);
Heiner Kallweita1deab12019-04-03 23:14:33 +02002457 } else if (phydev->is_c45) {
2458 err = genphy_c45_pma_read_abilities(phydev);
2459 } else {
2460 err = genphy_read_abilities(phydev);
Andrew Lunnefbdfdc2019-02-09 15:24:47 +01002461 }
2462
Heiner Kallweita1deab12019-04-03 23:14:33 +02002463 if (err)
2464 goto out;
2465
Heiner Kallweit5e425742019-04-16 23:54:00 +02002466 if (!linkmode_test_bit(ETHTOOL_LINK_MODE_Autoneg_BIT,
2467 phydev->supported))
2468 phydev->autoneg = 0;
2469
Heiner Kallweit3b8b11f2019-04-05 21:23:13 +02002470 if (linkmode_test_bit(ETHTOOL_LINK_MODE_1000baseT_Half_BIT,
2471 phydev->supported))
2472 phydev->is_gigabit_capable = 1;
2473 if (linkmode_test_bit(ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
2474 phydev->supported))
2475 phydev->is_gigabit_capable = 1;
2476
Sascha Hauerde906af2014-05-21 15:29:45 +02002477 of_set_phy_supported(phydev);
Heiner Kallweit22c0ef62019-05-01 21:34:43 +02002478 phy_advertise_supported(phydev);
Andy Fleming00db8182005-07-30 19:31:23 -04002479
jbrunetd853d142016-11-28 10:46:46 +01002480 /* Get the EEE modes we want to prohibit. We will ask
2481 * the PHY stop advertising these mode later on
2482 */
2483 of_set_phy_eee_broken(phydev);
2484
Timur Tabi529ed122016-12-07 13:20:51 -06002485 /* The Pause Frame bits indicate that the PHY can support passing
2486 * pause frames. During autonegotiation, the PHYs will determine if
2487 * they should allow pause frames to pass. The MAC driver should then
2488 * use that result to determine whether to enable flow control via
2489 * pause frames.
2490 *
2491 * Normally, PHY drivers should not set the Pause bits, and instead
2492 * allow phylib to do that. However, there may be some situations
2493 * (e.g. hardware erratum) where the driver wants to set only one
2494 * of these bits.
2495 */
Andrew Lunnefbdfdc2019-02-09 15:24:47 +01002496 if (!test_bit(ETHTOOL_LINK_MODE_Pause_BIT, phydev->supported) &&
2497 !test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, phydev->supported)) {
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002498 linkmode_set_bit(ETHTOOL_LINK_MODE_Pause_BIT,
2499 phydev->supported);
2500 linkmode_set_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
2501 phydev->supported);
Timur Tabi529ed122016-12-07 13:20:51 -06002502 }
2503
Andy Fleming00db8182005-07-30 19:31:23 -04002504 /* Set the state to READY by default */
2505 phydev->state = PHY_READY;
2506
Andrew Lunn92ed2eb2019-02-09 14:46:30 +01002507out:
Nate Case35b5f6b2008-01-29 10:05:09 -06002508 mutex_unlock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -04002509
Andy Fleming00db8182005-07-30 19:31:23 -04002510 return err;
2511}
2512
2513static int phy_remove(struct device *dev)
2514{
Sergei Shtylyov553fe922014-01-05 03:23:19 +03002515 struct phy_device *phydev = to_phy_device(dev);
Andy Fleming00db8182005-07-30 19:31:23 -04002516
Florian Fainelli7b9a88a2017-02-17 16:07:33 -08002517 cancel_delayed_work_sync(&phydev->state_queue);
2518
Nate Case35b5f6b2008-01-29 10:05:09 -06002519 mutex_lock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -04002520 phydev->state = PHY_DOWN;
Nate Case35b5f6b2008-01-29 10:05:09 -06002521 mutex_unlock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -04002522
Russell King298e54f2019-11-15 19:56:51 +00002523 sfp_bus_del_upstream(phydev->sfp_bus);
2524 phydev->sfp_bus = NULL;
2525
Sergei Shtylyovbafbdd52017-12-04 13:35:05 +01002526 if (phydev->drv && phydev->drv->remove) {
Andy Fleming00db8182005-07-30 19:31:23 -04002527 phydev->drv->remove(phydev);
Sergei Shtylyovbafbdd52017-12-04 13:35:05 +01002528
2529 /* Assert the reset signal */
2530 phy_device_reset(phydev, 1);
2531 }
Andy Fleming00db8182005-07-30 19:31:23 -04002532 phydev->drv = NULL;
2533
2534 return 0;
2535}
2536
Randy Dunlapb3df0da2007-03-06 02:41:48 -08002537/**
2538 * phy_driver_register - register a phy_driver with the PHY layer
2539 * @new_driver: new phy_driver to register
Andrew Lunnbe01da72016-01-06 20:11:22 +01002540 * @owner: module owning this PHY
Randy Dunlapb3df0da2007-03-06 02:41:48 -08002541 */
Andrew Lunnbe01da72016-01-06 20:11:22 +01002542int phy_driver_register(struct phy_driver *new_driver, struct module *owner)
Andy Fleming00db8182005-07-30 19:31:23 -04002543{
2544 int retval;
2545
Andrew Lunnefbdfdc2019-02-09 15:24:47 +01002546 /* Either the features are hard coded, or dynamically
Heiner Kallweita1deab12019-04-03 23:14:33 +02002547 * determined. It cannot be both.
Andrew Lunnefbdfdc2019-02-09 15:24:47 +01002548 */
Heiner Kallweita1deab12019-04-03 23:14:33 +02002549 if (WARN_ON(new_driver->features && new_driver->get_features)) {
2550 pr_err("%s: features and get_features must not both be set\n",
2551 new_driver->name);
Camelia Groza3e64cf72019-01-17 14:22:36 +02002552 return -EINVAL;
2553 }
2554
Andrew Lunna9049e02016-01-06 20:11:26 +01002555 new_driver->mdiodrv.flags |= MDIO_DEVICE_IS_PHY;
2556 new_driver->mdiodrv.driver.name = new_driver->name;
2557 new_driver->mdiodrv.driver.bus = &mdio_bus_type;
2558 new_driver->mdiodrv.driver.probe = phy_probe;
2559 new_driver->mdiodrv.driver.remove = phy_remove;
2560 new_driver->mdiodrv.driver.owner = owner;
Andy Fleming00db8182005-07-30 19:31:23 -04002561
Andrew Lunna9049e02016-01-06 20:11:26 +01002562 retval = driver_register(&new_driver->mdiodrv.driver);
Andy Fleming00db8182005-07-30 19:31:23 -04002563 if (retval) {
Joe Perches8d242482012-06-09 07:49:07 +00002564 pr_err("%s: Error %d in registering driver\n",
2565 new_driver->name, retval);
Andy Fleming00db8182005-07-30 19:31:23 -04002566
2567 return retval;
2568 }
2569
Olof Johanssonf2511f12007-11-04 16:09:23 -06002570 pr_debug("%s: Registered new driver\n", new_driver->name);
Andy Fleming00db8182005-07-30 19:31:23 -04002571
2572 return 0;
2573}
2574EXPORT_SYMBOL(phy_driver_register);
2575
Andrew Lunnbe01da72016-01-06 20:11:22 +01002576int phy_drivers_register(struct phy_driver *new_driver, int n,
2577 struct module *owner)
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +00002578{
2579 int i, ret = 0;
2580
2581 for (i = 0; i < n; i++) {
Andrew Lunnbe01da72016-01-06 20:11:22 +01002582 ret = phy_driver_register(new_driver + i, owner);
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +00002583 if (ret) {
2584 while (i-- > 0)
2585 phy_driver_unregister(new_driver + i);
2586 break;
2587 }
2588 }
2589 return ret;
2590}
2591EXPORT_SYMBOL(phy_drivers_register);
2592
Andy Fleming00db8182005-07-30 19:31:23 -04002593void phy_driver_unregister(struct phy_driver *drv)
2594{
Andrew Lunna9049e02016-01-06 20:11:26 +01002595 driver_unregister(&drv->mdiodrv.driver);
Andy Fleming00db8182005-07-30 19:31:23 -04002596}
2597EXPORT_SYMBOL(phy_driver_unregister);
2598
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +00002599void phy_drivers_unregister(struct phy_driver *drv, int n)
2600{
2601 int i;
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03002602
2603 for (i = 0; i < n; i++)
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +00002604 phy_driver_unregister(drv + i);
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +00002605}
2606EXPORT_SYMBOL(phy_drivers_unregister);
2607
Russell King921690f2017-06-05 12:23:05 +01002608static struct phy_driver genphy_driver = {
Andy Fleminge1393452005-08-24 18:46:21 -05002609 .phy_id = 0xffffffff,
2610 .phy_id_mask = 0xffffffff,
2611 .name = "Generic PHY",
Florian Fainelli0878fff2017-03-05 12:34:49 -08002612 .soft_reset = genphy_no_soft_reset,
Heiner Kallweit2a4d8672019-03-27 21:59:33 +01002613 .get_features = genphy_read_abilities,
Giuseppe Cavallaro0f0ca342008-11-28 16:24:56 -08002614 .suspend = genphy_suspend,
2615 .resume = genphy_resume,
Lin Yun Shengf0f9b4e2017-06-30 17:44:15 +08002616 .set_loopback = genphy_loopback,
Russell King921690f2017-06-05 12:23:05 +01002617};
Andy Fleming00db8182005-07-30 19:31:23 -04002618
Jeff Garzik67c4f3f2005-08-11 02:07:25 -04002619static int __init phy_init(void)
Andy Fleming00db8182005-07-30 19:31:23 -04002620{
Jeff Garzik67c4f3f2005-08-11 02:07:25 -04002621 int rc;
Jeff Garzik67c4f3f2005-08-11 02:07:25 -04002622
2623 rc = mdio_bus_init();
2624 if (rc)
Andy Fleminge1393452005-08-24 18:46:21 -05002625 return rc;
Jeff Garzik67c4f3f2005-08-11 02:07:25 -04002626
Andrew Lunn719655a2018-09-29 23:04:16 +02002627 features_init();
2628
Heiner Kallweit22b56e82019-04-07 13:55:01 +02002629 rc = phy_driver_register(&genphy_c45_driver, THIS_MODULE);
Andy Fleminge1393452005-08-24 18:46:21 -05002630 if (rc)
Heiner Kallweit22b56e82019-04-07 13:55:01 +02002631 goto err_c45;
Russell King921690f2017-06-05 12:23:05 +01002632
2633 rc = phy_driver_register(&genphy_driver, THIS_MODULE);
2634 if (rc) {
Heiner Kallweit22b56e82019-04-07 13:55:01 +02002635 phy_driver_unregister(&genphy_c45_driver);
2636err_c45:
Andy Fleminge1393452005-08-24 18:46:21 -05002637 mdio_bus_exit();
Russell King921690f2017-06-05 12:23:05 +01002638 }
Jeff Garzik67c4f3f2005-08-11 02:07:25 -04002639
Jeff Garzik67c4f3f2005-08-11 02:07:25 -04002640 return rc;
Andy Fleming00db8182005-07-30 19:31:23 -04002641}
2642
Jeff Garzik67c4f3f2005-08-11 02:07:25 -04002643static void __exit phy_exit(void)
Andy Fleming00db8182005-07-30 19:31:23 -04002644{
Heiner Kallweit22b56e82019-04-07 13:55:01 +02002645 phy_driver_unregister(&genphy_c45_driver);
Russell King921690f2017-06-05 12:23:05 +01002646 phy_driver_unregister(&genphy_driver);
Andy Fleminge1393452005-08-24 18:46:21 -05002647 mdio_bus_exit();
Andy Fleming00db8182005-07-30 19:31:23 -04002648}
2649
Andy Fleminge1393452005-08-24 18:46:21 -05002650subsys_initcall(phy_init);
Jeff Garzik67c4f3f2005-08-11 02:07:25 -04002651module_exit(phy_exit);