blob: 3b8f6b0b47b54a784d9ef316cacf7f9b7eb0c68a [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)
Florian Fainelli503ba7c2020-02-20 15:34:53 -0800250 goto out;
Andrew Lunnbc879222016-01-06 20:11:21 +0100251
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
Florian Fainelli503ba7c2020-02-20 15:34:53 -0800270out:
271 return !phydev->suspended;
Andrew Lunnbc879222016-01-06 20:11:21 +0100272}
273
274static int mdio_bus_phy_suspend(struct device *dev)
275{
276 struct phy_device *phydev = to_phy_device(dev);
277
278 /* We must stop the state machine manually, otherwise it stops out of
279 * control, possibly with the phydev->lock held. Upon resume, netdev
280 * may call phy routines that try to grab the same lock, and that may
281 * lead to a deadlock.
282 */
283 if (phydev->attached_dev && phydev->adjust_link)
284 phy_stop_machine(phydev);
285
286 if (!mdio_bus_phy_may_suspend(phydev))
287 return 0;
288
Heiner Kallweit611d7792020-03-12 22:25:20 +0100289 phydev->suspended_by_mdio_bus = 1;
290
Andrew Lunnbc879222016-01-06 20:11:21 +0100291 return phy_suspend(phydev);
292}
293
294static int mdio_bus_phy_resume(struct device *dev)
295{
296 struct phy_device *phydev = to_phy_device(dev);
297 int ret;
298
Heiner Kallweit611d7792020-03-12 22:25:20 +0100299 if (!phydev->suspended_by_mdio_bus)
Andrew Lunnbc879222016-01-06 20:11:21 +0100300 goto no_resume;
301
Heiner Kallweit611d7792020-03-12 22:25:20 +0100302 phydev->suspended_by_mdio_bus = 0;
303
Andrew Lunnbc879222016-01-06 20:11:21 +0100304 ret = phy_resume(phydev);
305 if (ret < 0)
306 return ret;
307
308no_resume:
309 if (phydev->attached_dev && phydev->adjust_link)
310 phy_start_machine(phydev);
311
312 return 0;
313}
314
315static int mdio_bus_phy_restore(struct device *dev)
316{
317 struct phy_device *phydev = to_phy_device(dev);
318 struct net_device *netdev = phydev->attached_dev;
319 int ret;
320
321 if (!netdev)
322 return 0;
323
324 ret = phy_init_hw(phydev);
325 if (ret < 0)
326 return ret;
327
Kunihiko Hayashi8742beb2018-12-18 16:57:04 +0900328 if (phydev->attached_dev && phydev->adjust_link)
329 phy_start_machine(phydev);
Andrew Lunnbc879222016-01-06 20:11:21 +0100330
331 return 0;
332}
333
334static const struct dev_pm_ops mdio_bus_phy_pm_ops = {
335 .suspend = mdio_bus_phy_suspend,
336 .resume = mdio_bus_phy_resume,
337 .freeze = mdio_bus_phy_suspend,
338 .thaw = mdio_bus_phy_resume,
339 .restore = mdio_bus_phy_restore,
340};
341
342#define MDIO_BUS_PHY_PM_OPS (&mdio_bus_phy_pm_ops)
343
344#else
345
346#define MDIO_BUS_PHY_PM_OPS NULL
347
348#endif /* CONFIG_PM */
349
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300350/**
351 * phy_register_fixup - creates a new phy_fixup and adds it to the list
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100352 * @bus_id: A string which matches phydev->mdio.dev.bus_id (or PHY_ANY_ID)
Andy Flemingf62220d2008-04-18 17:29:54 -0500353 * @phy_uid: Used to match against phydev->phy_id (the UID of the PHY)
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300354 * It can also be PHY_ANY_UID
Andy Flemingf62220d2008-04-18 17:29:54 -0500355 * @phy_uid_mask: Applied to phydev->phy_id and fixup->phy_uid before
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300356 * comparison
Andy Flemingf62220d2008-04-18 17:29:54 -0500357 * @run: The actual code to be run when a matching PHY is found
358 */
359int phy_register_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask,
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300360 int (*run)(struct phy_device *))
Andy Flemingf62220d2008-04-18 17:29:54 -0500361{
Sergei Shtylyov553fe922014-01-05 03:23:19 +0300362 struct phy_fixup *fixup = kzalloc(sizeof(*fixup), GFP_KERNEL);
Andy Flemingf62220d2008-04-18 17:29:54 -0500363
Andy Flemingf62220d2008-04-18 17:29:54 -0500364 if (!fixup)
365 return -ENOMEM;
366
Kay Sieversfb28ad32008-11-10 13:55:14 -0800367 strlcpy(fixup->bus_id, bus_id, sizeof(fixup->bus_id));
Andy Flemingf62220d2008-04-18 17:29:54 -0500368 fixup->phy_uid = phy_uid;
369 fixup->phy_uid_mask = phy_uid_mask;
370 fixup->run = run;
371
372 mutex_lock(&phy_fixup_lock);
373 list_add_tail(&fixup->list, &phy_fixup_list);
374 mutex_unlock(&phy_fixup_lock);
375
376 return 0;
377}
378EXPORT_SYMBOL(phy_register_fixup);
379
380/* Registers a fixup to be run on any PHY with the UID in phy_uid */
381int phy_register_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask,
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300382 int (*run)(struct phy_device *))
Andy Flemingf62220d2008-04-18 17:29:54 -0500383{
384 return phy_register_fixup(PHY_ANY_ID, phy_uid, phy_uid_mask, run);
385}
386EXPORT_SYMBOL(phy_register_fixup_for_uid);
387
388/* Registers a fixup to be run on the PHY with id string bus_id */
389int phy_register_fixup_for_id(const char *bus_id,
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300390 int (*run)(struct phy_device *))
Andy Flemingf62220d2008-04-18 17:29:54 -0500391{
392 return phy_register_fixup(bus_id, PHY_ANY_UID, 0xffffffff, run);
393}
394EXPORT_SYMBOL(phy_register_fixup_for_id);
395
Woojung.Huh@microchip.comf38e7a32016-12-07 20:26:07 +0000396/**
397 * phy_unregister_fixup - remove a phy_fixup from the list
398 * @bus_id: A string matches fixup->bus_id (or PHY_ANY_ID) in phy_fixup_list
399 * @phy_uid: A phy id matches fixup->phy_id (or PHY_ANY_UID) in phy_fixup_list
400 * @phy_uid_mask: Applied to phy_uid and fixup->phy_uid before comparison
401 */
402int phy_unregister_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask)
403{
404 struct list_head *pos, *n;
405 struct phy_fixup *fixup;
406 int ret;
407
408 ret = -ENODEV;
409
410 mutex_lock(&phy_fixup_lock);
411 list_for_each_safe(pos, n, &phy_fixup_list) {
412 fixup = list_entry(pos, struct phy_fixup, list);
413
414 if ((!strcmp(fixup->bus_id, bus_id)) &&
415 ((fixup->phy_uid & phy_uid_mask) ==
416 (phy_uid & phy_uid_mask))) {
417 list_del(&fixup->list);
418 kfree(fixup);
419 ret = 0;
420 break;
421 }
422 }
423 mutex_unlock(&phy_fixup_lock);
424
425 return ret;
426}
427EXPORT_SYMBOL(phy_unregister_fixup);
428
429/* Unregisters a fixup of any PHY with the UID in phy_uid */
430int phy_unregister_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask)
431{
432 return phy_unregister_fixup(PHY_ANY_ID, phy_uid, phy_uid_mask);
433}
434EXPORT_SYMBOL(phy_unregister_fixup_for_uid);
435
436/* Unregisters a fixup of the PHY with id string bus_id */
437int phy_unregister_fixup_for_id(const char *bus_id)
438{
439 return phy_unregister_fixup(bus_id, PHY_ANY_UID, 0xffffffff);
440}
441EXPORT_SYMBOL(phy_unregister_fixup_for_id);
442
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300443/* Returns 1 if fixup matches phydev in bus_id and phy_uid.
Andy Flemingf62220d2008-04-18 17:29:54 -0500444 * Fixups can be set to match any in one or more fields.
445 */
446static int phy_needs_fixup(struct phy_device *phydev, struct phy_fixup *fixup)
447{
Andrew Lunn84eff6d2016-01-06 20:11:10 +0100448 if (strcmp(fixup->bus_id, phydev_name(phydev)) != 0)
Andy Flemingf62220d2008-04-18 17:29:54 -0500449 if (strcmp(fixup->bus_id, PHY_ANY_ID) != 0)
450 return 0;
451
452 if ((fixup->phy_uid & fixup->phy_uid_mask) !=
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300453 (phydev->phy_id & fixup->phy_uid_mask))
Andy Flemingf62220d2008-04-18 17:29:54 -0500454 if (fixup->phy_uid != PHY_ANY_UID)
455 return 0;
456
457 return 1;
458}
459
460/* Runs any matching fixups for this phydev */
Sergei Shtylyovfbfcec62014-01-05 03:28:27 +0300461static int phy_scan_fixups(struct phy_device *phydev)
Andy Flemingf62220d2008-04-18 17:29:54 -0500462{
463 struct phy_fixup *fixup;
464
465 mutex_lock(&phy_fixup_lock);
466 list_for_each_entry(fixup, &phy_fixup_list, list) {
467 if (phy_needs_fixup(phydev, fixup)) {
Sergei Shtylyov553fe922014-01-05 03:23:19 +0300468 int err = fixup->run(phydev);
Andy Flemingf62220d2008-04-18 17:29:54 -0500469
Jiri Slabybc23283c2009-07-13 11:23:39 +0000470 if (err < 0) {
471 mutex_unlock(&phy_fixup_lock);
Andy Flemingf62220d2008-04-18 17:29:54 -0500472 return err;
Jiri Slabybc23283c2009-07-13 11:23:39 +0000473 }
Florian Fainellib0ae0092014-02-11 17:27:41 -0800474 phydev->has_fixups = true;
Andy Flemingf62220d2008-04-18 17:29:54 -0500475 }
476 }
477 mutex_unlock(&phy_fixup_lock);
478
479 return 0;
480}
Andy Flemingf62220d2008-04-18 17:29:54 -0500481
Andrew Lunne76a4952016-01-06 20:11:23 +0100482static int phy_bus_match(struct device *dev, struct device_driver *drv)
483{
484 struct phy_device *phydev = to_phy_device(dev);
485 struct phy_driver *phydrv = to_phy_driver(drv);
486 const int num_ids = ARRAY_SIZE(phydev->c45_ids.device_ids);
487 int i;
488
Andrew Lunna9049e02016-01-06 20:11:26 +0100489 if (!(phydrv->mdiodrv.flags & MDIO_DEVICE_IS_PHY))
490 return 0;
491
Andrew Lunne76a4952016-01-06 20:11:23 +0100492 if (phydrv->match_phy_device)
493 return phydrv->match_phy_device(phydev);
494
495 if (phydev->is_c45) {
496 for (i = 1; i < num_ids; i++) {
Russell Kingb95e86d2019-11-15 20:08:37 +0000497 if (phydev->c45_ids.device_ids[i] == 0xffffffff)
Andrew Lunne76a4952016-01-06 20:11:23 +0100498 continue;
499
500 if ((phydrv->phy_id & phydrv->phy_id_mask) ==
501 (phydev->c45_ids.device_ids[i] &
502 phydrv->phy_id_mask))
503 return 1;
504 }
505 return 0;
506 } else {
507 return (phydrv->phy_id & phydrv->phy_id_mask) ==
508 (phydev->phy_id & phydrv->phy_id_mask);
509 }
510}
511
Heiner Kallweit7f4828f2018-06-02 22:36:06 +0200512static ssize_t
513phy_id_show(struct device *dev, struct device_attribute *attr, char *buf)
514{
515 struct phy_device *phydev = to_phy_device(dev);
516
517 return sprintf(buf, "0x%.8lx\n", (unsigned long)phydev->phy_id);
518}
519static DEVICE_ATTR_RO(phy_id);
520
521static ssize_t
522phy_interface_show(struct device *dev, struct device_attribute *attr, char *buf)
523{
524 struct phy_device *phydev = to_phy_device(dev);
525 const char *mode = NULL;
526
527 if (phy_is_internal(phydev))
528 mode = "internal";
529 else
530 mode = phy_modes(phydev->interface);
531
532 return sprintf(buf, "%s\n", mode);
533}
534static DEVICE_ATTR_RO(phy_interface);
535
536static ssize_t
537phy_has_fixups_show(struct device *dev, struct device_attribute *attr,
538 char *buf)
539{
540 struct phy_device *phydev = to_phy_device(dev);
541
542 return sprintf(buf, "%d\n", phydev->has_fixups);
543}
544static DEVICE_ATTR_RO(phy_has_fixups);
545
546static struct attribute *phy_dev_attrs[] = {
547 &dev_attr_phy_id.attr,
548 &dev_attr_phy_interface.attr,
549 &dev_attr_phy_has_fixups.attr,
550 NULL,
551};
552ATTRIBUTE_GROUPS(phy_dev);
553
554static const struct device_type mdio_bus_phy_type = {
555 .name = "PHY",
556 .groups = phy_dev_groups,
557 .release = phy_device_release,
558 .pm = MDIO_BUS_PHY_PM_OPS,
559};
560
Russell King7d49a322019-12-19 23:24:52 +0000561static int phy_request_driver_module(struct phy_device *dev, u32 phy_id)
Heiner Kallweit13d0ab62019-01-16 08:07:38 +0100562{
563 int ret;
564
565 ret = request_module(MDIO_MODULE_PREFIX MDIO_ID_FMT,
566 MDIO_ID_ARGS(phy_id));
Heiner Kallweit21e19442019-01-19 10:30:21 +0100567 /* We only check for failures in executing the usermode binary,
568 * not whether a PHY driver module exists for the PHY ID.
569 * Accept -ENOENT because this may occur in case no initramfs exists,
570 * then modprobe isn't available.
Heiner Kallweit13d0ab62019-01-16 08:07:38 +0100571 */
Heiner Kallweit21e19442019-01-19 10:30:21 +0100572 if (IS_ENABLED(CONFIG_MODULES) && ret < 0 && ret != -ENOENT) {
Russell King7d49a322019-12-19 23:24:52 +0000573 phydev_err(dev, "error %d loading PHY driver module for ID 0x%08lx\n",
574 ret, (unsigned long)phy_id);
Heiner Kallweit13d0ab62019-01-16 08:07:38 +0100575 return ret;
576 }
577
578 return 0;
579}
580
Russell King7d49a322019-12-19 23:24:52 +0000581struct phy_device *phy_device_create(struct mii_bus *bus, int addr, u32 phy_id,
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300582 bool is_c45,
583 struct phy_c45_device_ids *c45_ids)
Vitaly Bordug11b0bac2006-08-14 23:00:29 -0700584{
585 struct phy_device *dev;
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100586 struct mdio_device *mdiodev;
Heiner Kallweit13d0ab62019-01-16 08:07:38 +0100587 int ret = 0;
David Woodhouse8626d3b2010-04-02 01:05:27 +0000588
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300589 /* We allocate the device, and initialize the default values */
Robert P. J. Daycd861282006-12-13 00:34:52 -0800590 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Sergei Shtylyovef899c02015-08-28 21:35:14 +0300591 if (!dev)
Sergei Shtylyovd3765f02015-08-28 21:34:34 +0300592 return ERR_PTR(-ENOMEM);
Vitaly Bordug11b0bac2006-08-14 23:00:29 -0700593
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100594 mdiodev = &dev->mdio;
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100595 mdiodev->dev.parent = &bus->dev;
596 mdiodev->dev.bus = &mdio_bus_type;
Heiner Kallweit7f4828f2018-06-02 22:36:06 +0200597 mdiodev->dev.type = &mdio_bus_phy_type;
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100598 mdiodev->bus = bus;
Andrew Lunne76a4952016-01-06 20:11:23 +0100599 mdiodev->bus_match = phy_bus_match;
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100600 mdiodev->addr = addr;
Andrew Lunn7f854422016-01-06 20:11:18 +0100601 mdiodev->flags = MDIO_DEVICE_FLAG_PHY;
Andrew Lunn711fdba2016-01-06 20:11:27 +0100602 mdiodev->device_free = phy_mdio_device_free;
603 mdiodev->device_remove = phy_mdio_device_remove;
Anton Vorontsov6f4a7f42007-12-04 16:17:33 +0300604
Russell Kinga5d66f82019-11-22 15:23:23 +0000605 dev->speed = SPEED_UNKNOWN;
606 dev->duplex = DUPLEX_UNKNOWN;
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300607 dev->pause = 0;
608 dev->asym_pause = 0;
Heiner Kallweitc69851e2018-03-11 15:00:37 +0100609 dev->link = 0;
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600610 dev->interface = PHY_INTERFACE_MODE_GMII;
Vitaly Bordug11b0bac2006-08-14 23:00:29 -0700611
612 dev->autoneg = AUTONEG_ENABLE;
613
David Daneyac28b9f2012-06-27 07:33:35 +0000614 dev->is_c45 = is_c45;
Vitaly Bordug11b0bac2006-08-14 23:00:29 -0700615 dev->phy_id = phy_id;
David Daneyac28b9f2012-06-27 07:33:35 +0000616 if (c45_ids)
617 dev->c45_ids = *c45_ids;
Dan Carpenter47b356e2016-01-12 12:36:21 +0300618 dev->irq = bus->irq[addr];
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100619 dev_set_name(&mdiodev->dev, PHY_ID_FMT, bus->id, addr);
Vitaly Bordug11b0bac2006-08-14 23:00:29 -0700620
621 dev->state = PHY_DOWN;
622
Nate Case35b5f6b2008-01-29 10:05:09 -0600623 mutex_init(&dev->lock);
Anton Vorontsov4f9c85a2010-01-18 05:37:16 +0000624 INIT_DELAYED_WORK(&dev->state_queue, phy_state_machine);
Vitaly Bordug11b0bac2006-08-14 23:00:29 -0700625
David Woodhouse8626d3b2010-04-02 01:05:27 +0000626 /* Request the appropriate module unconditionally; don't
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300627 * bother trying to do so only if it isn't already loaded,
628 * because that gets complicated. A hotplug event would have
629 * done an unconditional modprobe anyway.
630 * We don't do normal hotplug because it won't work for MDIO
631 * -- because it relies on the device staying around for long
632 * enough for the driver to get loaded. With MDIO, the NIC
633 * driver will get bored and give up as soon as it finds that
634 * there's no driver _already_ loaded.
635 */
Jose Abreu30fcd6a2018-12-02 16:33:14 +0100636 if (is_c45 && c45_ids) {
637 const int num_ids = ARRAY_SIZE(c45_ids->device_ids);
638 int i;
639
640 for (i = 1; i < num_ids; i++) {
Russell Kingb95e86d2019-11-15 20:08:37 +0000641 if (c45_ids->device_ids[i] == 0xffffffff)
Jose Abreu30fcd6a2018-12-02 16:33:14 +0100642 continue;
643
Heiner Kallweit13d0ab62019-01-16 08:07:38 +0100644 ret = phy_request_driver_module(dev,
645 c45_ids->device_ids[i]);
646 if (ret)
647 break;
Jose Abreu30fcd6a2018-12-02 16:33:14 +0100648 }
649 } else {
Heiner Kallweit13d0ab62019-01-16 08:07:38 +0100650 ret = phy_request_driver_module(dev, phy_id);
Jose Abreu30fcd6a2018-12-02 16:33:14 +0100651 }
David Woodhouse8626d3b2010-04-02 01:05:27 +0000652
Heiner Kallweit13d0ab62019-01-16 08:07:38 +0100653 if (!ret) {
654 device_initialize(&mdiodev->dev);
655 } else {
656 kfree(dev);
657 dev = ERR_PTR(ret);
658 }
Petr Malatb2a43192013-02-28 01:01:52 +0000659
Vitaly Bordug11b0bac2006-08-14 23:00:29 -0700660 return dev;
661}
David Daneyac28b9f2012-06-27 07:33:35 +0000662EXPORT_SYMBOL(phy_device_create);
663
Shaohui Xie5f6c99e2015-11-03 12:27:33 +0800664/* get_phy_c45_devs_in_pkg - reads a MMD's devices in package registers.
665 * @bus: the target MII bus
666 * @addr: PHY address on the MII bus
667 * @dev_addr: MMD address in the PHY.
668 * @devices_in_package: where to store the devices in package information.
669 *
670 * Description: reads devices in package registers of a MMD at @dev_addr
671 * from PHY at @addr on @bus.
672 *
673 * Returns: 0 on success, -EIO on failure.
674 */
675static int get_phy_c45_devs_in_pkg(struct mii_bus *bus, int addr, int dev_addr,
676 u32 *devices_in_package)
677{
678 int phy_reg, reg_addr;
679
680 reg_addr = MII_ADDR_C45 | dev_addr << 16 | MDIO_DEVS2;
681 phy_reg = mdiobus_read(bus, addr, reg_addr);
682 if (phy_reg < 0)
683 return -EIO;
Heiner Kallweit50684da2019-02-09 09:46:53 +0100684 *devices_in_package = phy_reg << 16;
Shaohui Xie5f6c99e2015-11-03 12:27:33 +0800685
686 reg_addr = MII_ADDR_C45 | dev_addr << 16 | MDIO_DEVS1;
687 phy_reg = mdiobus_read(bus, addr, reg_addr);
688 if (phy_reg < 0)
689 return -EIO;
Heiner Kallweit50684da2019-02-09 09:46:53 +0100690 *devices_in_package |= phy_reg;
Shaohui Xie5f6c99e2015-11-03 12:27:33 +0800691
Heiner Kallweit3b5e74e2019-02-08 19:25:22 +0100692 /* Bit 0 doesn't represent a device, it indicates c22 regs presence */
693 *devices_in_package &= ~BIT(0);
694
Shaohui Xie5f6c99e2015-11-03 12:27:33 +0800695 return 0;
696}
697
David Daneyac28b9f2012-06-27 07:33:35 +0000698/**
699 * get_phy_c45_ids - reads the specified addr for its 802.3-c45 IDs.
700 * @bus: the target MII bus
701 * @addr: PHY address on the MII bus
702 * @phy_id: where to store the ID retrieved.
703 * @c45_ids: where to store the c45 ID information.
704 *
705 * If the PHY devices-in-package appears to be valid, it and the
706 * corresponding identifiers are stored in @c45_ids, zero is stored
707 * in @phy_id. Otherwise 0xffffffff is stored in @phy_id. Returns
708 * zero on success.
709 *
710 */
711static int get_phy_c45_ids(struct mii_bus *bus, int addr, u32 *phy_id,
712 struct phy_c45_device_ids *c45_ids) {
713 int phy_reg;
714 int i, reg_addr;
715 const int num_ids = ARRAY_SIZE(c45_ids->device_ids);
Shaohui Xie5f6c99e2015-11-03 12:27:33 +0800716 u32 *devs = &c45_ids->devices_in_package;
David Daneyac28b9f2012-06-27 07:33:35 +0000717
Shaohui Xie5f6c99e2015-11-03 12:27:33 +0800718 /* Find first non-zero Devices In package. Device zero is reserved
719 * for 802.3 c45 complied PHYs, so don't probe it at first.
David Daneyac28b9f2012-06-27 07:33:35 +0000720 */
Shaohui Xie5f6c99e2015-11-03 12:27:33 +0800721 for (i = 1; i < num_ids && *devs == 0; i++) {
722 phy_reg = get_phy_c45_devs_in_pkg(bus, addr, i, devs);
David Daneyac28b9f2012-06-27 07:33:35 +0000723 if (phy_reg < 0)
724 return -EIO;
David Daneyac28b9f2012-06-27 07:33:35 +0000725
Shaohui Xie5f6c99e2015-11-03 12:27:33 +0800726 if ((*devs & 0x1fffffff) == 0x1fffffff) {
727 /* If mostly Fs, there is no device there,
728 * then let's continue to probe more, as some
729 * 10G PHYs have zero Devices In package,
730 * e.g. Cortina CS4315/CS4340 PHY.
731 */
732 phy_reg = get_phy_c45_devs_in_pkg(bus, addr, 0, devs);
733 if (phy_reg < 0)
734 return -EIO;
735 /* no device there, let's get out of here */
736 if ((*devs & 0x1fffffff) == 0x1fffffff) {
Shengzhou Liuda1da282015-06-26 17:58:52 +0800737 *phy_id = 0xffffffff;
738 return 0;
Shaohui Xie5f6c99e2015-11-03 12:27:33 +0800739 } else {
740 break;
Shengzhou Liuda1da282015-06-26 17:58:52 +0800741 }
David Daneyac28b9f2012-06-27 07:33:35 +0000742 }
743 }
744
745 /* Now probe Device Identifiers for each device present. */
746 for (i = 1; i < num_ids; i++) {
747 if (!(c45_ids->devices_in_package & (1 << i)))
748 continue;
749
750 reg_addr = MII_ADDR_C45 | i << 16 | MII_PHYSID1;
751 phy_reg = mdiobus_read(bus, addr, reg_addr);
752 if (phy_reg < 0)
753 return -EIO;
Heiner Kallweit50684da2019-02-09 09:46:53 +0100754 c45_ids->device_ids[i] = phy_reg << 16;
David Daneyac28b9f2012-06-27 07:33:35 +0000755
756 reg_addr = MII_ADDR_C45 | i << 16 | MII_PHYSID2;
757 phy_reg = mdiobus_read(bus, addr, reg_addr);
758 if (phy_reg < 0)
759 return -EIO;
Heiner Kallweit50684da2019-02-09 09:46:53 +0100760 c45_ids->device_ids[i] |= phy_reg;
David Daneyac28b9f2012-06-27 07:33:35 +0000761 }
762 *phy_id = 0;
763 return 0;
764}
Vitaly Bordug11b0bac2006-08-14 23:00:29 -0700765
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800766/**
Paul Gortmakercac1f3c2008-04-15 12:49:21 -0400767 * get_phy_id - reads the specified addr for its ID.
768 * @bus: the target MII bus
769 * @addr: PHY address on the MII bus
770 * @phy_id: where to store the ID retrieved.
David Daneyac28b9f2012-06-27 07:33:35 +0000771 * @is_c45: If true the PHY uses the 802.3 clause 45 protocol
772 * @c45_ids: where to store the c45 ID information.
Paul Gortmakercac1f3c2008-04-15 12:49:21 -0400773 *
David Daneyac28b9f2012-06-27 07:33:35 +0000774 * Description: In the case of a 802.3-c22 PHY, reads the ID registers
775 * of the PHY at @addr on the @bus, stores it in @phy_id and returns
776 * zero on success.
777 *
778 * In the case of a 802.3-c45 PHY, get_phy_c45_ids() is invoked, and
779 * its return value is in turn returned.
780 *
Paul Gortmakercac1f3c2008-04-15 12:49:21 -0400781 */
David Daneyac28b9f2012-06-27 07:33:35 +0000782static int get_phy_id(struct mii_bus *bus, int addr, u32 *phy_id,
783 bool is_c45, struct phy_c45_device_ids *c45_ids)
Paul Gortmakercac1f3c2008-04-15 12:49:21 -0400784{
785 int phy_reg;
786
David Daneyac28b9f2012-06-27 07:33:35 +0000787 if (is_c45)
788 return get_phy_c45_ids(bus, addr, phy_id, c45_ids);
789
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300790 /* Grab the bits from PHYIR1, and put them in the upper half */
David Daney6fe32642011-09-30 11:51:22 +0000791 phy_reg = mdiobus_read(bus, addr, MII_PHYSID1);
Alexandre Belloni02a6efc2018-04-24 18:09:04 +0200792 if (phy_reg < 0) {
Heiner Kallweitd8cce3a2019-01-16 19:52:51 +0100793 /* returning -ENODEV doesn't stop bus scanning */
794 return (phy_reg == -EIO || phy_reg == -ENODEV) ? -ENODEV : -EIO;
Alexandre Belloni02a6efc2018-04-24 18:09:04 +0200795 }
Paul Gortmakercac1f3c2008-04-15 12:49:21 -0400796
Heiner Kallweit50684da2019-02-09 09:46:53 +0100797 *phy_id = phy_reg << 16;
Paul Gortmakercac1f3c2008-04-15 12:49:21 -0400798
799 /* Grab the bits from PHYIR2, and put them in the lower half */
David Daney6fe32642011-09-30 11:51:22 +0000800 phy_reg = mdiobus_read(bus, addr, MII_PHYSID2);
Paul Gortmakercac1f3c2008-04-15 12:49:21 -0400801 if (phy_reg < 0)
802 return -EIO;
803
Heiner Kallweit50684da2019-02-09 09:46:53 +0100804 *phy_id |= phy_reg;
Paul Gortmakercac1f3c2008-04-15 12:49:21 -0400805
806 return 0;
807}
808
809/**
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300810 * get_phy_device - reads the specified PHY device and returns its @phy_device
811 * struct
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800812 * @bus: the target MII bus
813 * @addr: PHY address on the MII bus
David Daneyac28b9f2012-06-27 07:33:35 +0000814 * @is_c45: If true the PHY uses the 802.3 clause 45 protocol
Andy Fleming00db8182005-07-30 19:31:23 -0400815 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800816 * Description: Reads the ID registers of the PHY at @addr on the
817 * @bus, then allocates and returns the phy_device to represent it.
Andy Fleming00db8182005-07-30 19:31:23 -0400818 */
David Daneyac28b9f2012-06-27 07:33:35 +0000819struct phy_device *get_phy_device(struct mii_bus *bus, int addr, bool is_c45)
Andy Fleming00db8182005-07-30 19:31:23 -0400820{
Russell Kingb95e86d2019-11-15 20:08:37 +0000821 struct phy_c45_device_ids c45_ids;
David S. Miller160c85f2012-06-27 21:28:14 -0700822 u32 phy_id = 0;
Paul Gortmakercac1f3c2008-04-15 12:49:21 -0400823 int r;
Andy Fleming00db8182005-07-30 19:31:23 -0400824
Russell Kingb95e86d2019-11-15 20:08:37 +0000825 c45_ids.devices_in_package = 0;
826 memset(c45_ids.device_ids, 0xff, sizeof(c45_ids.device_ids));
827
David Daneyac28b9f2012-06-27 07:33:35 +0000828 r = get_phy_id(bus, addr, &phy_id, is_c45, &c45_ids);
Paul Gortmakercac1f3c2008-04-15 12:49:21 -0400829 if (r)
830 return ERR_PTR(r);
Andy Fleming00db8182005-07-30 19:31:23 -0400831
Giuseppe Cavallaro6436cbc2008-11-20 20:43:18 -0800832 /* If the phy_id is mostly Fs, there is no device there */
833 if ((phy_id & 0x1fffffff) == 0x1fffffff)
Sergei Shtylyovb74766a2016-04-24 20:25:23 +0300834 return ERR_PTR(-ENODEV);
Giuseppe Cavallaro6436cbc2008-11-20 20:43:18 -0800835
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300836 return phy_device_create(bus, addr, phy_id, is_c45, &c45_ids);
Andy Fleming00db8182005-07-30 19:31:23 -0400837}
Grant Likely4dea5472009-04-25 12:52:46 +0000838EXPORT_SYMBOL(get_phy_device);
839
840/**
841 * phy_device_register - Register the phy device on the MDIO bus
Randy Dunlap1d4ac5d2009-06-16 16:56:33 +0000842 * @phydev: phy_device structure to be added to the MDIO bus
Grant Likely4dea5472009-04-25 12:52:46 +0000843 */
844int phy_device_register(struct phy_device *phydev)
845{
846 int err;
847
Andrew Lunn7f854422016-01-06 20:11:18 +0100848 err = mdiobus_register_device(&phydev->mdio);
849 if (err)
850 return err;
Grant Likely4dea5472009-04-25 12:52:46 +0000851
Sergei Shtylyovbafbdd52017-12-04 13:35:05 +0100852 /* Deassert the reset signal */
853 phy_device_reset(phydev, 0);
854
Grant Likely4dea5472009-04-25 12:52:46 +0000855 /* Run all of the fixups for this PHY */
Florian Fainellid92f5de2014-07-28 16:28:07 -0700856 err = phy_scan_fixups(phydev);
Florian Fainelli87aa9f92013-12-06 13:01:34 -0800857 if (err) {
Heiner Kallweitc3a6a172019-01-15 21:50:25 +0100858 phydev_err(phydev, "failed to initialize\n");
Florian Fainelli87aa9f92013-12-06 13:01:34 -0800859 goto out;
860 }
Grant Likely4dea5472009-04-25 12:52:46 +0000861
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100862 err = device_add(&phydev->mdio.dev);
Grant Likely4dea5472009-04-25 12:52:46 +0000863 if (err) {
Heiner Kallweitc3a6a172019-01-15 21:50:25 +0100864 phydev_err(phydev, "failed to add\n");
Grant Likely4dea5472009-04-25 12:52:46 +0000865 goto out;
866 }
867
868 return 0;
869
870 out:
Sergei Shtylyovbafbdd52017-12-04 13:35:05 +0100871 /* Assert the reset signal */
872 phy_device_reset(phydev, 1);
873
Andrew Lunn7f854422016-01-06 20:11:18 +0100874 mdiobus_unregister_device(&phydev->mdio);
Grant Likely4dea5472009-04-25 12:52:46 +0000875 return err;
876}
877EXPORT_SYMBOL(phy_device_register);
Andy Fleming00db8182005-07-30 19:31:23 -0400878
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800879/**
Russell King38737e42015-09-24 20:36:28 +0100880 * phy_device_remove - Remove a previously registered phy device from the MDIO bus
881 * @phydev: phy_device structure to remove
882 *
883 * This doesn't free the phy_device itself, it merely reverses the effects
884 * of phy_device_register(). Use phy_device_free() to free the device
885 * after calling this function.
886 */
887void phy_device_remove(struct phy_device *phydev)
888{
Richard Cochran1dca22b2019-12-25 18:16:18 -0800889 if (phydev->mii_ts)
890 unregister_mii_timestamper(phydev->mii_ts);
891
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100892 device_del(&phydev->mdio.dev);
Sergei Shtylyovbafbdd52017-12-04 13:35:05 +0100893
894 /* Assert the reset signal */
895 phy_device_reset(phydev, 1);
896
Andrew Lunn7f854422016-01-06 20:11:18 +0100897 mdiobus_unregister_device(&phydev->mdio);
Russell King38737e42015-09-24 20:36:28 +0100898}
899EXPORT_SYMBOL(phy_device_remove);
900
901/**
Jiri Pirkof8f76db2010-02-04 10:23:02 -0800902 * phy_find_first - finds the first PHY device on the bus
903 * @bus: the target MII bus
904 */
905struct phy_device *phy_find_first(struct mii_bus *bus)
906{
Andrew Lunn7f854422016-01-06 20:11:18 +0100907 struct phy_device *phydev;
Jiri Pirkof8f76db2010-02-04 10:23:02 -0800908 int addr;
909
910 for (addr = 0; addr < PHY_MAX_ADDR; addr++) {
Andrew Lunn7f854422016-01-06 20:11:18 +0100911 phydev = mdiobus_get_phy(bus, addr);
912 if (phydev)
913 return phydev;
Jiri Pirkof8f76db2010-02-04 10:23:02 -0800914 }
915 return NULL;
916}
917EXPORT_SYMBOL(phy_find_first);
918
Russell Kinga81497b2017-07-25 15:02:58 +0100919static void phy_link_change(struct phy_device *phydev, bool up, bool do_carrier)
920{
921 struct net_device *netdev = phydev->attached_dev;
922
923 if (do_carrier) {
924 if (up)
925 netif_carrier_on(netdev);
926 else
927 netif_carrier_off(netdev);
928 }
929 phydev->adjust_link(netdev);
Richard Cochran4715f652019-12-25 18:16:15 -0800930 if (phydev->mii_ts && phydev->mii_ts->link_state)
931 phydev->mii_ts->link_state(phydev->mii_ts, phydev);
Russell Kinga81497b2017-07-25 15:02:58 +0100932}
933
Jiri Pirkof8f76db2010-02-04 10:23:02 -0800934/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800935 * phy_prepare_link - prepares the PHY layer to monitor link status
936 * @phydev: target phy_device struct
937 * @handler: callback function for link status change notifications
Andy Fleming00db8182005-07-30 19:31:23 -0400938 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800939 * Description: Tells the PHY infrastructure to handle the
Andy Fleming00db8182005-07-30 19:31:23 -0400940 * gory details on monitoring link status (whether through
941 * polling or an interrupt), and to call back to the
942 * connected device driver when the link status changes.
943 * If you want to monitor your own link state, don't call
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800944 * this function.
945 */
stephen hemminger89ff05e2010-10-21 08:37:41 +0000946static void phy_prepare_link(struct phy_device *phydev,
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300947 void (*handler)(struct net_device *))
Andy Fleming00db8182005-07-30 19:31:23 -0400948{
949 phydev->adjust_link = handler;
950}
951
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800952/**
Grant Likelyfa94f6d2009-04-25 12:52:51 +0000953 * phy_connect_direct - connect an ethernet device to a specific phy_device
954 * @dev: the network device to connect
955 * @phydev: the pointer to the phy device
956 * @handler: callback function for state change notifications
Grant Likelyfa94f6d2009-04-25 12:52:51 +0000957 * @interface: PHY device's interface
958 */
959int phy_connect_direct(struct net_device *dev, struct phy_device *phydev,
Florian Fainellif9a8f832013-01-14 00:52:52 +0000960 void (*handler)(struct net_device *),
Grant Likelyfa94f6d2009-04-25 12:52:51 +0000961 phy_interface_t interface)
962{
963 int rc;
964
Ioana Ciornei82c76ac2019-05-28 20:38:09 +0300965 if (!dev)
966 return -EINVAL;
967
Florian Fainellif9a8f832013-01-14 00:52:52 +0000968 rc = phy_attach_direct(dev, phydev, phydev->dev_flags, interface);
Grant Likelyfa94f6d2009-04-25 12:52:51 +0000969 if (rc)
970 return rc;
971
972 phy_prepare_link(phydev, handler);
Heiner Kallweit434a4312019-01-23 07:31:58 +0100973 if (phy_interrupt_is_valid(phydev))
974 phy_request_interrupt(phydev);
Grant Likelyfa94f6d2009-04-25 12:52:51 +0000975
976 return 0;
977}
978EXPORT_SYMBOL(phy_connect_direct);
979
980/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800981 * phy_connect - connect an ethernet device to a PHY device
982 * @dev: the network device to connect
Randy Dunlap5d12b132008-04-28 10:58:22 -0700983 * @bus_id: the id string of the PHY device to connect
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800984 * @handler: callback function for state change notifications
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800985 * @interface: PHY device's interface
Andy Fleminge1393452005-08-24 18:46:21 -0500986 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800987 * Description: Convenience function for connecting ethernet
Andy Fleminge1393452005-08-24 18:46:21 -0500988 * devices to PHY devices. The default behavior is for
989 * the PHY infrastructure to handle everything, and only notify
990 * the connected driver when the link status changes. If you
991 * don't want, or can't use the provided functionality, you may
992 * choose to call only the subset of functions which provide
993 * the desired functionality.
994 */
Florian Fainellie1093742013-12-17 21:38:12 -0800995struct phy_device *phy_connect(struct net_device *dev, const char *bus_id,
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300996 void (*handler)(struct net_device *),
997 phy_interface_t interface)
Andy Fleminge1393452005-08-24 18:46:21 -0500998{
999 struct phy_device *phydev;
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001000 struct device *d;
1001 int rc;
Andy Fleminge1393452005-08-24 18:46:21 -05001002
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001003 /* Search the list of PHY devices on the mdio bus for the
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001004 * PHY with the requested name
1005 */
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001006 d = bus_find_device_by_name(&mdio_bus_type, NULL, bus_id);
1007 if (!d) {
1008 pr_err("PHY %s not found\n", bus_id);
1009 return ERR_PTR(-ENODEV);
1010 }
1011 phydev = to_phy_device(d);
Andy Fleminge1393452005-08-24 18:46:21 -05001012
Florian Fainellif9a8f832013-01-14 00:52:52 +00001013 rc = phy_connect_direct(dev, phydev, handler, interface);
Johan Hovold17ae1c62016-11-03 18:40:19 +01001014 put_device(d);
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001015 if (rc)
1016 return ERR_PTR(rc);
Andy Fleminge1393452005-08-24 18:46:21 -05001017
1018 return phydev;
1019}
1020EXPORT_SYMBOL(phy_connect);
1021
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001022/**
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001023 * phy_disconnect - disable interrupts, stop state machine, and detach a PHY
1024 * device
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001025 * @phydev: target phy_device struct
1026 */
Andy Fleminge1393452005-08-24 18:46:21 -05001027void phy_disconnect(struct phy_device *phydev)
1028{
Heiner Kallweit472115d2019-01-17 20:07:54 +01001029 if (phy_is_started(phydev))
1030 phy_stop(phydev);
1031
Heiner Kallweitbb658ab2019-01-17 20:09:21 +01001032 if (phy_interrupt_is_valid(phydev))
Heiner Kallweit07b09282019-05-30 15:09:15 +02001033 phy_free_interrupt(phydev);
Andy Fleminge1393452005-08-24 18:46:21 -05001034
Andy Fleminge1393452005-08-24 18:46:21 -05001035 phydev->adjust_link = NULL;
1036
1037 phy_detach(phydev);
1038}
1039EXPORT_SYMBOL(phy_disconnect);
1040
Florian Fainelli87aa9f92013-12-06 13:01:34 -08001041/**
1042 * phy_poll_reset - Safely wait until a PHY reset has properly completed
1043 * @phydev: The PHY device to poll
1044 *
1045 * Description: According to IEEE 802.3, Section 2, Subsection 22.2.4.1.1, as
1046 * published in 2008, a PHY reset may take up to 0.5 seconds. The MII BMCR
1047 * register must be polled until the BMCR_RESET bit clears.
1048 *
1049 * Furthermore, any attempts to write to PHY registers may have no effect
1050 * or even generate MDIO bus errors until this is complete.
1051 *
1052 * Some PHYs (such as the Marvell 88E1111) don't entirely conform to the
1053 * standard and do not fully reset after the BMCR_RESET bit is set, and may
1054 * even *REQUIRE* a soft-reset to properly restart autonegotiation. In an
1055 * effort to support such broken PHYs, this function is separate from the
1056 * standard phy_init_hw() which will zero all the other bits in the BMCR
1057 * and reapply all driver-specific and board-specific fixups.
1058 */
1059static int phy_poll_reset(struct phy_device *phydev)
1060{
1061 /* Poll until the reset bit clears (50ms per retry == 0.6 sec) */
Dejin Zheng745a2372020-03-23 23:05:58 +08001062 int ret, val;
Florian Fainelli87aa9f92013-12-06 13:01:34 -08001063
Dejin Zheng745a2372020-03-23 23:05:58 +08001064 ret = phy_read_poll_timeout(phydev, MII_BMCR, val, !(val & BMCR_RESET),
1065 50000, 600000, true);
1066 if (ret)
1067 return ret;
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001068 /* Some chips (smsc911x) may still need up to another 1ms after the
Florian Fainelli87aa9f92013-12-06 13:01:34 -08001069 * BMCR_RESET bit is cleared before they are usable.
1070 */
1071 msleep(1);
1072 return 0;
1073}
1074
Anton Vorontsov2f5cb432009-12-30 08:23:30 +00001075int phy_init_hw(struct phy_device *phydev)
1076{
Florian Fainelli9df81dd2014-02-17 13:34:03 -08001077 int ret = 0;
Anton Vorontsov2f5cb432009-12-30 08:23:30 +00001078
Sergei Shtylyovbafbdd52017-12-04 13:35:05 +01001079 /* Deassert the reset signal */
1080 phy_device_reset(phydev, 0);
1081
Heiner Kallweita5996982019-01-19 10:43:07 +01001082 if (!phydev->drv)
Anton Vorontsov2f5cb432009-12-30 08:23:30 +00001083 return 0;
1084
Florian Fainelli9df81dd2014-02-17 13:34:03 -08001085 if (phydev->drv->soft_reset)
1086 ret = phydev->drv->soft_reset(phydev);
Florian Fainelli9df81dd2014-02-17 13:34:03 -08001087
Florian Fainelli87aa9f92013-12-06 13:01:34 -08001088 if (ret < 0)
1089 return ret;
1090
Anton Vorontsov2f5cb432009-12-30 08:23:30 +00001091 ret = phy_scan_fixups(phydev);
1092 if (ret < 0)
1093 return ret;
1094
Heiner Kallweita5996982019-01-19 10:43:07 +01001095 if (phydev->drv->config_init)
1096 ret = phydev->drv->config_init(phydev);
1097
1098 return ret;
Anton Vorontsov2f5cb432009-12-30 08:23:30 +00001099}
Florian Fainelli87aa9f92013-12-06 13:01:34 -08001100EXPORT_SYMBOL(phy_init_hw);
Anton Vorontsov2f5cb432009-12-30 08:23:30 +00001101
Andrew Lunn22209432016-01-06 20:11:13 +01001102void phy_attached_info(struct phy_device *phydev)
1103{
1104 phy_attached_print(phydev, NULL);
1105}
1106EXPORT_SYMBOL(phy_attached_info);
1107
Romain Perier5e369ae2017-09-04 10:41:36 +02001108#define ATTACHED_FMT "attached PHY driver [%s] (mii_bus:phy_addr=%s, irq=%s)"
Florian Fainellie27f1782020-01-12 09:35:38 -08001109char *phy_attached_info_irq(struct phy_device *phydev)
Andrew Lunn22209432016-01-06 20:11:13 +01001110{
Romain Perier5e369ae2017-09-04 10:41:36 +02001111 char *irq_str;
Geert Uytterhoeven059fbe82017-09-21 13:27:02 +02001112 char irq_num[8];
Romain Perier5e369ae2017-09-04 10:41:36 +02001113
1114 switch(phydev->irq) {
1115 case PHY_POLL:
1116 irq_str = "POLL";
1117 break;
1118 case PHY_IGNORE_INTERRUPT:
1119 irq_str = "IGNORE";
1120 break;
1121 default:
1122 snprintf(irq_num, sizeof(irq_num), "%d", phydev->irq);
1123 irq_str = irq_num;
1124 break;
1125 }
1126
Florian Fainellie27f1782020-01-12 09:35:38 -08001127 return kasprintf(GFP_KERNEL, "%s", irq_str);
1128}
1129EXPORT_SYMBOL(phy_attached_info_irq);
1130
1131void phy_attached_print(struct phy_device *phydev, const char *fmt, ...)
1132{
1133 const char *drv_name = phydev->drv ? phydev->drv->name : "unbound";
1134 char *irq_str = phy_attached_info_irq(phydev);
Florian Fainellifcd03e32017-08-22 14:26:47 -07001135
Andrew Lunn22209432016-01-06 20:11:13 +01001136 if (!fmt) {
Andrew Lunnc4fabb82018-09-29 23:04:11 +02001137 phydev_info(phydev, ATTACHED_FMT "\n",
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 } else {
1141 va_list ap;
1142
Andrew Lunnc4fabb82018-09-29 23:04:11 +02001143 phydev_info(phydev, ATTACHED_FMT,
Florian Fainellifcd03e32017-08-22 14:26:47 -07001144 drv_name, phydev_name(phydev),
Romain Perier5e369ae2017-09-04 10:41:36 +02001145 irq_str);
Andrew Lunn22209432016-01-06 20:11:13 +01001146
1147 va_start(ap, fmt);
1148 vprintk(fmt, ap);
1149 va_end(ap);
1150 }
Florian Fainellie27f1782020-01-12 09:35:38 -08001151 kfree(irq_str);
Andrew Lunn22209432016-01-06 20:11:13 +01001152}
1153EXPORT_SYMBOL(phy_attached_print);
1154
Vladimir Oltean53cfca22019-05-28 20:38:07 +03001155static void phy_sysfs_create_links(struct phy_device *phydev)
1156{
1157 struct net_device *dev = phydev->attached_dev;
1158 int err;
1159
Ioana Ciornei2db2d9d12019-05-28 20:38:08 +03001160 if (!dev)
1161 return;
1162
Vladimir Oltean53cfca22019-05-28 20:38:07 +03001163 err = sysfs_create_link(&phydev->mdio.dev.kobj, &dev->dev.kobj,
1164 "attached_dev");
1165 if (err)
1166 return;
1167
1168 err = sysfs_create_link_nowarn(&dev->dev.kobj,
1169 &phydev->mdio.dev.kobj,
1170 "phydev");
1171 if (err) {
1172 dev_err(&dev->dev, "could not add device link to %s err %d\n",
1173 kobject_name(&phydev->mdio.dev.kobj),
1174 err);
1175 /* non-fatal - some net drivers can use one netdevice
1176 * with more then one phy
1177 */
1178 }
1179
1180 phydev->sysfs_links = true;
1181}
1182
Ioana Ciorneic920f742019-05-28 20:38:10 +03001183static ssize_t
1184phy_standalone_show(struct device *dev, struct device_attribute *attr,
1185 char *buf)
1186{
1187 struct phy_device *phydev = to_phy_device(dev);
1188
1189 return sprintf(buf, "%d\n", !phydev->attached_dev);
1190}
1191static DEVICE_ATTR_RO(phy_standalone);
1192
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001193/**
Russell King298e54f2019-11-15 19:56:51 +00001194 * phy_sfp_attach - attach the SFP bus to the PHY upstream network device
1195 * @upstream: pointer to the phy device
1196 * @bus: sfp bus representing cage being attached
1197 *
1198 * This is used to fill in the sfp_upstream_ops .attach member.
1199 */
1200void phy_sfp_attach(void *upstream, struct sfp_bus *bus)
1201{
1202 struct phy_device *phydev = upstream;
1203
1204 if (phydev->attached_dev)
1205 phydev->attached_dev->sfp_bus = bus;
1206 phydev->sfp_bus_attached = true;
1207}
1208EXPORT_SYMBOL(phy_sfp_attach);
1209
1210/**
1211 * phy_sfp_detach - detach the SFP bus from the PHY upstream network device
1212 * @upstream: pointer to the phy device
1213 * @bus: sfp bus representing cage being attached
1214 *
1215 * This is used to fill in the sfp_upstream_ops .detach member.
1216 */
1217void phy_sfp_detach(void *upstream, struct sfp_bus *bus)
1218{
1219 struct phy_device *phydev = upstream;
1220
1221 if (phydev->attached_dev)
1222 phydev->attached_dev->sfp_bus = NULL;
1223 phydev->sfp_bus_attached = false;
1224}
1225EXPORT_SYMBOL(phy_sfp_detach);
1226
1227/**
1228 * phy_sfp_probe - probe for a SFP cage attached to this PHY device
1229 * @phydev: Pointer to phy_device
1230 * @ops: SFP's upstream operations
1231 */
1232int phy_sfp_probe(struct phy_device *phydev,
1233 const struct sfp_upstream_ops *ops)
1234{
1235 struct sfp_bus *bus;
1236 int ret;
1237
1238 if (phydev->mdio.dev.fwnode) {
1239 bus = sfp_bus_find_fwnode(phydev->mdio.dev.fwnode);
1240 if (IS_ERR(bus))
1241 return PTR_ERR(bus);
1242
1243 phydev->sfp_bus = bus;
1244
1245 ret = sfp_bus_add_upstream(bus, phydev, ops);
1246 sfp_bus_put(bus);
1247 }
1248 return 0;
1249}
1250EXPORT_SYMBOL(phy_sfp_probe);
1251
1252/**
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001253 * phy_attach_direct - attach a network device to a given PHY device pointer
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001254 * @dev: network device to attach
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001255 * @phydev: Pointer to phy_device to attach
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001256 * @flags: PHY device's dev_flags
1257 * @interface: PHY device's interface
1258 *
1259 * Description: Called by drivers to attach to a particular PHY
1260 * device. The phy_device is found, and properly hooked up
Andy Fleming257184d2014-01-10 14:27:54 +08001261 * to the phy_driver. If no driver is attached, then a
1262 * generic driver is used. The phy_device is given a ptr to
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001263 * the attaching device, and given a callback for link status
1264 * change. The phy_device is returned to the attaching driver.
Russell King73229672015-09-24 20:36:08 +01001265 * This function takes a reference on the phy device.
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001266 */
Andy Fleming257184d2014-01-10 14:27:54 +08001267int phy_attach_direct(struct net_device *dev, struct phy_device *phydev,
1268 u32 flags, phy_interface_t interface)
Andy Fleminge1393452005-08-24 18:46:21 -05001269{
Andrew Lunne5a03bf2016-01-06 20:11:16 +01001270 struct mii_bus *bus = phydev->mdio.bus;
1271 struct device *d = &phydev->mdio.dev;
Ioana Ciornei2db2d9d12019-05-28 20:38:08 +03001272 struct module *ndev_owner = NULL;
Florian Fainelli6d9f66a2017-02-08 19:05:26 -08001273 bool using_genphy = false;
Marc Kleine-Budded005a092011-03-28 14:54:08 +00001274 int err;
Andy Fleminge1393452005-08-24 18:46:21 -05001275
Florian Fainelliec988ad2016-12-06 20:54:43 -08001276 /* For Ethernet device drivers that register their own MDIO bus, we
1277 * will have bus->owner match ndev_mod, so we do not want to increment
1278 * our own module->refcnt here, otherwise we would not be able to
1279 * unload later on.
1280 */
Ioana Ciornei2db2d9d12019-05-28 20:38:08 +03001281 if (dev)
1282 ndev_owner = dev->dev.parent->driver->owner;
Florian Fainelliec988ad2016-12-06 20:54:43 -08001283 if (ndev_owner != bus->owner && !try_module_get(bus->owner)) {
Ioana Ciornei2db2d9d12019-05-28 20:38:08 +03001284 phydev_err(phydev, "failed to get the bus module\n");
Russell King3e3aaf62015-09-24 20:36:02 +01001285 return -EIO;
1286 }
1287
Russell King73229672015-09-24 20:36:08 +01001288 get_device(d);
1289
Andy Fleminge1393452005-08-24 18:46:21 -05001290 /* Assume that if there is no driver, that it doesn't
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001291 * exist, and we should use the genphy driver.
1292 */
Sergei Shtylyovef899c02015-08-28 21:35:14 +03001293 if (!d->driver) {
Andy Fleming257184d2014-01-10 14:27:54 +08001294 if (phydev->is_c45)
Heiner Kallweit22b56e82019-04-07 13:55:01 +02001295 d->driver = &genphy_c45_driver.mdiodrv.driver;
Andy Fleming257184d2014-01-10 14:27:54 +08001296 else
Russell King921690f2017-06-05 12:23:05 +01001297 d->driver = &genphy_driver.mdiodrv.driver;
Andy Fleminge1393452005-08-24 18:46:21 -05001298
Florian Fainelli6d9f66a2017-02-08 19:05:26 -08001299 using_genphy = true;
1300 }
1301
1302 if (!try_module_get(d->driver->owner)) {
Ioana Ciornei2db2d9d12019-05-28 20:38:08 +03001303 phydev_err(phydev, "failed to get the device driver module\n");
Florian Fainelli6d9f66a2017-02-08 19:05:26 -08001304 err = -EIO;
1305 goto error_put_device;
1306 }
1307
1308 if (using_genphy) {
Andy Fleminge1393452005-08-24 18:46:21 -05001309 err = d->driver->probe(d);
Jeff Garzikb7a00ec2006-10-01 07:27:46 -04001310 if (err >= 0)
1311 err = device_bind_driver(d);
Andy Fleminge1393452005-08-24 18:46:21 -05001312
Jeff Garzikb7a00ec2006-10-01 07:27:46 -04001313 if (err)
Florian Fainelli6d9f66a2017-02-08 19:05:26 -08001314 goto error_module_put;
Andy Fleminge1393452005-08-24 18:46:21 -05001315 }
1316
1317 if (phydev->attached_dev) {
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001318 dev_err(&dev->dev, "PHY already attached\n");
Russell King3e3aaf62015-09-24 20:36:02 +01001319 err = -EBUSY;
1320 goto error;
Ezequiel Garciab3565f22014-07-23 16:47:32 -03001321 }
1322
Russell Kinga81497b2017-07-25 15:02:58 +01001323 phydev->phy_link_change = phy_link_change;
Ioana Ciornei2db2d9d12019-05-28 20:38:08 +03001324 if (dev) {
1325 phydev->attached_dev = dev;
1326 dev->phydev = phydev;
Russell King298e54f2019-11-15 19:56:51 +00001327
1328 if (phydev->sfp_bus_attached)
1329 dev->sfp_bus = phydev->sfp_bus;
Ioana Ciornei2db2d9d12019-05-28 20:38:08 +03001330 }
Florian Fainellia3995462017-05-27 10:42:25 -07001331
1332 /* Some Ethernet drivers try to connect to a PHY device before
1333 * calling register_netdevice() -> netdev_register_kobject() and
1334 * does the dev->dev.kobj initialization. Here we only check for
1335 * success which indicates that the network device kobject is
1336 * ready. Once we do that we still need to keep track of whether
1337 * links were successfully set up or not for phy_detach() to
1338 * remove them accordingly.
1339 */
1340 phydev->sysfs_links = false;
1341
Vladimir Oltean53cfca22019-05-28 20:38:07 +03001342 phy_sysfs_create_links(phydev);
Andy Fleminge1393452005-08-24 18:46:21 -05001343
Ioana Ciorneic920f742019-05-28 20:38:10 +03001344 if (!phydev->attached_dev) {
1345 err = sysfs_create_file(&phydev->mdio.dev.kobj,
1346 &dev_attr_phy_standalone.attr);
1347 if (err)
1348 phydev_err(phydev, "error creating 'phy_standalone' sysfs entry\n");
1349 }
1350
Tao Rene7312ef2019-10-22 11:31:06 -07001351 phydev->dev_flags |= flags;
Andy Fleminge1393452005-08-24 18:46:21 -05001352
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001353 phydev->interface = interface;
1354
Anton Vorontsovef24b162010-08-24 14:46:12 -07001355 phydev->state = PHY_READY;
1356
Sjoerd Simons113c74d2016-01-14 21:57:18 +01001357 /* Initial carrier state is off as the phy is about to be
1358 * (re)initialized.
1359 */
Ioana Ciornei2db2d9d12019-05-28 20:38:08 +03001360 if (dev)
1361 netif_carrier_off(phydev->attached_dev);
Sjoerd Simons113c74d2016-01-14 21:57:18 +01001362
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001363 /* Do initial configuration here, now that
1364 * we have certain key parameters
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001365 * (dev_flags and interface)
1366 */
Marc Kleine-Budded005a092011-03-28 14:54:08 +00001367 err = phy_init_hw(phydev);
1368 if (err)
Woojung Huha7dac9f2016-11-23 23:10:33 +00001369 goto error;
Sebastian Hesselbarth1211ce52013-12-13 10:20:28 +01001370
Woojung Huha7dac9f2016-11-23 23:10:33 +00001371 phy_resume(phydev);
Zach Brown2e0bc452016-10-17 10:49:55 -05001372 phy_led_triggers_register(phydev);
1373
Marc Kleine-Budded005a092011-03-28 14:54:08 +00001374 return err;
Russell King3e3aaf62015-09-24 20:36:02 +01001375
1376error:
Florian Fainelli6d9f66a2017-02-08 19:05:26 -08001377 /* phy_detach() does all of the cleanup below */
Woojung Huha7dac9f2016-11-23 23:10:33 +00001378 phy_detach(phydev);
Florian Fainelli6d9f66a2017-02-08 19:05:26 -08001379 return err;
1380
1381error_module_put:
Mao Wenancafe8df2017-01-31 18:46:43 -08001382 module_put(d->driver->owner);
Florian Fainelli6d9f66a2017-02-08 19:05:26 -08001383error_put_device:
1384 put_device(d);
Florian Fainelliec988ad2016-12-06 20:54:43 -08001385 if (ndev_owner != bus->owner)
1386 module_put(bus->owner);
Russell King3e3aaf62015-09-24 20:36:02 +01001387 return err;
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001388}
Andy Fleming257184d2014-01-10 14:27:54 +08001389EXPORT_SYMBOL(phy_attach_direct);
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001390
1391/**
1392 * phy_attach - attach a network device to a particular PHY device
1393 * @dev: network device to attach
1394 * @bus_id: Bus ID of PHY device to attach
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001395 * @interface: PHY device's interface
1396 *
1397 * Description: Same as phy_attach_direct() except that a PHY bus_id
1398 * string is passed instead of a pointer to a struct phy_device.
1399 */
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001400struct phy_device *phy_attach(struct net_device *dev, const char *bus_id,
1401 phy_interface_t interface)
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001402{
1403 struct bus_type *bus = &mdio_bus_type;
1404 struct phy_device *phydev;
1405 struct device *d;
1406 int rc;
1407
Ioana Ciornei82c76ac2019-05-28 20:38:09 +03001408 if (!dev)
1409 return ERR_PTR(-EINVAL);
1410
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001411 /* Search the list of PHY devices on the mdio bus for the
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001412 * PHY with the requested name
1413 */
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001414 d = bus_find_device_by_name(bus, NULL, bus_id);
1415 if (!d) {
1416 pr_err("PHY %s not found\n", bus_id);
1417 return ERR_PTR(-ENODEV);
1418 }
1419 phydev = to_phy_device(d);
1420
Florian Fainellif9a8f832013-01-14 00:52:52 +00001421 rc = phy_attach_direct(dev, phydev, phydev->dev_flags, interface);
Johan Hovold17ae1c62016-11-03 18:40:19 +01001422 put_device(d);
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001423 if (rc)
1424 return ERR_PTR(rc);
1425
Andy Fleminge1393452005-08-24 18:46:21 -05001426 return phydev;
1427}
1428EXPORT_SYMBOL(phy_attach);
1429
Florian Fainelli5db5ea92019-01-15 15:09:35 -08001430static bool phy_driver_is_genphy_kind(struct phy_device *phydev,
1431 struct device_driver *driver)
1432{
1433 struct device *d = &phydev->mdio.dev;
1434 bool ret = false;
1435
1436 if (!phydev->drv)
1437 return ret;
1438
1439 get_device(d);
1440 ret = d->driver == driver;
1441 put_device(d);
1442
1443 return ret;
1444}
1445
1446bool phy_driver_is_genphy(struct phy_device *phydev)
1447{
1448 return phy_driver_is_genphy_kind(phydev,
1449 &genphy_driver.mdiodrv.driver);
1450}
1451EXPORT_SYMBOL_GPL(phy_driver_is_genphy);
1452
1453bool phy_driver_is_genphy_10g(struct phy_device *phydev)
1454{
1455 return phy_driver_is_genphy_kind(phydev,
Heiner Kallweit22b56e82019-04-07 13:55:01 +02001456 &genphy_c45_driver.mdiodrv.driver);
Florian Fainelli5db5ea92019-01-15 15:09:35 -08001457}
1458EXPORT_SYMBOL_GPL(phy_driver_is_genphy_10g);
1459
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001460/**
1461 * phy_detach - detach a PHY device from its network device
1462 * @phydev: target phy_device struct
Russell King73229672015-09-24 20:36:08 +01001463 *
1464 * This detaches the phy device from its network device and the phy
1465 * driver, and drops the reference count taken in phy_attach_direct().
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001466 */
Andy Fleminge1393452005-08-24 18:46:21 -05001467void phy_detach(struct phy_device *phydev)
1468{
Florian Fainelliec988ad2016-12-06 20:54:43 -08001469 struct net_device *dev = phydev->attached_dev;
Ioana Ciornei2db2d9d12019-05-28 20:38:08 +03001470 struct module *ndev_owner = NULL;
Russell King3e3aaf62015-09-24 20:36:02 +01001471 struct mii_bus *bus;
Ezequiel Garciab3565f22014-07-23 16:47:32 -03001472
Florian Fainellia3995462017-05-27 10:42:25 -07001473 if (phydev->sysfs_links) {
Ioana Ciornei2db2d9d12019-05-28 20:38:08 +03001474 if (dev)
1475 sysfs_remove_link(&dev->dev.kobj, "phydev");
Florian Fainellia3995462017-05-27 10:42:25 -07001476 sysfs_remove_link(&phydev->mdio.dev.kobj, "attached_dev");
1477 }
Ioana Ciorneic920f742019-05-28 20:38:10 +03001478
1479 if (!phydev->attached_dev)
1480 sysfs_remove_file(&phydev->mdio.dev.kobj,
1481 &dev_attr_phy_standalone.attr);
1482
Heiner Kallweit93f41e62018-09-24 22:01:32 +02001483 phy_suspend(phydev);
Ioana Ciornei2db2d9d12019-05-28 20:38:08 +03001484 if (dev) {
1485 phydev->attached_dev->phydev = NULL;
1486 phydev->attached_dev = NULL;
1487 }
Russell King9525ae82017-07-25 15:03:13 +01001488 phydev->phylink = NULL;
Andy Fleminge1393452005-08-24 18:46:21 -05001489
Geert Uytterhoeven0075bd62016-11-28 15:18:31 +01001490 phy_led_triggers_unregister(phydev);
1491
Florian Fainelli6d9f66a2017-02-08 19:05:26 -08001492 module_put(phydev->mdio.dev.driver->owner);
1493
Andy Fleminge1393452005-08-24 18:46:21 -05001494 /* If the device had no specific driver before (i.e. - it
1495 * was using the generic driver), we unbind the device
1496 * from the generic driver so that there's a chance a
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001497 * real driver could be loaded
1498 */
Florian Fainelli5db5ea92019-01-15 15:09:35 -08001499 if (phy_driver_is_genphy(phydev) ||
1500 phy_driver_is_genphy_10g(phydev))
Russell King921690f2017-06-05 12:23:05 +01001501 device_release_driver(&phydev->mdio.dev);
Russell King3e3aaf62015-09-24 20:36:02 +01001502
Russell King73229672015-09-24 20:36:08 +01001503 /*
1504 * The phydev might go away on the put_device() below, so avoid
1505 * a use-after-free bug by reading the underlying bus first.
1506 */
Andrew Lunne5a03bf2016-01-06 20:11:16 +01001507 bus = phydev->mdio.bus;
Russell King3e3aaf62015-09-24 20:36:02 +01001508
Andrew Lunne5a03bf2016-01-06 20:11:16 +01001509 put_device(&phydev->mdio.dev);
Ioana Ciornei2db2d9d12019-05-28 20:38:08 +03001510 if (dev)
1511 ndev_owner = dev->dev.parent->driver->owner;
Florian Fainelliec988ad2016-12-06 20:54:43 -08001512 if (ndev_owner != bus->owner)
1513 module_put(bus->owner);
Sergei Shtylyovbafbdd52017-12-04 13:35:05 +01001514
1515 /* Assert the reset signal */
1516 phy_device_reset(phydev, 1);
Andy Fleminge1393452005-08-24 18:46:21 -05001517}
1518EXPORT_SYMBOL(phy_detach);
1519
Sebastian Hesselbarth481b5d92013-12-13 10:20:27 +01001520int phy_suspend(struct phy_device *phydev)
1521{
Andrew Lunne5a03bf2016-01-06 20:11:16 +01001522 struct phy_driver *phydrv = to_phy_driver(phydev->mdio.dev.driver);
Heiner Kallweit93f41e62018-09-24 22:01:32 +02001523 struct net_device *netdev = phydev->attached_dev;
Sebastian Hesselbarth32fc3fd2014-03-14 10:07:44 +01001524 struct ethtool_wolinfo wol = { .cmd = ETHTOOL_GWOL };
Florian Fainelli8a477a62015-01-26 22:05:39 -08001525 int ret = 0;
Sebastian Hesselbarth481b5d92013-12-13 10:20:27 +01001526
1527 /* If the device has WOL enabled, we cannot suspend the PHY */
Sebastian Hesselbarth481b5d92013-12-13 10:20:27 +01001528 phy_ethtool_get_wol(phydev, &wol);
Heiner Kallweit93f41e62018-09-24 22:01:32 +02001529 if (wol.wolopts || (netdev && netdev->wol_enabled))
Sebastian Hesselbarth481b5d92013-12-13 10:20:27 +01001530 return -EBUSY;
1531
Florian Fainelli25149ef2017-02-17 16:07:34 -08001532 if (phydev->drv && phydrv->suspend)
Florian Fainelli8a477a62015-01-26 22:05:39 -08001533 ret = phydrv->suspend(phydev);
1534
1535 if (ret)
1536 return ret;
1537
1538 phydev->suspended = true;
1539
1540 return ret;
Sebastian Hesselbarth481b5d92013-12-13 10:20:27 +01001541}
Florian Fainellica127692014-07-08 10:38:36 -07001542EXPORT_SYMBOL(phy_suspend);
Sebastian Hesselbarth481b5d92013-12-13 10:20:27 +01001543
Andrew Lunn9c2c2e62018-02-27 01:56:06 +01001544int __phy_resume(struct phy_device *phydev)
Sebastian Hesselbarth481b5d92013-12-13 10:20:27 +01001545{
Andrew Lunne5a03bf2016-01-06 20:11:16 +01001546 struct phy_driver *phydrv = to_phy_driver(phydev->mdio.dev.driver);
Florian Fainelli8a477a62015-01-26 22:05:39 -08001547 int ret = 0;
Sebastian Hesselbarth481b5d92013-12-13 10:20:27 +01001548
Russell Kingf5e64032017-12-12 10:45:36 +00001549 WARN_ON(!mutex_is_locked(&phydev->lock));
1550
Florian Fainelli25149ef2017-02-17 16:07:34 -08001551 if (phydev->drv && phydrv->resume)
Florian Fainelli8a477a62015-01-26 22:05:39 -08001552 ret = phydrv->resume(phydev);
1553
1554 if (ret)
1555 return ret;
1556
1557 phydev->suspended = false;
1558
1559 return ret;
Sebastian Hesselbarth481b5d92013-12-13 10:20:27 +01001560}
Andrew Lunn9c2c2e62018-02-27 01:56:06 +01001561EXPORT_SYMBOL(__phy_resume);
1562
1563int phy_resume(struct phy_device *phydev)
1564{
1565 int ret;
1566
1567 mutex_lock(&phydev->lock);
1568 ret = __phy_resume(phydev);
1569 mutex_unlock(&phydev->lock);
1570
1571 return ret;
1572}
Florian Fainellica127692014-07-08 10:38:36 -07001573EXPORT_SYMBOL(phy_resume);
Andy Fleminge1393452005-08-24 18:46:21 -05001574
Lin Yun Shengf0f9b4e2017-06-30 17:44:15 +08001575int phy_loopback(struct phy_device *phydev, bool enable)
1576{
1577 struct phy_driver *phydrv = to_phy_driver(phydev->mdio.dev.driver);
1578 int ret = 0;
1579
1580 mutex_lock(&phydev->lock);
1581
1582 if (enable && phydev->loopback_enabled) {
1583 ret = -EBUSY;
1584 goto out;
1585 }
1586
1587 if (!enable && !phydev->loopback_enabled) {
1588 ret = -EINVAL;
1589 goto out;
1590 }
1591
1592 if (phydev->drv && phydrv->set_loopback)
1593 ret = phydrv->set_loopback(phydev, enable);
1594 else
1595 ret = -EOPNOTSUPP;
1596
1597 if (ret)
1598 goto out;
1599
1600 phydev->loopback_enabled = enable;
1601
1602out:
1603 mutex_unlock(&phydev->lock);
1604 return ret;
1605}
1606EXPORT_SYMBOL(phy_loopback);
1607
Richard Leitnera9668492017-12-11 13:16:58 +01001608/**
1609 * phy_reset_after_clk_enable - perform a PHY reset if needed
1610 * @phydev: target phy_device struct
1611 *
1612 * Description: Some PHYs are known to need a reset after their refclk was
1613 * enabled. This function evaluates the flags and perform the reset if it's
1614 * needed. Returns < 0 on error, 0 if the phy wasn't reset and 1 if the phy
1615 * was reset.
1616 */
1617int phy_reset_after_clk_enable(struct phy_device *phydev)
1618{
1619 if (!phydev || !phydev->drv)
1620 return -ENODEV;
1621
1622 if (phydev->drv->flags & PHY_RST_AFTER_CLK_EN) {
1623 phy_device_reset(phydev, 1);
1624 phy_device_reset(phydev, 0);
1625 return 1;
1626 }
1627
1628 return 0;
1629}
1630EXPORT_SYMBOL(phy_reset_after_clk_enable);
1631
Andy Fleming00db8182005-07-30 19:31:23 -04001632/* Generic PHY support and helper functions */
1633
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001634/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001635 * genphy_config_advert - sanitize and advertise auto-negotiation parameters
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001636 * @phydev: target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -04001637 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001638 * Description: Writes MII_ADVERTISE with the appropriate values,
Andy Fleming00db8182005-07-30 19:31:23 -04001639 * after sanitizing the values to make sure we only advertise
Trent Piepho51e2a382008-09-24 10:55:46 +00001640 * what is supported. Returns < 0 on error, 0 if the PHY's advertisement
1641 * hasn't changed, and > 0 if it has changed.
Andy Fleming00db8182005-07-30 19:31:23 -04001642 */
stephen hemminger89ff05e2010-10-21 08:37:41 +00001643static int genphy_config_advert(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -04001644{
Heiner Kallweit3eef8682019-08-09 20:43:04 +02001645 int err, bmsr, changed = 0;
1646 u32 adv;
Andy Fleming00db8182005-07-30 19:31:23 -04001647
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001648 /* Only allow advertising what this PHY supports */
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01001649 linkmode_and(phydev->advertising, phydev->advertising,
1650 phydev->supported);
Heiner Kallweit3eef8682019-08-09 20:43:04 +02001651
1652 adv = linkmode_adv_to_mii_adv_t(phydev->advertising);
Andy Fleming00db8182005-07-30 19:31:23 -04001653
1654 /* Setup standard advertisement */
Heiner Kallweit4f9744e2019-02-10 19:59:57 +01001655 err = phy_modify_changed(phydev, MII_ADVERTISE,
1656 ADVERTISE_ALL | ADVERTISE_100BASE4 |
1657 ADVERTISE_PAUSE_CAP | ADVERTISE_PAUSE_ASYM,
Heiner Kallweit3eef8682019-08-09 20:43:04 +02001658 adv);
Heiner Kallweit4f9744e2019-02-10 19:59:57 +01001659 if (err < 0)
1660 return err;
1661 if (err > 0)
Trent Piepho51e2a382008-09-24 10:55:46 +00001662 changed = 1;
Andy Fleming00db8182005-07-30 19:31:23 -04001663
Florian Fainelli5273e3a2014-02-03 12:35:46 -08001664 bmsr = phy_read(phydev, MII_BMSR);
1665 if (bmsr < 0)
1666 return bmsr;
1667
1668 /* Per 802.3-2008, Section 22.2.4.2.16 Extended status all
1669 * 1000Mbits/sec capable PHYs shall have the BMSR_ESTATEN bit set to a
1670 * logical 1.
1671 */
1672 if (!(bmsr & BMSR_ESTATEN))
1673 return changed;
1674
Heiner Kallweit3eef8682019-08-09 20:43:04 +02001675 adv = linkmode_adv_to_mii_ctrl1000_t(phydev->advertising);
Andy Fleming00db8182005-07-30 19:31:23 -04001676
Heiner Kallweit4f9744e2019-02-10 19:59:57 +01001677 err = phy_modify_changed(phydev, MII_CTRL1000,
1678 ADVERTISE_1000FULL | ADVERTISE_1000HALF,
1679 adv);
Florian Fainelli5273e3a2014-02-03 12:35:46 -08001680 if (err < 0)
1681 return err;
Heiner Kallweit4f9744e2019-02-10 19:59:57 +01001682 if (err > 0)
1683 changed = 1;
Florian Fainelli5273e3a2014-02-03 12:35:46 -08001684
Trent Piepho51e2a382008-09-24 10:55:46 +00001685 return changed;
Andy Fleming00db8182005-07-30 19:31:23 -04001686}
Andy Fleming00db8182005-07-30 19:31:23 -04001687
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001688/**
Heiner Kallweitfa6e98c2019-10-22 11:31:07 -07001689 * genphy_c37_config_advert - sanitize and advertise auto-negotiation parameters
1690 * @phydev: target phy_device struct
1691 *
1692 * Description: Writes MII_ADVERTISE with the appropriate values,
1693 * after sanitizing the values to make sure we only advertise
1694 * what is supported. Returns < 0 on error, 0 if the PHY's advertisement
1695 * hasn't changed, and > 0 if it has changed. This function is intended
1696 * for Clause 37 1000Base-X mode.
1697 */
1698static int genphy_c37_config_advert(struct phy_device *phydev)
1699{
1700 u16 adv = 0;
1701
1702 /* Only allow advertising what this PHY supports */
1703 linkmode_and(phydev->advertising, phydev->advertising,
1704 phydev->supported);
1705
1706 if (linkmode_test_bit(ETHTOOL_LINK_MODE_1000baseX_Full_BIT,
1707 phydev->advertising))
1708 adv |= ADVERTISE_1000XFULL;
1709 if (linkmode_test_bit(ETHTOOL_LINK_MODE_Pause_BIT,
1710 phydev->advertising))
1711 adv |= ADVERTISE_1000XPAUSE;
1712 if (linkmode_test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
1713 phydev->advertising))
1714 adv |= ADVERTISE_1000XPSE_ASYM;
1715
1716 return phy_modify_changed(phydev, MII_ADVERTISE,
1717 ADVERTISE_1000XFULL | ADVERTISE_1000XPAUSE |
1718 ADVERTISE_1000XHALF | ADVERTISE_1000XPSE_ASYM,
1719 adv);
1720}
1721
1722/**
jbrunetd853d142016-11-28 10:46:46 +01001723 * genphy_config_eee_advert - disable unwanted eee mode advertisement
1724 * @phydev: target phy_device struct
1725 *
1726 * Description: Writes MDIO_AN_EEE_ADV after disabling unsupported energy
1727 * efficent ethernet modes. Returns 0 if the PHY's advertisement hasn't
1728 * changed, and 1 if it has changed.
1729 */
Heiner Kallweitcd344992019-02-18 21:26:58 +01001730int genphy_config_eee_advert(struct phy_device *phydev)
jbrunetd853d142016-11-28 10:46:46 +01001731{
Heiner Kallweit9f771f12019-02-11 22:16:13 +01001732 int err;
jbrunetd853d142016-11-28 10:46:46 +01001733
1734 /* Nothing to disable */
Heiner Kallweit9f771f12019-02-11 22:16:13 +01001735 if (!phydev->eee_broken_modes)
jbrunetd853d142016-11-28 10:46:46 +01001736 return 0;
1737
Heiner Kallweit9f771f12019-02-11 22:16:13 +01001738 err = phy_modify_mmd_changed(phydev, MDIO_MMD_AN, MDIO_AN_EEE_ADV,
1739 phydev->eee_broken_modes, 0);
1740 /* If the call failed, we assume that EEE is not supported */
1741 return err < 0 ? 0 : err;
jbrunetd853d142016-11-28 10:46:46 +01001742}
Heiner Kallweitcd344992019-02-18 21:26:58 +01001743EXPORT_SYMBOL(genphy_config_eee_advert);
jbrunetd853d142016-11-28 10:46:46 +01001744
1745/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001746 * genphy_setup_forced - configures/forces speed/duplex from @phydev
1747 * @phydev: target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -04001748 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001749 * Description: Configures MII_BMCR to force speed/duplex
Andy Fleming00db8182005-07-30 19:31:23 -04001750 * to the values in phydev. Assumes that the values are valid.
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001751 * Please see phy_sanitize_settings().
1752 */
Madalin Bucur3fb69bc2013-11-20 16:38:19 -06001753int genphy_setup_forced(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -04001754{
Russell Kingfea23fb2018-01-02 10:58:58 +00001755 u16 ctl = 0;
Andy Fleming00db8182005-07-30 19:31:23 -04001756
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001757 phydev->pause = 0;
1758 phydev->asym_pause = 0;
Andy Fleming00db8182005-07-30 19:31:23 -04001759
1760 if (SPEED_1000 == phydev->speed)
1761 ctl |= BMCR_SPEED1000;
1762 else if (SPEED_100 == phydev->speed)
1763 ctl |= BMCR_SPEED100;
1764
1765 if (DUPLEX_FULL == phydev->duplex)
1766 ctl |= BMCR_FULLDPLX;
Florian Fainellie1093742013-12-17 21:38:12 -08001767
Russell Kingfea23fb2018-01-02 10:58:58 +00001768 return phy_modify(phydev, MII_BMCR,
Ingo van Lil18a5b052018-02-12 12:02:52 +01001769 ~(BMCR_LOOPBACK | BMCR_ISOLATE | BMCR_PDOWN), ctl);
Andy Fleming00db8182005-07-30 19:31:23 -04001770}
Madalin Bucur3fb69bc2013-11-20 16:38:19 -06001771EXPORT_SYMBOL(genphy_setup_forced);
Andy Fleming00db8182005-07-30 19:31:23 -04001772
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001773/**
1774 * genphy_restart_aneg - Enable and Restart Autonegotiation
1775 * @phydev: target phy_device struct
1776 */
Andy Fleming00db8182005-07-30 19:31:23 -04001777int genphy_restart_aneg(struct phy_device *phydev)
1778{
Andy Fleming00db8182005-07-30 19:31:23 -04001779 /* Don't isolate the PHY if we're negotiating */
Russell Kingf1028522018-01-05 16:07:10 +00001780 return phy_modify(phydev, MII_BMCR, BMCR_ISOLATE,
Russell Kingfea23fb2018-01-02 10:58:58 +00001781 BMCR_ANENABLE | BMCR_ANRESTART);
Andy Fleming00db8182005-07-30 19:31:23 -04001782}
Adrian Bunk892871d2008-10-13 18:48:09 -07001783EXPORT_SYMBOL(genphy_restart_aneg);
Andy Fleming00db8182005-07-30 19:31:23 -04001784
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001785/**
Russell King2a10ab02019-12-17 13:39:11 +00001786 * genphy_check_and_restart_aneg - Enable and restart auto-negotiation
1787 * @phydev: target phy_device struct
1788 * @restart: whether aneg restart is requested
1789 *
1790 * Check, and restart auto-negotiation if needed.
1791 */
1792int genphy_check_and_restart_aneg(struct phy_device *phydev, bool restart)
1793{
Sudheesh Mavila4f31c532020-02-26 12:40:45 +05301794 int ret;
Russell King2a10ab02019-12-17 13:39:11 +00001795
1796 if (!restart) {
1797 /* Advertisement hasn't changed, but maybe aneg was never on to
1798 * begin with? Or maybe phy was isolated?
1799 */
1800 ret = phy_read(phydev, MII_BMCR);
1801 if (ret < 0)
1802 return ret;
1803
1804 if (!(ret & BMCR_ANENABLE) || (ret & BMCR_ISOLATE))
1805 restart = true;
1806 }
1807
1808 if (restart)
Sudheesh Mavila4f31c532020-02-26 12:40:45 +05301809 return genphy_restart_aneg(phydev);
Russell King2a10ab02019-12-17 13:39:11 +00001810
Sudheesh Mavila4f31c532020-02-26 12:40:45 +05301811 return 0;
Russell King2a10ab02019-12-17 13:39:11 +00001812}
1813EXPORT_SYMBOL(genphy_check_and_restart_aneg);
1814
1815/**
Heiner Kallweitf4069cd2019-08-09 20:43:50 +02001816 * __genphy_config_aneg - restart auto-negotiation or write BMCR
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001817 * @phydev: target phy_device struct
Heiner Kallweitf4069cd2019-08-09 20:43:50 +02001818 * @changed: whether autoneg is requested
Andy Fleming00db8182005-07-30 19:31:23 -04001819 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001820 * Description: If auto-negotiation is enabled, we configure the
Andy Fleming00db8182005-07-30 19:31:23 -04001821 * advertising, and then restart auto-negotiation. If it is not
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001822 * enabled, then we write the BMCR.
Andy Fleming00db8182005-07-30 19:31:23 -04001823 */
Heiner Kallweitf4069cd2019-08-09 20:43:50 +02001824int __genphy_config_aneg(struct phy_device *phydev, bool changed)
Andy Fleming00db8182005-07-30 19:31:23 -04001825{
Heiner Kallweitf4069cd2019-08-09 20:43:50 +02001826 int err;
jbrunetd853d142016-11-28 10:46:46 +01001827
Heiner Kallweitf4069cd2019-08-09 20:43:50 +02001828 if (genphy_config_eee_advert(phydev))
1829 changed = true;
Andy Fleming00db8182005-07-30 19:31:23 -04001830
Trent Piephode339c22008-11-19 15:52:41 -08001831 if (AUTONEG_ENABLE != phydev->autoneg)
1832 return genphy_setup_forced(phydev);
Andy Fleming00db8182005-07-30 19:31:23 -04001833
jbrunetd853d142016-11-28 10:46:46 +01001834 err = genphy_config_advert(phydev);
1835 if (err < 0) /* error */
1836 return err;
Heiner Kallweitf4069cd2019-08-09 20:43:50 +02001837 else if (err)
1838 changed = true;
jbrunetd853d142016-11-28 10:46:46 +01001839
Russell King2a10ab02019-12-17 13:39:11 +00001840 return genphy_check_and_restart_aneg(phydev, changed);
Andy Fleming00db8182005-07-30 19:31:23 -04001841}
Heiner Kallweitf4069cd2019-08-09 20:43:50 +02001842EXPORT_SYMBOL(__genphy_config_aneg);
Andy Fleming00db8182005-07-30 19:31:23 -04001843
Florian Fainellia9fa6e62014-02-11 17:27:36 -08001844/**
Heiner Kallweitfa6e98c2019-10-22 11:31:07 -07001845 * genphy_c37_config_aneg - restart auto-negotiation or write BMCR
1846 * @phydev: target phy_device struct
1847 *
1848 * Description: If auto-negotiation is enabled, we configure the
1849 * advertising, and then restart auto-negotiation. If it is not
1850 * enabled, then we write the BMCR. This function is intended
1851 * for use with Clause 37 1000Base-X mode.
1852 */
1853int genphy_c37_config_aneg(struct phy_device *phydev)
1854{
1855 int err, changed;
1856
1857 if (phydev->autoneg != AUTONEG_ENABLE)
1858 return genphy_setup_forced(phydev);
1859
1860 err = phy_modify(phydev, MII_BMCR, BMCR_SPEED1000 | BMCR_SPEED100,
1861 BMCR_SPEED1000);
1862 if (err)
1863 return err;
1864
1865 changed = genphy_c37_config_advert(phydev);
1866 if (changed < 0) /* error */
1867 return changed;
1868
1869 if (!changed) {
1870 /* Advertisement hasn't changed, but maybe aneg was never on to
1871 * begin with? Or maybe phy was isolated?
1872 */
1873 int ctl = phy_read(phydev, MII_BMCR);
1874
1875 if (ctl < 0)
1876 return ctl;
1877
1878 if (!(ctl & BMCR_ANENABLE) || (ctl & BMCR_ISOLATE))
1879 changed = 1; /* do restart aneg */
1880 }
1881
1882 /* Only restart aneg if we are advertising something different
1883 * than we were before.
1884 */
1885 if (changed > 0)
1886 return genphy_restart_aneg(phydev);
1887
1888 return 0;
1889}
1890EXPORT_SYMBOL(genphy_c37_config_aneg);
1891
1892/**
Florian Fainellia9fa6e62014-02-11 17:27:36 -08001893 * genphy_aneg_done - return auto-negotiation status
1894 * @phydev: target phy_device struct
1895 *
1896 * Description: Reads the status register and returns 0 either if
1897 * auto-negotiation is incomplete, or if there was an error.
1898 * Returns BMSR_ANEGCOMPLETE if auto-negotiation is done.
1899 */
1900int genphy_aneg_done(struct phy_device *phydev)
1901{
1902 int retval = phy_read(phydev, MII_BMSR);
1903
1904 return (retval < 0) ? retval : (retval & BMSR_ANEGCOMPLETE);
1905}
1906EXPORT_SYMBOL(genphy_aneg_done);
1907
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001908/**
1909 * genphy_update_link - update link status in @phydev
1910 * @phydev: target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -04001911 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001912 * Description: Update the value in phydev->link to reflect the
Andy Fleming00db8182005-07-30 19:31:23 -04001913 * current link value. In order to do this, we need to read
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001914 * the status register twice, keeping the second value.
Andy Fleming00db8182005-07-30 19:31:23 -04001915 */
1916int genphy_update_link(struct phy_device *phydev)
1917{
Heiner Kallweitc36757eb2019-08-12 21:20:02 +02001918 int status = 0, bmcr;
1919
1920 bmcr = phy_read(phydev, MII_BMCR);
1921 if (bmcr < 0)
1922 return bmcr;
1923
1924 /* Autoneg is being started, therefore disregard BMSR value and
1925 * report link as down.
1926 */
1927 if (bmcr & BMCR_ANRESTART)
1928 goto done;
Andy Fleming00db8182005-07-30 19:31:23 -04001929
Heiner Kallweit93c09702019-02-06 19:39:52 +01001930 /* The link state is latched low so that momentary link
1931 * drops can be detected. Do not double-read the status
Petr Orose96bd2d2020-02-18 10:35:55 +01001932 * in polling mode to detect such short link drops except
1933 * the link was already down.
Heiner Kallweit93c09702019-02-06 19:39:52 +01001934 */
Petr Orose96bd2d2020-02-18 10:35:55 +01001935 if (!phy_polling_mode(phydev) || !phydev->link) {
Heiner Kallweit93c09702019-02-06 19:39:52 +01001936 status = phy_read(phydev, MII_BMSR);
Heiner Kallweitb7f29f82019-04-08 19:28:28 +02001937 if (status < 0)
Heiner Kallweit93c09702019-02-06 19:39:52 +01001938 return status;
Heiner Kallweitb7f29f82019-04-08 19:28:28 +02001939 else if (status & BMSR_LSTATUS)
1940 goto done;
Heiner Kallweit93c09702019-02-06 19:39:52 +01001941 }
Andy Fleming00db8182005-07-30 19:31:23 -04001942
1943 /* Read link and autonegotiation status */
1944 status = phy_read(phydev, MII_BMSR);
Andy Fleming00db8182005-07-30 19:31:23 -04001945 if (status < 0)
1946 return status;
Heiner Kallweitb7f29f82019-04-08 19:28:28 +02001947done:
Heiner Kallweit4950c2b2019-04-02 20:43:30 +02001948 phydev->link = status & BMSR_LSTATUS ? 1 : 0;
1949 phydev->autoneg_complete = status & BMSR_ANEGCOMPLETE ? 1 : 0;
Andy Fleming00db8182005-07-30 19:31:23 -04001950
Heiner Kallweitaa6b1952019-07-31 23:05:10 +02001951 /* Consider the case that autoneg was started and "aneg complete"
1952 * bit has been reset, but "link up" bit not yet.
1953 */
1954 if (phydev->autoneg == AUTONEG_ENABLE && !phydev->autoneg_complete)
1955 phydev->link = 0;
1956
Andy Fleming00db8182005-07-30 19:31:23 -04001957 return 0;
1958}
Andy Fleming6b655522006-10-16 16:19:17 -05001959EXPORT_SYMBOL(genphy_update_link);
Andy Fleming00db8182005-07-30 19:31:23 -04001960
Russell King8d3dc3ac2019-10-04 17:06:04 +01001961int genphy_read_lpa(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -04001962{
Russell King8d3dc3ac2019-10-04 17:06:04 +01001963 int lpa, lpagb;
Heiner Kallweitb6163f12019-03-30 10:22:45 +01001964
Yonglong Liu3de5ae52019-10-16 10:30:39 +08001965 if (phydev->autoneg == AUTONEG_ENABLE) {
1966 if (!phydev->autoneg_complete) {
1967 mii_stat1000_mod_linkmode_lpa_t(phydev->lp_advertising,
1968 0);
1969 mii_lpa_mod_linkmode_lpa_t(phydev->lp_advertising, 0);
1970 return 0;
1971 }
1972
Heiner Kallweit3b8b11f2019-04-05 21:23:13 +02001973 if (phydev->is_gigabit_capable) {
Andy Fleming00db8182005-07-30 19:31:23 -04001974 lpagb = phy_read(phydev, MII_STAT1000);
Andy Fleming00db8182005-07-30 19:31:23 -04001975 if (lpagb < 0)
1976 return lpagb;
1977
Heiner Kallweitb8f8c8e2018-07-21 15:48:47 +02001978 if (lpagb & LPA_1000MSFAIL) {
Heiner Kallweit916e5712019-08-15 13:15:19 +02001979 int adv = phy_read(phydev, MII_CTRL1000);
1980
1981 if (adv < 0)
1982 return adv;
1983
Heiner Kallweitb8f8c8e2018-07-21 15:48:47 +02001984 if (adv & CTL1000_ENABLE_MASTER)
1985 phydev_err(phydev, "Master/Slave resolution failed, maybe conflicting manual settings?\n");
1986 else
1987 phydev_err(phydev, "Master/Slave resolution failed\n");
1988 return -ENOLINK;
1989 }
1990
Andrew Lunn78a24df2018-12-05 21:49:41 +01001991 mii_stat1000_mod_linkmode_lpa_t(phydev->lp_advertising,
1992 lpagb);
Andy Fleming00db8182005-07-30 19:31:23 -04001993 }
1994
1995 lpa = phy_read(phydev, MII_LPA);
Andy Fleming00db8182005-07-30 19:31:23 -04001996 if (lpa < 0)
1997 return lpa;
1998
Andrew Lunnd3351932018-12-05 21:49:43 +01001999 mii_lpa_mod_linkmode_lpa_t(phydev->lp_advertising, lpa);
Yonglong Liu3de5ae52019-10-16 10:30:39 +08002000 } else {
2001 linkmode_zero(phydev->lp_advertising);
Russell King8d3dc3ac2019-10-04 17:06:04 +01002002 }
2003
2004 return 0;
2005}
2006EXPORT_SYMBOL(genphy_read_lpa);
2007
2008/**
Russell King0efc2862019-12-17 13:39:16 +00002009 * genphy_read_status_fixed - read the link parameters for !aneg mode
2010 * @phydev: target phy_device struct
2011 *
2012 * Read the current duplex and speed state for a PHY operating with
2013 * autonegotiation disabled.
2014 */
2015int genphy_read_status_fixed(struct phy_device *phydev)
2016{
2017 int bmcr = phy_read(phydev, MII_BMCR);
2018
2019 if (bmcr < 0)
2020 return bmcr;
2021
2022 if (bmcr & BMCR_FULLDPLX)
2023 phydev->duplex = DUPLEX_FULL;
2024 else
2025 phydev->duplex = DUPLEX_HALF;
2026
2027 if (bmcr & BMCR_SPEED1000)
2028 phydev->speed = SPEED_1000;
2029 else if (bmcr & BMCR_SPEED100)
2030 phydev->speed = SPEED_100;
2031 else
2032 phydev->speed = SPEED_10;
2033
2034 return 0;
2035}
2036EXPORT_SYMBOL(genphy_read_status_fixed);
2037
2038/**
Russell King8d3dc3ac2019-10-04 17:06:04 +01002039 * genphy_read_status - check the link status and update current link state
2040 * @phydev: target phy_device struct
2041 *
2042 * Description: Check the link, then figure out the current state
2043 * by comparing what we advertise with what the link partner
2044 * advertises. Start by checking the gigabit possibilities,
2045 * then move on to 10/100.
2046 */
2047int genphy_read_status(struct phy_device *phydev)
2048{
2049 int err, old_link = phydev->link;
2050
2051 /* Update the link, but return if there was an error */
2052 err = genphy_update_link(phydev);
2053 if (err)
2054 return err;
2055
2056 /* why bother the PHY if nothing can have changed */
2057 if (phydev->autoneg == AUTONEG_ENABLE && old_link && phydev->link)
2058 return 0;
2059
2060 phydev->speed = SPEED_UNKNOWN;
2061 phydev->duplex = DUPLEX_UNKNOWN;
2062 phydev->pause = 0;
2063 phydev->asym_pause = 0;
2064
2065 err = genphy_read_lpa(phydev);
2066 if (err < 0)
2067 return err;
2068
2069 if (phydev->autoneg == AUTONEG_ENABLE && phydev->autoneg_complete) {
Heiner Kallweit5502b212019-02-14 22:16:27 +01002070 phy_resolve_aneg_linkmode(phydev);
Heiner Kallweitb6163f12019-03-30 10:22:45 +01002071 } else if (phydev->autoneg == AUTONEG_DISABLE) {
Russell King0efc2862019-12-17 13:39:16 +00002072 err = genphy_read_status_fixed(phydev);
2073 if (err < 0)
2074 return err;
Andy Fleming00db8182005-07-30 19:31:23 -04002075 }
2076
2077 return 0;
2078}
2079EXPORT_SYMBOL(genphy_read_status);
2080
Florian Fainelli797ac072014-02-17 13:34:02 -08002081/**
Heiner Kallweitfa6e98c2019-10-22 11:31:07 -07002082 * genphy_c37_read_status - check the link status and update current link state
2083 * @phydev: target phy_device struct
2084 *
2085 * Description: Check the link, then figure out the current state
2086 * by comparing what we advertise with what the link partner
2087 * advertises. This function is for Clause 37 1000Base-X mode.
2088 */
2089int genphy_c37_read_status(struct phy_device *phydev)
2090{
2091 int lpa, err, old_link = phydev->link;
2092
2093 /* Update the link, but return if there was an error */
2094 err = genphy_update_link(phydev);
2095 if (err)
2096 return err;
2097
2098 /* why bother the PHY if nothing can have changed */
2099 if (phydev->autoneg == AUTONEG_ENABLE && old_link && phydev->link)
2100 return 0;
2101
2102 phydev->duplex = DUPLEX_UNKNOWN;
2103 phydev->pause = 0;
2104 phydev->asym_pause = 0;
2105
2106 if (phydev->autoneg == AUTONEG_ENABLE && phydev->autoneg_complete) {
2107 lpa = phy_read(phydev, MII_LPA);
2108 if (lpa < 0)
2109 return lpa;
2110
2111 linkmode_mod_bit(ETHTOOL_LINK_MODE_Autoneg_BIT,
2112 phydev->lp_advertising, lpa & LPA_LPACK);
2113 linkmode_mod_bit(ETHTOOL_LINK_MODE_1000baseX_Full_BIT,
2114 phydev->lp_advertising, lpa & LPA_1000XFULL);
2115 linkmode_mod_bit(ETHTOOL_LINK_MODE_Pause_BIT,
2116 phydev->lp_advertising, lpa & LPA_1000XPAUSE);
2117 linkmode_mod_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
2118 phydev->lp_advertising,
2119 lpa & LPA_1000XPAUSE_ASYM);
2120
2121 phy_resolve_aneg_linkmode(phydev);
2122 } else if (phydev->autoneg == AUTONEG_DISABLE) {
2123 int bmcr = phy_read(phydev, MII_BMCR);
2124
2125 if (bmcr < 0)
2126 return bmcr;
2127
2128 if (bmcr & BMCR_FULLDPLX)
2129 phydev->duplex = DUPLEX_FULL;
2130 else
2131 phydev->duplex = DUPLEX_HALF;
2132 }
2133
2134 return 0;
2135}
2136EXPORT_SYMBOL(genphy_c37_read_status);
2137
2138/**
Florian Fainelli797ac072014-02-17 13:34:02 -08002139 * genphy_soft_reset - software reset the PHY via BMCR_RESET bit
2140 * @phydev: target phy_device struct
2141 *
2142 * Description: Perform a software PHY reset using the standard
2143 * BMCR_RESET bit and poll for the reset bit to be cleared.
2144 *
2145 * Returns: 0 on success, < 0 on failure
2146 */
2147int genphy_soft_reset(struct phy_device *phydev)
2148{
Heiner Kallweit8c90b792019-04-24 21:41:06 +02002149 u16 res = BMCR_RESET;
Florian Fainelli797ac072014-02-17 13:34:02 -08002150 int ret;
2151
Heiner Kallweit8c90b792019-04-24 21:41:06 +02002152 if (phydev->autoneg == AUTONEG_ENABLE)
2153 res |= BMCR_ANRESTART;
2154
2155 ret = phy_modify(phydev, MII_BMCR, BMCR_ISOLATE, res);
Florian Fainelli797ac072014-02-17 13:34:02 -08002156 if (ret < 0)
2157 return ret;
2158
Heiner Kallweit8c90b792019-04-24 21:41:06 +02002159 ret = phy_poll_reset(phydev);
2160 if (ret)
2161 return ret;
2162
2163 /* BMCR may be reset to defaults */
2164 if (phydev->autoneg == AUTONEG_DISABLE)
2165 ret = genphy_setup_forced(phydev);
2166
2167 return ret;
Florian Fainelli797ac072014-02-17 13:34:02 -08002168}
2169EXPORT_SYMBOL(genphy_soft_reset);
2170
Heiner Kallweit045925e2019-03-27 21:58:44 +01002171/**
2172 * genphy_read_abilities - read PHY abilities from Clause 22 registers
2173 * @phydev: target phy_device struct
2174 *
2175 * Description: Reads the PHY's abilities and populates
2176 * phydev->supported accordingly.
2177 *
2178 * Returns: 0 on success, < 0 on failure
2179 */
2180int genphy_read_abilities(struct phy_device *phydev)
2181{
2182 int val;
2183
2184 linkmode_set_bit_array(phy_basic_ports_array,
2185 ARRAY_SIZE(phy_basic_ports_array),
2186 phydev->supported);
2187
2188 val = phy_read(phydev, MII_BMSR);
2189 if (val < 0)
2190 return val;
2191
2192 linkmode_mod_bit(ETHTOOL_LINK_MODE_Autoneg_BIT, phydev->supported,
2193 val & BMSR_ANEGCAPABLE);
2194
2195 linkmode_mod_bit(ETHTOOL_LINK_MODE_100baseT_Full_BIT, phydev->supported,
2196 val & BMSR_100FULL);
2197 linkmode_mod_bit(ETHTOOL_LINK_MODE_100baseT_Half_BIT, phydev->supported,
2198 val & BMSR_100HALF);
2199 linkmode_mod_bit(ETHTOOL_LINK_MODE_10baseT_Full_BIT, phydev->supported,
2200 val & BMSR_10FULL);
2201 linkmode_mod_bit(ETHTOOL_LINK_MODE_10baseT_Half_BIT, phydev->supported,
2202 val & BMSR_10HALF);
2203
2204 if (val & BMSR_ESTATEN) {
2205 val = phy_read(phydev, MII_ESTATUS);
2206 if (val < 0)
2207 return val;
2208
2209 linkmode_mod_bit(ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
2210 phydev->supported, val & ESTATUS_1000_TFULL);
2211 linkmode_mod_bit(ETHTOOL_LINK_MODE_1000baseT_Half_BIT,
2212 phydev->supported, val & ESTATUS_1000_THALF);
Robert Hancockf30e33b2019-06-11 16:06:09 -06002213 linkmode_mod_bit(ETHTOOL_LINK_MODE_1000baseX_Full_BIT,
2214 phydev->supported, val & ESTATUS_1000_XFULL);
Heiner Kallweit045925e2019-03-27 21:58:44 +01002215 }
2216
2217 return 0;
2218}
2219EXPORT_SYMBOL(genphy_read_abilities);
2220
Kevin Hao5df7af82018-03-20 09:44:52 +08002221/* This is used for the phy device which doesn't support the MMD extended
2222 * register access, but it does have side effect when we are trying to access
2223 * the MMD register via indirect method.
2224 */
2225int genphy_read_mmd_unsupported(struct phy_device *phdev, int devad, u16 regnum)
2226{
2227 return -EOPNOTSUPP;
2228}
2229EXPORT_SYMBOL(genphy_read_mmd_unsupported);
2230
2231int genphy_write_mmd_unsupported(struct phy_device *phdev, int devnum,
2232 u16 regnum, u16 val)
2233{
2234 return -EOPNOTSUPP;
2235}
2236EXPORT_SYMBOL(genphy_write_mmd_unsupported);
2237
Giuseppe Cavallaro0f0ca342008-11-28 16:24:56 -08002238int genphy_suspend(struct phy_device *phydev)
2239{
Heiner Kallweit032f4702018-01-12 21:20:36 +01002240 return phy_set_bits(phydev, MII_BMCR, BMCR_PDOWN);
Giuseppe Cavallaro0f0ca342008-11-28 16:24:56 -08002241}
2242EXPORT_SYMBOL(genphy_suspend);
2243
2244int genphy_resume(struct phy_device *phydev)
2245{
Heiner Kallweit032f4702018-01-12 21:20:36 +01002246 return phy_clear_bits(phydev, MII_BMCR, BMCR_PDOWN);
Giuseppe Cavallaro0f0ca342008-11-28 16:24:56 -08002247}
2248EXPORT_SYMBOL(genphy_resume);
Andy Fleming00db8182005-07-30 19:31:23 -04002249
Lin Yun Shengf0f9b4e2017-06-30 17:44:15 +08002250int genphy_loopback(struct phy_device *phydev, bool enable)
2251{
Russell Kingf1028522018-01-05 16:07:10 +00002252 return phy_modify(phydev, MII_BMCR, BMCR_LOOPBACK,
Russell Kingfea23fb2018-01-02 10:58:58 +00002253 enable ? BMCR_LOOPBACK : 0);
Lin Yun Shengf0f9b4e2017-06-30 17:44:15 +08002254}
2255EXPORT_SYMBOL(genphy_loopback);
2256
Andrew Lunn41124fa2018-09-12 01:53:14 +02002257/**
2258 * phy_remove_link_mode - Remove a supported link mode
2259 * @phydev: phy_device structure to remove link mode from
2260 * @link_mode: Link mode to be removed
2261 *
2262 * Description: Some MACs don't support all link modes which the PHY
2263 * does. e.g. a 1G MAC often does not support 1000Half. Add a helper
2264 * to remove a link mode.
2265 */
2266void phy_remove_link_mode(struct phy_device *phydev, u32 link_mode)
2267{
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002268 linkmode_clear_bit(link_mode, phydev->supported);
Heiner Kallweit22c0ef62019-05-01 21:34:43 +02002269 phy_advertise_supported(phydev);
Andrew Lunn41124fa2018-09-12 01:53:14 +02002270}
2271EXPORT_SYMBOL(phy_remove_link_mode);
2272
Heiner Kallweit22c0ef62019-05-01 21:34:43 +02002273static void phy_copy_pause_bits(unsigned long *dst, unsigned long *src)
2274{
2275 linkmode_mod_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, dst,
2276 linkmode_test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, src));
2277 linkmode_mod_bit(ETHTOOL_LINK_MODE_Pause_BIT, dst,
2278 linkmode_test_bit(ETHTOOL_LINK_MODE_Pause_BIT, src));
2279}
2280
2281/**
2282 * phy_advertise_supported - Advertise all supported modes
2283 * @phydev: target phy_device struct
2284 *
2285 * Description: Called to advertise all supported modes, doesn't touch
2286 * pause mode advertising.
2287 */
2288void phy_advertise_supported(struct phy_device *phydev)
2289{
2290 __ETHTOOL_DECLARE_LINK_MODE_MASK(new);
2291
2292 linkmode_copy(new, phydev->supported);
2293 phy_copy_pause_bits(new, phydev->advertising);
2294 linkmode_copy(phydev->advertising, new);
2295}
2296EXPORT_SYMBOL(phy_advertise_supported);
2297
Andrew Lunnaf8d9bb2018-09-12 01:53:15 +02002298/**
Andrew Lunnc306ad32018-09-12 01:53:16 +02002299 * phy_support_sym_pause - Enable support of symmetrical pause
2300 * @phydev: target phy_device struct
2301 *
2302 * Description: Called by the MAC to indicate is supports symmetrical
2303 * Pause, but not asym pause.
2304 */
2305void phy_support_sym_pause(struct phy_device *phydev)
2306{
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002307 linkmode_clear_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, phydev->supported);
Heiner Kallweit22c0ef62019-05-01 21:34:43 +02002308 phy_copy_pause_bits(phydev->advertising, phydev->supported);
Andrew Lunnc306ad32018-09-12 01:53:16 +02002309}
2310EXPORT_SYMBOL(phy_support_sym_pause);
2311
2312/**
Andrew Lunnaf8d9bb2018-09-12 01:53:15 +02002313 * phy_support_asym_pause - Enable support of asym pause
2314 * @phydev: target phy_device struct
2315 *
2316 * Description: Called by the MAC to indicate is supports Asym Pause.
2317 */
2318void phy_support_asym_pause(struct phy_device *phydev)
2319{
Heiner Kallweit22c0ef62019-05-01 21:34:43 +02002320 phy_copy_pause_bits(phydev->advertising, phydev->supported);
Andrew Lunnaf8d9bb2018-09-12 01:53:15 +02002321}
2322EXPORT_SYMBOL(phy_support_asym_pause);
2323
Andrew Lunn70814e82018-09-12 01:53:17 +02002324/**
Andrew Lunn0c122402018-09-12 01:53:18 +02002325 * phy_set_sym_pause - Configure symmetric Pause
2326 * @phydev: target phy_device struct
2327 * @rx: Receiver Pause is supported
2328 * @tx: Transmit Pause is supported
2329 * @autoneg: Auto neg should be used
2330 *
2331 * Description: Configure advertised Pause support depending on if
2332 * receiver pause and pause auto neg is supported. Generally called
2333 * from the set_pauseparam .ndo.
2334 */
2335void phy_set_sym_pause(struct phy_device *phydev, bool rx, bool tx,
2336 bool autoneg)
2337{
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002338 linkmode_clear_bit(ETHTOOL_LINK_MODE_Pause_BIT, phydev->supported);
Andrew Lunn0c122402018-09-12 01:53:18 +02002339
2340 if (rx && tx && autoneg)
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002341 linkmode_set_bit(ETHTOOL_LINK_MODE_Pause_BIT,
2342 phydev->supported);
Andrew Lunn0c122402018-09-12 01:53:18 +02002343
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002344 linkmode_copy(phydev->advertising, phydev->supported);
Andrew Lunn0c122402018-09-12 01:53:18 +02002345}
2346EXPORT_SYMBOL(phy_set_sym_pause);
2347
2348/**
Andrew Lunn70814e82018-09-12 01:53:17 +02002349 * phy_set_asym_pause - Configure Pause and Asym Pause
2350 * @phydev: target phy_device struct
2351 * @rx: Receiver Pause is supported
2352 * @tx: Transmit Pause is supported
2353 *
2354 * Description: Configure advertised Pause support depending on if
2355 * transmit and receiver pause is supported. If there has been a
2356 * change in adverting, trigger a new autoneg. Generally called from
2357 * the set_pauseparam .ndo.
2358 */
2359void phy_set_asym_pause(struct phy_device *phydev, bool rx, bool tx)
2360{
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002361 __ETHTOOL_DECLARE_LINK_MODE_MASK(oldadv);
Andrew Lunn70814e82018-09-12 01:53:17 +02002362
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002363 linkmode_copy(oldadv, phydev->advertising);
Russell King45c767f2020-02-15 15:49:32 +00002364 linkmode_set_pause(phydev->advertising, tx, rx);
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002365
2366 if (!linkmode_equal(oldadv, phydev->advertising) &&
2367 phydev->autoneg)
2368 phy_start_aneg(phydev);
Andrew Lunn70814e82018-09-12 01:53:17 +02002369}
2370EXPORT_SYMBOL(phy_set_asym_pause);
2371
Andrew Lunn22b7d292018-09-12 01:53:19 +02002372/**
2373 * phy_validate_pause - Test if the PHY/MAC support the pause configuration
2374 * @phydev: phy_device struct
2375 * @pp: requested pause configuration
2376 *
2377 * Description: Test if the PHY/MAC combination supports the Pause
2378 * configuration the user is requesting. Returns True if it is
2379 * supported, false otherwise.
2380 */
2381bool phy_validate_pause(struct phy_device *phydev,
2382 struct ethtool_pauseparam *pp)
2383{
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002384 if (!linkmode_test_bit(ETHTOOL_LINK_MODE_Pause_BIT,
Heiner Kallweitb4010af2019-05-01 21:54:28 +02002385 phydev->supported) && pp->rx_pause)
Andrew Lunn22b7d292018-09-12 01:53:19 +02002386 return false;
Heiner Kallweitb4010af2019-05-01 21:54:28 +02002387
2388 if (!linkmode_test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
2389 phydev->supported) &&
2390 pp->rx_pause != pp->tx_pause)
2391 return false;
2392
Andrew Lunn22b7d292018-09-12 01:53:19 +02002393 return true;
2394}
2395EXPORT_SYMBOL(phy_validate_pause);
2396
Russell Kinga87ae8a2020-02-15 15:49:27 +00002397/**
2398 * phy_get_pause - resolve negotiated pause modes
2399 * @phydev: phy_device struct
2400 * @tx_pause: pointer to bool to indicate whether transmit pause should be
2401 * enabled.
2402 * @rx_pause: pointer to bool to indicate whether receive pause should be
2403 * enabled.
2404 *
2405 * Resolve and return the flow control modes according to the negotiation
2406 * result. This includes checking that we are operating in full duplex mode.
2407 * See linkmode_resolve_pause() for further details.
2408 */
2409void phy_get_pause(struct phy_device *phydev, bool *tx_pause, bool *rx_pause)
2410{
2411 if (phydev->duplex != DUPLEX_FULL) {
2412 *tx_pause = false;
2413 *rx_pause = false;
2414 return;
2415 }
2416
2417 return linkmode_resolve_pause(phydev->advertising,
2418 phydev->lp_advertising,
2419 tx_pause, rx_pause);
2420}
2421EXPORT_SYMBOL(phy_get_pause);
2422
Heiner Kallweit0d2e7782018-11-09 18:16:28 +01002423static bool phy_drv_supports_irq(struct phy_driver *phydrv)
2424{
Heiner Kallweita21ff3c2018-11-12 21:16:06 +01002425 return phydrv->config_intr && phydrv->ack_interrupt;
Heiner Kallweit0d2e7782018-11-09 18:16:28 +01002426}
2427
Randy Dunlapb3df0da2007-03-06 02:41:48 -08002428/**
2429 * phy_probe - probe and init a PHY device
2430 * @dev: device to probe and init
Andy Fleming00db8182005-07-30 19:31:23 -04002431 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -08002432 * Description: Take care of setting up the phy_device structure,
Andy Fleming00db8182005-07-30 19:31:23 -04002433 * set the state to READY (the driver's init function should
2434 * set it to STARTING if needed).
2435 */
2436static int phy_probe(struct device *dev)
2437{
Sergei Shtylyov553fe922014-01-05 03:23:19 +03002438 struct phy_device *phydev = to_phy_device(dev);
Andrew Lunne5a03bf2016-01-06 20:11:16 +01002439 struct device_driver *drv = phydev->mdio.dev.driver;
Sergei Shtylyov553fe922014-01-05 03:23:19 +03002440 struct phy_driver *phydrv = to_phy_driver(drv);
Andy Fleming00db8182005-07-30 19:31:23 -04002441 int err = 0;
2442
Andy Fleming00db8182005-07-30 19:31:23 -04002443 phydev->drv = phydrv;
2444
Florian Fainelli2c7b4922013-05-19 22:53:42 +00002445 /* Disable the interrupt if the PHY doesn't support it
2446 * but the interrupt is still a valid one
2447 */
Heiner Kallweit0d2e7782018-11-09 18:16:28 +01002448 if (!phy_drv_supports_irq(phydrv) && phy_interrupt_is_valid(phydev))
Andy Fleming00db8182005-07-30 19:31:23 -04002449 phydev->irq = PHY_POLL;
2450
Florian Fainelli4284b6a2013-05-23 01:11:12 +00002451 if (phydrv->flags & PHY_IS_INTERNAL)
2452 phydev->is_internal = true;
2453
Nate Case35b5f6b2008-01-29 10:05:09 -06002454 mutex_lock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -04002455
Andrew Lunn92ed2eb2019-02-09 14:46:30 +01002456 if (phydev->drv->probe) {
2457 /* Deassert the reset signal */
2458 phy_device_reset(phydev, 0);
2459
2460 err = phydev->drv->probe(phydev);
2461 if (err) {
2462 /* Assert the reset signal */
2463 phy_device_reset(phydev, 1);
2464 goto out;
2465 }
2466 }
2467
Andy Fleming00db8182005-07-30 19:31:23 -04002468 /* Start out supporting everything. Eventually,
2469 * a controller will attach, and may modify one
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03002470 * or both of these values
2471 */
Andrew Lunnefbdfdc2019-02-09 15:24:47 +01002472 if (phydrv->features) {
2473 linkmode_copy(phydev->supported, phydrv->features);
Heiner Kallweita1deab12019-04-03 23:14:33 +02002474 } else if (phydrv->get_features) {
Andrew Lunnefbdfdc2019-02-09 15:24:47 +01002475 err = phydrv->get_features(phydev);
Heiner Kallweita1deab12019-04-03 23:14:33 +02002476 } else if (phydev->is_c45) {
2477 err = genphy_c45_pma_read_abilities(phydev);
2478 } else {
2479 err = genphy_read_abilities(phydev);
Andrew Lunnefbdfdc2019-02-09 15:24:47 +01002480 }
2481
Heiner Kallweita1deab12019-04-03 23:14:33 +02002482 if (err)
2483 goto out;
2484
Heiner Kallweit5e425742019-04-16 23:54:00 +02002485 if (!linkmode_test_bit(ETHTOOL_LINK_MODE_Autoneg_BIT,
2486 phydev->supported))
2487 phydev->autoneg = 0;
2488
Heiner Kallweit3b8b11f2019-04-05 21:23:13 +02002489 if (linkmode_test_bit(ETHTOOL_LINK_MODE_1000baseT_Half_BIT,
2490 phydev->supported))
2491 phydev->is_gigabit_capable = 1;
2492 if (linkmode_test_bit(ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
2493 phydev->supported))
2494 phydev->is_gigabit_capable = 1;
2495
Sascha Hauerde906af2014-05-21 15:29:45 +02002496 of_set_phy_supported(phydev);
Heiner Kallweit22c0ef62019-05-01 21:34:43 +02002497 phy_advertise_supported(phydev);
Andy Fleming00db8182005-07-30 19:31:23 -04002498
jbrunetd853d142016-11-28 10:46:46 +01002499 /* Get the EEE modes we want to prohibit. We will ask
2500 * the PHY stop advertising these mode later on
2501 */
2502 of_set_phy_eee_broken(phydev);
2503
Timur Tabi529ed122016-12-07 13:20:51 -06002504 /* The Pause Frame bits indicate that the PHY can support passing
2505 * pause frames. During autonegotiation, the PHYs will determine if
2506 * they should allow pause frames to pass. The MAC driver should then
2507 * use that result to determine whether to enable flow control via
2508 * pause frames.
2509 *
2510 * Normally, PHY drivers should not set the Pause bits, and instead
2511 * allow phylib to do that. However, there may be some situations
2512 * (e.g. hardware erratum) where the driver wants to set only one
2513 * of these bits.
2514 */
Andrew Lunnefbdfdc2019-02-09 15:24:47 +01002515 if (!test_bit(ETHTOOL_LINK_MODE_Pause_BIT, phydev->supported) &&
2516 !test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, phydev->supported)) {
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002517 linkmode_set_bit(ETHTOOL_LINK_MODE_Pause_BIT,
2518 phydev->supported);
2519 linkmode_set_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
2520 phydev->supported);
Timur Tabi529ed122016-12-07 13:20:51 -06002521 }
2522
Andy Fleming00db8182005-07-30 19:31:23 -04002523 /* Set the state to READY by default */
2524 phydev->state = PHY_READY;
2525
Andrew Lunn92ed2eb2019-02-09 14:46:30 +01002526out:
Nate Case35b5f6b2008-01-29 10:05:09 -06002527 mutex_unlock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -04002528
Andy Fleming00db8182005-07-30 19:31:23 -04002529 return err;
2530}
2531
2532static int phy_remove(struct device *dev)
2533{
Sergei Shtylyov553fe922014-01-05 03:23:19 +03002534 struct phy_device *phydev = to_phy_device(dev);
Andy Fleming00db8182005-07-30 19:31:23 -04002535
Florian Fainelli7b9a88a2017-02-17 16:07:33 -08002536 cancel_delayed_work_sync(&phydev->state_queue);
2537
Nate Case35b5f6b2008-01-29 10:05:09 -06002538 mutex_lock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -04002539 phydev->state = PHY_DOWN;
Nate Case35b5f6b2008-01-29 10:05:09 -06002540 mutex_unlock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -04002541
Russell King298e54f2019-11-15 19:56:51 +00002542 sfp_bus_del_upstream(phydev->sfp_bus);
2543 phydev->sfp_bus = NULL;
2544
Sergei Shtylyovbafbdd52017-12-04 13:35:05 +01002545 if (phydev->drv && phydev->drv->remove) {
Andy Fleming00db8182005-07-30 19:31:23 -04002546 phydev->drv->remove(phydev);
Sergei Shtylyovbafbdd52017-12-04 13:35:05 +01002547
2548 /* Assert the reset signal */
2549 phy_device_reset(phydev, 1);
2550 }
Andy Fleming00db8182005-07-30 19:31:23 -04002551 phydev->drv = NULL;
2552
2553 return 0;
2554}
2555
Randy Dunlapb3df0da2007-03-06 02:41:48 -08002556/**
2557 * phy_driver_register - register a phy_driver with the PHY layer
2558 * @new_driver: new phy_driver to register
Andrew Lunnbe01da72016-01-06 20:11:22 +01002559 * @owner: module owning this PHY
Randy Dunlapb3df0da2007-03-06 02:41:48 -08002560 */
Andrew Lunnbe01da72016-01-06 20:11:22 +01002561int phy_driver_register(struct phy_driver *new_driver, struct module *owner)
Andy Fleming00db8182005-07-30 19:31:23 -04002562{
2563 int retval;
2564
Andrew Lunnefbdfdc2019-02-09 15:24:47 +01002565 /* Either the features are hard coded, or dynamically
Heiner Kallweita1deab12019-04-03 23:14:33 +02002566 * determined. It cannot be both.
Andrew Lunnefbdfdc2019-02-09 15:24:47 +01002567 */
Heiner Kallweita1deab12019-04-03 23:14:33 +02002568 if (WARN_ON(new_driver->features && new_driver->get_features)) {
2569 pr_err("%s: features and get_features must not both be set\n",
2570 new_driver->name);
Camelia Groza3e64cf72019-01-17 14:22:36 +02002571 return -EINVAL;
2572 }
2573
Andrew Lunna9049e02016-01-06 20:11:26 +01002574 new_driver->mdiodrv.flags |= MDIO_DEVICE_IS_PHY;
2575 new_driver->mdiodrv.driver.name = new_driver->name;
2576 new_driver->mdiodrv.driver.bus = &mdio_bus_type;
2577 new_driver->mdiodrv.driver.probe = phy_probe;
2578 new_driver->mdiodrv.driver.remove = phy_remove;
2579 new_driver->mdiodrv.driver.owner = owner;
Andy Fleming00db8182005-07-30 19:31:23 -04002580
Andrew Lunna9049e02016-01-06 20:11:26 +01002581 retval = driver_register(&new_driver->mdiodrv.driver);
Andy Fleming00db8182005-07-30 19:31:23 -04002582 if (retval) {
Joe Perches8d242482012-06-09 07:49:07 +00002583 pr_err("%s: Error %d in registering driver\n",
2584 new_driver->name, retval);
Andy Fleming00db8182005-07-30 19:31:23 -04002585
2586 return retval;
2587 }
2588
Olof Johanssonf2511f12007-11-04 16:09:23 -06002589 pr_debug("%s: Registered new driver\n", new_driver->name);
Andy Fleming00db8182005-07-30 19:31:23 -04002590
2591 return 0;
2592}
2593EXPORT_SYMBOL(phy_driver_register);
2594
Andrew Lunnbe01da72016-01-06 20:11:22 +01002595int phy_drivers_register(struct phy_driver *new_driver, int n,
2596 struct module *owner)
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +00002597{
2598 int i, ret = 0;
2599
2600 for (i = 0; i < n; i++) {
Andrew Lunnbe01da72016-01-06 20:11:22 +01002601 ret = phy_driver_register(new_driver + i, owner);
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +00002602 if (ret) {
2603 while (i-- > 0)
2604 phy_driver_unregister(new_driver + i);
2605 break;
2606 }
2607 }
2608 return ret;
2609}
2610EXPORT_SYMBOL(phy_drivers_register);
2611
Andy Fleming00db8182005-07-30 19:31:23 -04002612void phy_driver_unregister(struct phy_driver *drv)
2613{
Andrew Lunna9049e02016-01-06 20:11:26 +01002614 driver_unregister(&drv->mdiodrv.driver);
Andy Fleming00db8182005-07-30 19:31:23 -04002615}
2616EXPORT_SYMBOL(phy_driver_unregister);
2617
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +00002618void phy_drivers_unregister(struct phy_driver *drv, int n)
2619{
2620 int i;
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03002621
2622 for (i = 0; i < n; i++)
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +00002623 phy_driver_unregister(drv + i);
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +00002624}
2625EXPORT_SYMBOL(phy_drivers_unregister);
2626
Russell King921690f2017-06-05 12:23:05 +01002627static struct phy_driver genphy_driver = {
Andy Fleminge1393452005-08-24 18:46:21 -05002628 .phy_id = 0xffffffff,
2629 .phy_id_mask = 0xffffffff,
2630 .name = "Generic PHY",
Florian Fainelli0878fff2017-03-05 12:34:49 -08002631 .soft_reset = genphy_no_soft_reset,
Heiner Kallweit2a4d8672019-03-27 21:59:33 +01002632 .get_features = genphy_read_abilities,
Giuseppe Cavallaro0f0ca342008-11-28 16:24:56 -08002633 .suspend = genphy_suspend,
2634 .resume = genphy_resume,
Lin Yun Shengf0f9b4e2017-06-30 17:44:15 +08002635 .set_loopback = genphy_loopback,
Russell King921690f2017-06-05 12:23:05 +01002636};
Andy Fleming00db8182005-07-30 19:31:23 -04002637
Jeff Garzik67c4f3f2005-08-11 02:07:25 -04002638static int __init phy_init(void)
Andy Fleming00db8182005-07-30 19:31:23 -04002639{
Jeff Garzik67c4f3f2005-08-11 02:07:25 -04002640 int rc;
Jeff Garzik67c4f3f2005-08-11 02:07:25 -04002641
2642 rc = mdio_bus_init();
2643 if (rc)
Andy Fleminge1393452005-08-24 18:46:21 -05002644 return rc;
Jeff Garzik67c4f3f2005-08-11 02:07:25 -04002645
Andrew Lunn719655a2018-09-29 23:04:16 +02002646 features_init();
2647
Heiner Kallweit22b56e82019-04-07 13:55:01 +02002648 rc = phy_driver_register(&genphy_c45_driver, THIS_MODULE);
Andy Fleminge1393452005-08-24 18:46:21 -05002649 if (rc)
Heiner Kallweit22b56e82019-04-07 13:55:01 +02002650 goto err_c45;
Russell King921690f2017-06-05 12:23:05 +01002651
2652 rc = phy_driver_register(&genphy_driver, THIS_MODULE);
2653 if (rc) {
Heiner Kallweit22b56e82019-04-07 13:55:01 +02002654 phy_driver_unregister(&genphy_c45_driver);
2655err_c45:
Andy Fleminge1393452005-08-24 18:46:21 -05002656 mdio_bus_exit();
Russell King921690f2017-06-05 12:23:05 +01002657 }
Jeff Garzik67c4f3f2005-08-11 02:07:25 -04002658
Jeff Garzik67c4f3f2005-08-11 02:07:25 -04002659 return rc;
Andy Fleming00db8182005-07-30 19:31:23 -04002660}
2661
Jeff Garzik67c4f3f2005-08-11 02:07:25 -04002662static void __exit phy_exit(void)
Andy Fleming00db8182005-07-30 19:31:23 -04002663{
Heiner Kallweit22b56e82019-04-07 13:55:01 +02002664 phy_driver_unregister(&genphy_c45_driver);
Russell King921690f2017-06-05 12:23:05 +01002665 phy_driver_unregister(&genphy_driver);
Andy Fleminge1393452005-08-24 18:46:21 -05002666 mdio_bus_exit();
Andy Fleming00db8182005-07-30 19:31:23 -04002667}
2668
Andy Fleminge1393452005-08-24 18:46:21 -05002669subsys_initcall(phy_init);
Jeff Garzik67c4f3f2005-08-11 02:07:25 -04002670module_exit(phy_exit);