blob: 1c7fe7a4c970dd103659c6f53c950bb918ede02a [file] [log] [blame]
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001/* Framework for finding and configuring PHYs.
Andy Fleming00db8182005-07-30 19:31:23 -04002 * Also contains generic PHY driver
3 *
4 * Author: Andy Fleming
5 *
6 * Copyright (c) 2004 Freescale Semiconductor, Inc.
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
12 *
13 */
Joe Perches8d242482012-06-09 07:49:07 +000014
15#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
16
Andy Fleming00db8182005-07-30 19:31:23 -040017#include <linux/kernel.h>
Andy Fleming00db8182005-07-30 19:31:23 -040018#include <linux/string.h>
19#include <linux/errno.h>
20#include <linux/unistd.h>
21#include <linux/slab.h>
22#include <linux/interrupt.h>
23#include <linux/init.h>
24#include <linux/delay.h>
25#include <linux/netdevice.h>
26#include <linux/etherdevice.h>
27#include <linux/skbuff.h>
Andy Fleming00db8182005-07-30 19:31:23 -040028#include <linux/mm.h>
29#include <linux/module.h>
Andy Fleming00db8182005-07-30 19:31:23 -040030#include <linux/mii.h>
31#include <linux/ethtool.h>
Andrew Lunn719655a2018-09-29 23:04:16 +020032#include <linux/bitmap.h>
Andy Fleming00db8182005-07-30 19:31:23 -040033#include <linux/phy.h>
Zach Brown2e0bc452016-10-17 10:49:55 -050034#include <linux/phy_led_triggers.h>
Andy Fleming124059f2014-01-10 14:27:37 +080035#include <linux/mdio.h>
Sergei Shtylyov2f53e902014-01-05 03:17:06 +030036#include <linux/io.h>
37#include <linux/uaccess.h>
Sascha Hauerde906af2014-05-21 15:29:45 +020038#include <linux/of.h>
Andy Fleming00db8182005-07-30 19:31:23 -040039
Andy Fleming00db8182005-07-30 19:31:23 -040040#include <asm/irq.h>
Andy Fleming00db8182005-07-30 19:31:23 -040041
Olaf Heringafcceaa2005-12-14 00:33:49 +010042MODULE_DESCRIPTION("PHY library");
43MODULE_AUTHOR("Andy Fleming");
44MODULE_LICENSE("GPL");
45
Andrew Lunn719655a2018-09-29 23:04:16 +020046__ETHTOOL_DECLARE_LINK_MODE_MASK(phy_basic_features) __ro_after_init;
47EXPORT_SYMBOL_GPL(phy_basic_features);
48
49__ETHTOOL_DECLARE_LINK_MODE_MASK(phy_basic_t1_features) __ro_after_init;
50EXPORT_SYMBOL_GPL(phy_basic_t1_features);
51
52__ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_features) __ro_after_init;
53EXPORT_SYMBOL_GPL(phy_gbit_features);
54
55__ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_fibre_features) __ro_after_init;
56EXPORT_SYMBOL_GPL(phy_gbit_fibre_features);
57
58__ETHTOOL_DECLARE_LINK_MODE_MASK(phy_gbit_all_ports_features) __ro_after_init;
59EXPORT_SYMBOL_GPL(phy_gbit_all_ports_features);
60
61__ETHTOOL_DECLARE_LINK_MODE_MASK(phy_10gbit_features) __ro_after_init;
62EXPORT_SYMBOL_GPL(phy_10gbit_features);
63
64static const int phy_basic_ports_array[] = {
65 ETHTOOL_LINK_MODE_Autoneg_BIT,
66 ETHTOOL_LINK_MODE_TP_BIT,
67 ETHTOOL_LINK_MODE_MII_BIT,
68};
Andrew Lunn3c1bcc82018-11-10 23:43:33 +010069EXPORT_SYMBOL_GPL(phy_basic_ports_array);
Andrew Lunn719655a2018-09-29 23:04:16 +020070
71static const int phy_fibre_port_array[] = {
72 ETHTOOL_LINK_MODE_FIBRE_BIT,
73};
Andrew Lunn3c1bcc82018-11-10 23:43:33 +010074EXPORT_SYMBOL_GPL(phy_fibre_port_array);
Andrew Lunn719655a2018-09-29 23:04:16 +020075
76static const int phy_all_ports_features_array[] = {
77 ETHTOOL_LINK_MODE_Autoneg_BIT,
78 ETHTOOL_LINK_MODE_TP_BIT,
79 ETHTOOL_LINK_MODE_MII_BIT,
80 ETHTOOL_LINK_MODE_FIBRE_BIT,
81 ETHTOOL_LINK_MODE_AUI_BIT,
82 ETHTOOL_LINK_MODE_BNC_BIT,
83 ETHTOOL_LINK_MODE_Backplane_BIT,
84};
Andrew Lunn3c1bcc82018-11-10 23:43:33 +010085EXPORT_SYMBOL_GPL(phy_all_ports_features_array);
Andrew Lunn719655a2018-09-29 23:04:16 +020086
Andrew Lunn3c1bcc82018-11-10 23:43:33 +010087const int phy_10_100_features_array[4] = {
Andrew Lunn719655a2018-09-29 23:04:16 +020088 ETHTOOL_LINK_MODE_10baseT_Half_BIT,
89 ETHTOOL_LINK_MODE_10baseT_Full_BIT,
90 ETHTOOL_LINK_MODE_100baseT_Half_BIT,
91 ETHTOOL_LINK_MODE_100baseT_Full_BIT,
92};
Andrew Lunn3c1bcc82018-11-10 23:43:33 +010093EXPORT_SYMBOL_GPL(phy_10_100_features_array);
Andrew Lunn719655a2018-09-29 23:04:16 +020094
Andrew Lunn3c1bcc82018-11-10 23:43:33 +010095const int phy_basic_t1_features_array[2] = {
Andrew Lunn719655a2018-09-29 23:04:16 +020096 ETHTOOL_LINK_MODE_TP_BIT,
97 ETHTOOL_LINK_MODE_100baseT_Full_BIT,
98};
Andrew Lunn3c1bcc82018-11-10 23:43:33 +010099EXPORT_SYMBOL_GPL(phy_basic_t1_features_array);
Andrew Lunn719655a2018-09-29 23:04:16 +0200100
Andrew Lunn3c1bcc82018-11-10 23:43:33 +0100101const int phy_gbit_features_array[2] = {
Andrew Lunn719655a2018-09-29 23:04:16 +0200102 ETHTOOL_LINK_MODE_1000baseT_Half_BIT,
103 ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
104};
Andrew Lunn3c1bcc82018-11-10 23:43:33 +0100105EXPORT_SYMBOL_GPL(phy_gbit_features_array);
Andrew Lunn719655a2018-09-29 23:04:16 +0200106
Andrew Lunn3c1bcc82018-11-10 23:43:33 +0100107const int phy_10gbit_features_array[1] = {
Andrew Lunn719655a2018-09-29 23:04:16 +0200108 ETHTOOL_LINK_MODE_10000baseT_Full_BIT,
109};
Andrew Lunn3c1bcc82018-11-10 23:43:33 +0100110EXPORT_SYMBOL_GPL(phy_10gbit_features_array);
Andrew Lunn719655a2018-09-29 23:04:16 +0200111
112__ETHTOOL_DECLARE_LINK_MODE_MASK(phy_10gbit_full_features) __ro_after_init;
113EXPORT_SYMBOL_GPL(phy_10gbit_full_features);
114
115static const int phy_10gbit_full_features_array[] = {
116 ETHTOOL_LINK_MODE_10baseT_Full_BIT,
117 ETHTOOL_LINK_MODE_100baseT_Full_BIT,
118 ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
119 ETHTOOL_LINK_MODE_10000baseT_Full_BIT,
120};
121
122static void features_init(void)
123{
124 /* 10/100 half/full*/
125 linkmode_set_bit_array(phy_basic_ports_array,
126 ARRAY_SIZE(phy_basic_ports_array),
127 phy_basic_features);
128 linkmode_set_bit_array(phy_10_100_features_array,
129 ARRAY_SIZE(phy_10_100_features_array),
130 phy_basic_features);
131
132 /* 100 full, TP */
133 linkmode_set_bit_array(phy_basic_t1_features_array,
134 ARRAY_SIZE(phy_basic_t1_features_array),
135 phy_basic_t1_features);
136
137 /* 10/100 half/full + 1000 half/full */
138 linkmode_set_bit_array(phy_basic_ports_array,
139 ARRAY_SIZE(phy_basic_ports_array),
140 phy_gbit_features);
141 linkmode_set_bit_array(phy_10_100_features_array,
142 ARRAY_SIZE(phy_10_100_features_array),
143 phy_gbit_features);
144 linkmode_set_bit_array(phy_gbit_features_array,
145 ARRAY_SIZE(phy_gbit_features_array),
146 phy_gbit_features);
147
148 /* 10/100 half/full + 1000 half/full + fibre*/
149 linkmode_set_bit_array(phy_basic_ports_array,
150 ARRAY_SIZE(phy_basic_ports_array),
151 phy_gbit_fibre_features);
152 linkmode_set_bit_array(phy_10_100_features_array,
153 ARRAY_SIZE(phy_10_100_features_array),
154 phy_gbit_fibre_features);
155 linkmode_set_bit_array(phy_gbit_features_array,
156 ARRAY_SIZE(phy_gbit_features_array),
157 phy_gbit_fibre_features);
158 linkmode_set_bit_array(phy_fibre_port_array,
159 ARRAY_SIZE(phy_fibre_port_array),
160 phy_gbit_fibre_features);
161
162 /* 10/100 half/full + 1000 half/full + TP/MII/FIBRE/AUI/BNC/Backplane*/
163 linkmode_set_bit_array(phy_all_ports_features_array,
164 ARRAY_SIZE(phy_all_ports_features_array),
165 phy_gbit_all_ports_features);
166 linkmode_set_bit_array(phy_10_100_features_array,
167 ARRAY_SIZE(phy_10_100_features_array),
168 phy_gbit_all_ports_features);
169 linkmode_set_bit_array(phy_gbit_features_array,
170 ARRAY_SIZE(phy_gbit_features_array),
171 phy_gbit_all_ports_features);
172
173 /* 10/100 half/full + 1000 half/full + 10G full*/
174 linkmode_set_bit_array(phy_all_ports_features_array,
175 ARRAY_SIZE(phy_all_ports_features_array),
176 phy_10gbit_features);
177 linkmode_set_bit_array(phy_10_100_features_array,
178 ARRAY_SIZE(phy_10_100_features_array),
179 phy_10gbit_features);
180 linkmode_set_bit_array(phy_gbit_features_array,
181 ARRAY_SIZE(phy_gbit_features_array),
182 phy_10gbit_features);
183 linkmode_set_bit_array(phy_10gbit_features_array,
184 ARRAY_SIZE(phy_10gbit_features_array),
185 phy_10gbit_features);
186
187 /* 10/100/1000/10G full */
188 linkmode_set_bit_array(phy_all_ports_features_array,
189 ARRAY_SIZE(phy_all_ports_features_array),
190 phy_10gbit_full_features);
191 linkmode_set_bit_array(phy_10gbit_full_features_array,
192 ARRAY_SIZE(phy_10gbit_full_features_array),
193 phy_10gbit_full_features);
194}
195
Anton Vorontsov6f4a7f42007-12-04 16:17:33 +0300196void phy_device_free(struct phy_device *phydev)
197{
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100198 put_device(&phydev->mdio.dev);
Anton Vorontsov6f4a7f42007-12-04 16:17:33 +0300199}
Grant Likely4dea5472009-04-25 12:52:46 +0000200EXPORT_SYMBOL(phy_device_free);
Anton Vorontsov6f4a7f42007-12-04 16:17:33 +0300201
Andrew Lunn711fdba2016-01-06 20:11:27 +0100202static void phy_mdio_device_free(struct mdio_device *mdiodev)
203{
204 struct phy_device *phydev;
205
206 phydev = container_of(mdiodev, struct phy_device, mdio);
207 phy_device_free(phydev);
208}
209
Anton Vorontsov6f4a7f42007-12-04 16:17:33 +0300210static void phy_device_release(struct device *dev)
211{
Petr Malatb2a43192013-02-28 01:01:52 +0000212 kfree(to_phy_device(dev));
Anton Vorontsov6f4a7f42007-12-04 16:17:33 +0300213}
214
Andrew Lunn711fdba2016-01-06 20:11:27 +0100215static void phy_mdio_device_remove(struct mdio_device *mdiodev)
216{
217 struct phy_device *phydev;
218
219 phydev = container_of(mdiodev, struct phy_device, mdio);
220 phy_device_remove(phydev);
221}
222
Russell King921690f2017-06-05 12:23:05 +0100223static struct phy_driver genphy_driver;
224extern struct phy_driver genphy_10g_driver;
Grant Likely4dea5472009-04-25 12:52:46 +0000225
Andy Flemingf62220d2008-04-18 17:29:54 -0500226static LIST_HEAD(phy_fixup_list);
227static DEFINE_MUTEX(phy_fixup_lock);
228
Andrew Lunnbc879222016-01-06 20:11:21 +0100229#ifdef CONFIG_PM
230static bool mdio_bus_phy_may_suspend(struct phy_device *phydev)
231{
232 struct device_driver *drv = phydev->mdio.dev.driver;
233 struct phy_driver *phydrv = to_phy_driver(drv);
234 struct net_device *netdev = phydev->attached_dev;
235
236 if (!drv || !phydrv->suspend)
237 return false;
238
239 /* PHY not attached? May suspend if the PHY has not already been
240 * suspended as part of a prior call to phy_disconnect() ->
241 * phy_detach() -> phy_suspend() because the parent netdev might be the
242 * MDIO bus driver and clock gated at this point.
243 */
244 if (!netdev)
245 return !phydev->suspended;
246
Heiner Kallweit93f41e62018-09-24 22:01:32 +0200247 if (netdev->wol_enabled)
248 return false;
249
250 /* As long as not all affected network drivers support the
251 * wol_enabled flag, let's check for hints that WoL is enabled.
252 * Don't suspend PHY if the attached netdev parent may wake up.
Andrew Lunnbc879222016-01-06 20:11:21 +0100253 * The parent may point to a PCI device, as in tg3 driver.
254 */
255 if (netdev->dev.parent && device_may_wakeup(netdev->dev.parent))
256 return false;
257
258 /* Also don't suspend PHY if the netdev itself may wakeup. This
259 * is the case for devices w/o underlaying pwr. mgmt. aware bus,
260 * e.g. SoC devices.
261 */
262 if (device_may_wakeup(&netdev->dev))
263 return false;
264
265 return true;
266}
267
268static int mdio_bus_phy_suspend(struct device *dev)
269{
270 struct phy_device *phydev = to_phy_device(dev);
271
272 /* We must stop the state machine manually, otherwise it stops out of
273 * control, possibly with the phydev->lock held. Upon resume, netdev
274 * may call phy routines that try to grab the same lock, and that may
275 * lead to a deadlock.
276 */
277 if (phydev->attached_dev && phydev->adjust_link)
278 phy_stop_machine(phydev);
279
280 if (!mdio_bus_phy_may_suspend(phydev))
281 return 0;
282
283 return phy_suspend(phydev);
284}
285
286static int mdio_bus_phy_resume(struct device *dev)
287{
288 struct phy_device *phydev = to_phy_device(dev);
289 int ret;
290
291 if (!mdio_bus_phy_may_suspend(phydev))
292 goto no_resume;
293
294 ret = phy_resume(phydev);
295 if (ret < 0)
296 return ret;
297
298no_resume:
299 if (phydev->attached_dev && phydev->adjust_link)
300 phy_start_machine(phydev);
301
302 return 0;
303}
304
305static int mdio_bus_phy_restore(struct device *dev)
306{
307 struct phy_device *phydev = to_phy_device(dev);
308 struct net_device *netdev = phydev->attached_dev;
309 int ret;
310
311 if (!netdev)
312 return 0;
313
314 ret = phy_init_hw(phydev);
315 if (ret < 0)
316 return ret;
317
Kunihiko Hayashi8742beb2018-12-18 16:57:04 +0900318 if (phydev->attached_dev && phydev->adjust_link)
319 phy_start_machine(phydev);
Andrew Lunnbc879222016-01-06 20:11:21 +0100320
321 return 0;
322}
323
324static const struct dev_pm_ops mdio_bus_phy_pm_ops = {
325 .suspend = mdio_bus_phy_suspend,
326 .resume = mdio_bus_phy_resume,
327 .freeze = mdio_bus_phy_suspend,
328 .thaw = mdio_bus_phy_resume,
329 .restore = mdio_bus_phy_restore,
330};
331
332#define MDIO_BUS_PHY_PM_OPS (&mdio_bus_phy_pm_ops)
333
334#else
335
336#define MDIO_BUS_PHY_PM_OPS NULL
337
338#endif /* CONFIG_PM */
339
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300340/**
341 * phy_register_fixup - creates a new phy_fixup and adds it to the list
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100342 * @bus_id: A string which matches phydev->mdio.dev.bus_id (or PHY_ANY_ID)
Andy Flemingf62220d2008-04-18 17:29:54 -0500343 * @phy_uid: Used to match against phydev->phy_id (the UID of the PHY)
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300344 * It can also be PHY_ANY_UID
Andy Flemingf62220d2008-04-18 17:29:54 -0500345 * @phy_uid_mask: Applied to phydev->phy_id and fixup->phy_uid before
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300346 * comparison
Andy Flemingf62220d2008-04-18 17:29:54 -0500347 * @run: The actual code to be run when a matching PHY is found
348 */
349int phy_register_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask,
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300350 int (*run)(struct phy_device *))
Andy Flemingf62220d2008-04-18 17:29:54 -0500351{
Sergei Shtylyov553fe922014-01-05 03:23:19 +0300352 struct phy_fixup *fixup = kzalloc(sizeof(*fixup), GFP_KERNEL);
Andy Flemingf62220d2008-04-18 17:29:54 -0500353
Andy Flemingf62220d2008-04-18 17:29:54 -0500354 if (!fixup)
355 return -ENOMEM;
356
Kay Sieversfb28ad32008-11-10 13:55:14 -0800357 strlcpy(fixup->bus_id, bus_id, sizeof(fixup->bus_id));
Andy Flemingf62220d2008-04-18 17:29:54 -0500358 fixup->phy_uid = phy_uid;
359 fixup->phy_uid_mask = phy_uid_mask;
360 fixup->run = run;
361
362 mutex_lock(&phy_fixup_lock);
363 list_add_tail(&fixup->list, &phy_fixup_list);
364 mutex_unlock(&phy_fixup_lock);
365
366 return 0;
367}
368EXPORT_SYMBOL(phy_register_fixup);
369
370/* Registers a fixup to be run on any PHY with the UID in phy_uid */
371int phy_register_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask,
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300372 int (*run)(struct phy_device *))
Andy Flemingf62220d2008-04-18 17:29:54 -0500373{
374 return phy_register_fixup(PHY_ANY_ID, phy_uid, phy_uid_mask, run);
375}
376EXPORT_SYMBOL(phy_register_fixup_for_uid);
377
378/* Registers a fixup to be run on the PHY with id string bus_id */
379int phy_register_fixup_for_id(const char *bus_id,
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300380 int (*run)(struct phy_device *))
Andy Flemingf62220d2008-04-18 17:29:54 -0500381{
382 return phy_register_fixup(bus_id, PHY_ANY_UID, 0xffffffff, run);
383}
384EXPORT_SYMBOL(phy_register_fixup_for_id);
385
Woojung.Huh@microchip.comf38e7a32016-12-07 20:26:07 +0000386/**
387 * phy_unregister_fixup - remove a phy_fixup from the list
388 * @bus_id: A string matches fixup->bus_id (or PHY_ANY_ID) in phy_fixup_list
389 * @phy_uid: A phy id matches fixup->phy_id (or PHY_ANY_UID) in phy_fixup_list
390 * @phy_uid_mask: Applied to phy_uid and fixup->phy_uid before comparison
391 */
392int phy_unregister_fixup(const char *bus_id, u32 phy_uid, u32 phy_uid_mask)
393{
394 struct list_head *pos, *n;
395 struct phy_fixup *fixup;
396 int ret;
397
398 ret = -ENODEV;
399
400 mutex_lock(&phy_fixup_lock);
401 list_for_each_safe(pos, n, &phy_fixup_list) {
402 fixup = list_entry(pos, struct phy_fixup, list);
403
404 if ((!strcmp(fixup->bus_id, bus_id)) &&
405 ((fixup->phy_uid & phy_uid_mask) ==
406 (phy_uid & phy_uid_mask))) {
407 list_del(&fixup->list);
408 kfree(fixup);
409 ret = 0;
410 break;
411 }
412 }
413 mutex_unlock(&phy_fixup_lock);
414
415 return ret;
416}
417EXPORT_SYMBOL(phy_unregister_fixup);
418
419/* Unregisters a fixup of any PHY with the UID in phy_uid */
420int phy_unregister_fixup_for_uid(u32 phy_uid, u32 phy_uid_mask)
421{
422 return phy_unregister_fixup(PHY_ANY_ID, phy_uid, phy_uid_mask);
423}
424EXPORT_SYMBOL(phy_unregister_fixup_for_uid);
425
426/* Unregisters a fixup of the PHY with id string bus_id */
427int phy_unregister_fixup_for_id(const char *bus_id)
428{
429 return phy_unregister_fixup(bus_id, PHY_ANY_UID, 0xffffffff);
430}
431EXPORT_SYMBOL(phy_unregister_fixup_for_id);
432
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300433/* Returns 1 if fixup matches phydev in bus_id and phy_uid.
Andy Flemingf62220d2008-04-18 17:29:54 -0500434 * Fixups can be set to match any in one or more fields.
435 */
436static int phy_needs_fixup(struct phy_device *phydev, struct phy_fixup *fixup)
437{
Andrew Lunn84eff6d2016-01-06 20:11:10 +0100438 if (strcmp(fixup->bus_id, phydev_name(phydev)) != 0)
Andy Flemingf62220d2008-04-18 17:29:54 -0500439 if (strcmp(fixup->bus_id, PHY_ANY_ID) != 0)
440 return 0;
441
442 if ((fixup->phy_uid & fixup->phy_uid_mask) !=
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300443 (phydev->phy_id & fixup->phy_uid_mask))
Andy Flemingf62220d2008-04-18 17:29:54 -0500444 if (fixup->phy_uid != PHY_ANY_UID)
445 return 0;
446
447 return 1;
448}
449
450/* Runs any matching fixups for this phydev */
Sergei Shtylyovfbfcec62014-01-05 03:28:27 +0300451static int phy_scan_fixups(struct phy_device *phydev)
Andy Flemingf62220d2008-04-18 17:29:54 -0500452{
453 struct phy_fixup *fixup;
454
455 mutex_lock(&phy_fixup_lock);
456 list_for_each_entry(fixup, &phy_fixup_list, list) {
457 if (phy_needs_fixup(phydev, fixup)) {
Sergei Shtylyov553fe922014-01-05 03:23:19 +0300458 int err = fixup->run(phydev);
Andy Flemingf62220d2008-04-18 17:29:54 -0500459
Jiri Slabybc23283c2009-07-13 11:23:39 +0000460 if (err < 0) {
461 mutex_unlock(&phy_fixup_lock);
Andy Flemingf62220d2008-04-18 17:29:54 -0500462 return err;
Jiri Slabybc23283c2009-07-13 11:23:39 +0000463 }
Florian Fainellib0ae0092014-02-11 17:27:41 -0800464 phydev->has_fixups = true;
Andy Flemingf62220d2008-04-18 17:29:54 -0500465 }
466 }
467 mutex_unlock(&phy_fixup_lock);
468
469 return 0;
470}
Andy Flemingf62220d2008-04-18 17:29:54 -0500471
Andrew Lunne76a4952016-01-06 20:11:23 +0100472static int phy_bus_match(struct device *dev, struct device_driver *drv)
473{
474 struct phy_device *phydev = to_phy_device(dev);
475 struct phy_driver *phydrv = to_phy_driver(drv);
476 const int num_ids = ARRAY_SIZE(phydev->c45_ids.device_ids);
477 int i;
478
Andrew Lunna9049e02016-01-06 20:11:26 +0100479 if (!(phydrv->mdiodrv.flags & MDIO_DEVICE_IS_PHY))
480 return 0;
481
Andrew Lunne76a4952016-01-06 20:11:23 +0100482 if (phydrv->match_phy_device)
483 return phydrv->match_phy_device(phydev);
484
485 if (phydev->is_c45) {
486 for (i = 1; i < num_ids; i++) {
487 if (!(phydev->c45_ids.devices_in_package & (1 << i)))
488 continue;
489
490 if ((phydrv->phy_id & phydrv->phy_id_mask) ==
491 (phydev->c45_ids.device_ids[i] &
492 phydrv->phy_id_mask))
493 return 1;
494 }
495 return 0;
496 } else {
497 return (phydrv->phy_id & phydrv->phy_id_mask) ==
498 (phydev->phy_id & phydrv->phy_id_mask);
499 }
500}
501
Heiner Kallweit7f4828f2018-06-02 22:36:06 +0200502static ssize_t
503phy_id_show(struct device *dev, struct device_attribute *attr, char *buf)
504{
505 struct phy_device *phydev = to_phy_device(dev);
506
507 return sprintf(buf, "0x%.8lx\n", (unsigned long)phydev->phy_id);
508}
509static DEVICE_ATTR_RO(phy_id);
510
511static ssize_t
512phy_interface_show(struct device *dev, struct device_attribute *attr, char *buf)
513{
514 struct phy_device *phydev = to_phy_device(dev);
515 const char *mode = NULL;
516
517 if (phy_is_internal(phydev))
518 mode = "internal";
519 else
520 mode = phy_modes(phydev->interface);
521
522 return sprintf(buf, "%s\n", mode);
523}
524static DEVICE_ATTR_RO(phy_interface);
525
526static ssize_t
527phy_has_fixups_show(struct device *dev, struct device_attribute *attr,
528 char *buf)
529{
530 struct phy_device *phydev = to_phy_device(dev);
531
532 return sprintf(buf, "%d\n", phydev->has_fixups);
533}
534static DEVICE_ATTR_RO(phy_has_fixups);
535
536static struct attribute *phy_dev_attrs[] = {
537 &dev_attr_phy_id.attr,
538 &dev_attr_phy_interface.attr,
539 &dev_attr_phy_has_fixups.attr,
540 NULL,
541};
542ATTRIBUTE_GROUPS(phy_dev);
543
544static const struct device_type mdio_bus_phy_type = {
545 .name = "PHY",
546 .groups = phy_dev_groups,
547 .release = phy_device_release,
548 .pm = MDIO_BUS_PHY_PM_OPS,
549};
550
David Daneyac28b9f2012-06-27 07:33:35 +0000551struct phy_device *phy_device_create(struct mii_bus *bus, int addr, int phy_id,
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300552 bool is_c45,
553 struct phy_c45_device_ids *c45_ids)
Vitaly Bordug11b0bac2006-08-14 23:00:29 -0700554{
555 struct phy_device *dev;
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100556 struct mdio_device *mdiodev;
David Woodhouse8626d3b2010-04-02 01:05:27 +0000557
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300558 /* We allocate the device, and initialize the default values */
Robert P. J. Daycd861282006-12-13 00:34:52 -0800559 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Sergei Shtylyovef899c02015-08-28 21:35:14 +0300560 if (!dev)
Sergei Shtylyovd3765f02015-08-28 21:34:34 +0300561 return ERR_PTR(-ENOMEM);
Vitaly Bordug11b0bac2006-08-14 23:00:29 -0700562
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100563 mdiodev = &dev->mdio;
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100564 mdiodev->dev.parent = &bus->dev;
565 mdiodev->dev.bus = &mdio_bus_type;
Heiner Kallweit7f4828f2018-06-02 22:36:06 +0200566 mdiodev->dev.type = &mdio_bus_phy_type;
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100567 mdiodev->bus = bus;
Andrew Lunne76a4952016-01-06 20:11:23 +0100568 mdiodev->bus_match = phy_bus_match;
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100569 mdiodev->addr = addr;
Andrew Lunn7f854422016-01-06 20:11:18 +0100570 mdiodev->flags = MDIO_DEVICE_FLAG_PHY;
Andrew Lunn711fdba2016-01-06 20:11:27 +0100571 mdiodev->device_free = phy_mdio_device_free;
572 mdiodev->device_remove = phy_mdio_device_remove;
Anton Vorontsov6f4a7f42007-12-04 16:17:33 +0300573
Vitaly Bordug11b0bac2006-08-14 23:00:29 -0700574 dev->speed = 0;
575 dev->duplex = -1;
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300576 dev->pause = 0;
577 dev->asym_pause = 0;
Heiner Kallweitc69851e2018-03-11 15:00:37 +0100578 dev->link = 0;
Andy Fleminge8a2b6a2006-12-01 12:01:06 -0600579 dev->interface = PHY_INTERFACE_MODE_GMII;
Vitaly Bordug11b0bac2006-08-14 23:00:29 -0700580
581 dev->autoneg = AUTONEG_ENABLE;
582
David Daneyac28b9f2012-06-27 07:33:35 +0000583 dev->is_c45 = is_c45;
Vitaly Bordug11b0bac2006-08-14 23:00:29 -0700584 dev->phy_id = phy_id;
David Daneyac28b9f2012-06-27 07:33:35 +0000585 if (c45_ids)
586 dev->c45_ids = *c45_ids;
Dan Carpenter47b356e2016-01-12 12:36:21 +0300587 dev->irq = bus->irq[addr];
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100588 dev_set_name(&mdiodev->dev, PHY_ID_FMT, bus->id, addr);
Vitaly Bordug11b0bac2006-08-14 23:00:29 -0700589
590 dev->state = PHY_DOWN;
591
Nate Case35b5f6b2008-01-29 10:05:09 -0600592 mutex_init(&dev->lock);
Anton Vorontsov4f9c85a2010-01-18 05:37:16 +0000593 INIT_DELAYED_WORK(&dev->state_queue, phy_state_machine);
Vitaly Bordug11b0bac2006-08-14 23:00:29 -0700594
David Woodhouse8626d3b2010-04-02 01:05:27 +0000595 /* Request the appropriate module unconditionally; don't
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300596 * bother trying to do so only if it isn't already loaded,
597 * because that gets complicated. A hotplug event would have
598 * done an unconditional modprobe anyway.
599 * We don't do normal hotplug because it won't work for MDIO
600 * -- because it relies on the device staying around for long
601 * enough for the driver to get loaded. With MDIO, the NIC
602 * driver will get bored and give up as soon as it finds that
603 * there's no driver _already_ loaded.
604 */
Jose Abreu30fcd6a2018-12-02 16:33:14 +0100605 if (is_c45 && c45_ids) {
606 const int num_ids = ARRAY_SIZE(c45_ids->device_ids);
607 int i;
608
609 for (i = 1; i < num_ids; i++) {
610 if (!(c45_ids->devices_in_package & (1 << i)))
611 continue;
612
613 request_module(MDIO_MODULE_PREFIX MDIO_ID_FMT,
614 MDIO_ID_ARGS(c45_ids->device_ids[i]));
615 }
616 } else {
617 request_module(MDIO_MODULE_PREFIX MDIO_ID_FMT,
618 MDIO_ID_ARGS(phy_id));
619 }
David Woodhouse8626d3b2010-04-02 01:05:27 +0000620
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100621 device_initialize(&mdiodev->dev);
Petr Malatb2a43192013-02-28 01:01:52 +0000622
Vitaly Bordug11b0bac2006-08-14 23:00:29 -0700623 return dev;
624}
David Daneyac28b9f2012-06-27 07:33:35 +0000625EXPORT_SYMBOL(phy_device_create);
626
Shaohui Xie5f6c99e2015-11-03 12:27:33 +0800627/* get_phy_c45_devs_in_pkg - reads a MMD's devices in package registers.
628 * @bus: the target MII bus
629 * @addr: PHY address on the MII bus
630 * @dev_addr: MMD address in the PHY.
631 * @devices_in_package: where to store the devices in package information.
632 *
633 * Description: reads devices in package registers of a MMD at @dev_addr
634 * from PHY at @addr on @bus.
635 *
636 * Returns: 0 on success, -EIO on failure.
637 */
638static int get_phy_c45_devs_in_pkg(struct mii_bus *bus, int addr, int dev_addr,
639 u32 *devices_in_package)
640{
641 int phy_reg, reg_addr;
642
643 reg_addr = MII_ADDR_C45 | dev_addr << 16 | MDIO_DEVS2;
644 phy_reg = mdiobus_read(bus, addr, reg_addr);
645 if (phy_reg < 0)
646 return -EIO;
647 *devices_in_package = (phy_reg & 0xffff) << 16;
648
649 reg_addr = MII_ADDR_C45 | dev_addr << 16 | MDIO_DEVS1;
650 phy_reg = mdiobus_read(bus, addr, reg_addr);
651 if (phy_reg < 0)
652 return -EIO;
653 *devices_in_package |= (phy_reg & 0xffff);
654
655 return 0;
656}
657
David Daneyac28b9f2012-06-27 07:33:35 +0000658/**
659 * get_phy_c45_ids - reads the specified addr for its 802.3-c45 IDs.
660 * @bus: the target MII bus
661 * @addr: PHY address on the MII bus
662 * @phy_id: where to store the ID retrieved.
663 * @c45_ids: where to store the c45 ID information.
664 *
665 * If the PHY devices-in-package appears to be valid, it and the
666 * corresponding identifiers are stored in @c45_ids, zero is stored
667 * in @phy_id. Otherwise 0xffffffff is stored in @phy_id. Returns
668 * zero on success.
669 *
670 */
671static int get_phy_c45_ids(struct mii_bus *bus, int addr, u32 *phy_id,
672 struct phy_c45_device_ids *c45_ids) {
673 int phy_reg;
674 int i, reg_addr;
675 const int num_ids = ARRAY_SIZE(c45_ids->device_ids);
Shaohui Xie5f6c99e2015-11-03 12:27:33 +0800676 u32 *devs = &c45_ids->devices_in_package;
David Daneyac28b9f2012-06-27 07:33:35 +0000677
Shaohui Xie5f6c99e2015-11-03 12:27:33 +0800678 /* Find first non-zero Devices In package. Device zero is reserved
679 * for 802.3 c45 complied PHYs, so don't probe it at first.
David Daneyac28b9f2012-06-27 07:33:35 +0000680 */
Shaohui Xie5f6c99e2015-11-03 12:27:33 +0800681 for (i = 1; i < num_ids && *devs == 0; i++) {
682 phy_reg = get_phy_c45_devs_in_pkg(bus, addr, i, devs);
David Daneyac28b9f2012-06-27 07:33:35 +0000683 if (phy_reg < 0)
684 return -EIO;
David Daneyac28b9f2012-06-27 07:33:35 +0000685
Shaohui Xie5f6c99e2015-11-03 12:27:33 +0800686 if ((*devs & 0x1fffffff) == 0x1fffffff) {
687 /* If mostly Fs, there is no device there,
688 * then let's continue to probe more, as some
689 * 10G PHYs have zero Devices In package,
690 * e.g. Cortina CS4315/CS4340 PHY.
691 */
692 phy_reg = get_phy_c45_devs_in_pkg(bus, addr, 0, devs);
693 if (phy_reg < 0)
694 return -EIO;
695 /* no device there, let's get out of here */
696 if ((*devs & 0x1fffffff) == 0x1fffffff) {
Shengzhou Liuda1da282015-06-26 17:58:52 +0800697 *phy_id = 0xffffffff;
698 return 0;
Shaohui Xie5f6c99e2015-11-03 12:27:33 +0800699 } else {
700 break;
Shengzhou Liuda1da282015-06-26 17:58:52 +0800701 }
David Daneyac28b9f2012-06-27 07:33:35 +0000702 }
703 }
704
705 /* Now probe Device Identifiers for each device present. */
706 for (i = 1; i < num_ids; i++) {
707 if (!(c45_ids->devices_in_package & (1 << i)))
708 continue;
709
710 reg_addr = MII_ADDR_C45 | i << 16 | MII_PHYSID1;
711 phy_reg = mdiobus_read(bus, addr, reg_addr);
712 if (phy_reg < 0)
713 return -EIO;
714 c45_ids->device_ids[i] = (phy_reg & 0xffff) << 16;
715
716 reg_addr = MII_ADDR_C45 | i << 16 | MII_PHYSID2;
717 phy_reg = mdiobus_read(bus, addr, reg_addr);
718 if (phy_reg < 0)
719 return -EIO;
720 c45_ids->device_ids[i] |= (phy_reg & 0xffff);
721 }
722 *phy_id = 0;
723 return 0;
724}
Vitaly Bordug11b0bac2006-08-14 23:00:29 -0700725
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800726/**
Paul Gortmakercac1f3c2008-04-15 12:49:21 -0400727 * get_phy_id - reads the specified addr for its ID.
728 * @bus: the target MII bus
729 * @addr: PHY address on the MII bus
730 * @phy_id: where to store the ID retrieved.
David Daneyac28b9f2012-06-27 07:33:35 +0000731 * @is_c45: If true the PHY uses the 802.3 clause 45 protocol
732 * @c45_ids: where to store the c45 ID information.
Paul Gortmakercac1f3c2008-04-15 12:49:21 -0400733 *
David Daneyac28b9f2012-06-27 07:33:35 +0000734 * Description: In the case of a 802.3-c22 PHY, reads the ID registers
735 * of the PHY at @addr on the @bus, stores it in @phy_id and returns
736 * zero on success.
737 *
738 * In the case of a 802.3-c45 PHY, get_phy_c45_ids() is invoked, and
739 * its return value is in turn returned.
740 *
Paul Gortmakercac1f3c2008-04-15 12:49:21 -0400741 */
David Daneyac28b9f2012-06-27 07:33:35 +0000742static int get_phy_id(struct mii_bus *bus, int addr, u32 *phy_id,
743 bool is_c45, struct phy_c45_device_ids *c45_ids)
Paul Gortmakercac1f3c2008-04-15 12:49:21 -0400744{
745 int phy_reg;
746
David Daneyac28b9f2012-06-27 07:33:35 +0000747 if (is_c45)
748 return get_phy_c45_ids(bus, addr, phy_id, c45_ids);
749
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300750 /* Grab the bits from PHYIR1, and put them in the upper half */
David Daney6fe32642011-09-30 11:51:22 +0000751 phy_reg = mdiobus_read(bus, addr, MII_PHYSID1);
Alexandre Belloni02a6efc2018-04-24 18:09:04 +0200752 if (phy_reg < 0) {
753 /* if there is no device, return without an error so scanning
754 * the bus works properly
755 */
756 if (phy_reg == -EIO || phy_reg == -ENODEV) {
757 *phy_id = 0xffffffff;
758 return 0;
759 }
760
Paul Gortmakercac1f3c2008-04-15 12:49:21 -0400761 return -EIO;
Alexandre Belloni02a6efc2018-04-24 18:09:04 +0200762 }
Paul Gortmakercac1f3c2008-04-15 12:49:21 -0400763
764 *phy_id = (phy_reg & 0xffff) << 16;
765
766 /* Grab the bits from PHYIR2, and put them in the lower half */
David Daney6fe32642011-09-30 11:51:22 +0000767 phy_reg = mdiobus_read(bus, addr, MII_PHYSID2);
Paul Gortmakercac1f3c2008-04-15 12:49:21 -0400768 if (phy_reg < 0)
769 return -EIO;
770
771 *phy_id |= (phy_reg & 0xffff);
772
773 return 0;
774}
775
776/**
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300777 * get_phy_device - reads the specified PHY device and returns its @phy_device
778 * struct
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800779 * @bus: the target MII bus
780 * @addr: PHY address on the MII bus
David Daneyac28b9f2012-06-27 07:33:35 +0000781 * @is_c45: If true the PHY uses the 802.3 clause 45 protocol
Andy Fleming00db8182005-07-30 19:31:23 -0400782 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800783 * Description: Reads the ID registers of the PHY at @addr on the
784 * @bus, then allocates and returns the phy_device to represent it.
Andy Fleming00db8182005-07-30 19:31:23 -0400785 */
David Daneyac28b9f2012-06-27 07:33:35 +0000786struct phy_device *get_phy_device(struct mii_bus *bus, int addr, bool is_c45)
Andy Fleming00db8182005-07-30 19:31:23 -0400787{
David Daneyac28b9f2012-06-27 07:33:35 +0000788 struct phy_c45_device_ids c45_ids = {0};
David S. Miller160c85f2012-06-27 21:28:14 -0700789 u32 phy_id = 0;
Paul Gortmakercac1f3c2008-04-15 12:49:21 -0400790 int r;
Andy Fleming00db8182005-07-30 19:31:23 -0400791
David Daneyac28b9f2012-06-27 07:33:35 +0000792 r = get_phy_id(bus, addr, &phy_id, is_c45, &c45_ids);
Paul Gortmakercac1f3c2008-04-15 12:49:21 -0400793 if (r)
794 return ERR_PTR(r);
Andy Fleming00db8182005-07-30 19:31:23 -0400795
Giuseppe Cavallaro6436cbc2008-11-20 20:43:18 -0800796 /* If the phy_id is mostly Fs, there is no device there */
797 if ((phy_id & 0x1fffffff) == 0x1fffffff)
Sergei Shtylyovb74766a2016-04-24 20:25:23 +0300798 return ERR_PTR(-ENODEV);
Giuseppe Cavallaro6436cbc2008-11-20 20:43:18 -0800799
Sergei Shtylyove62a7682014-01-05 03:21:52 +0300800 return phy_device_create(bus, addr, phy_id, is_c45, &c45_ids);
Andy Fleming00db8182005-07-30 19:31:23 -0400801}
Grant Likely4dea5472009-04-25 12:52:46 +0000802EXPORT_SYMBOL(get_phy_device);
803
804/**
805 * phy_device_register - Register the phy device on the MDIO bus
Randy Dunlap1d4ac5d2009-06-16 16:56:33 +0000806 * @phydev: phy_device structure to be added to the MDIO bus
Grant Likely4dea5472009-04-25 12:52:46 +0000807 */
808int phy_device_register(struct phy_device *phydev)
809{
810 int err;
811
Andrew Lunn7f854422016-01-06 20:11:18 +0100812 err = mdiobus_register_device(&phydev->mdio);
813 if (err)
814 return err;
Grant Likely4dea5472009-04-25 12:52:46 +0000815
Sergei Shtylyovbafbdd52017-12-04 13:35:05 +0100816 /* Deassert the reset signal */
817 phy_device_reset(phydev, 0);
818
Grant Likely4dea5472009-04-25 12:52:46 +0000819 /* Run all of the fixups for this PHY */
Florian Fainellid92f5de2014-07-28 16:28:07 -0700820 err = phy_scan_fixups(phydev);
Florian Fainelli87aa9f92013-12-06 13:01:34 -0800821 if (err) {
Heiner Kallweitc3a6a172019-01-15 21:50:25 +0100822 phydev_err(phydev, "failed to initialize\n");
Florian Fainelli87aa9f92013-12-06 13:01:34 -0800823 goto out;
824 }
Grant Likely4dea5472009-04-25 12:52:46 +0000825
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100826 err = device_add(&phydev->mdio.dev);
Grant Likely4dea5472009-04-25 12:52:46 +0000827 if (err) {
Heiner Kallweitc3a6a172019-01-15 21:50:25 +0100828 phydev_err(phydev, "failed to add\n");
Grant Likely4dea5472009-04-25 12:52:46 +0000829 goto out;
830 }
831
832 return 0;
833
834 out:
Sergei Shtylyovbafbdd52017-12-04 13:35:05 +0100835 /* Assert the reset signal */
836 phy_device_reset(phydev, 1);
837
Andrew Lunn7f854422016-01-06 20:11:18 +0100838 mdiobus_unregister_device(&phydev->mdio);
Grant Likely4dea5472009-04-25 12:52:46 +0000839 return err;
840}
841EXPORT_SYMBOL(phy_device_register);
Andy Fleming00db8182005-07-30 19:31:23 -0400842
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800843/**
Russell King38737e42015-09-24 20:36:28 +0100844 * phy_device_remove - Remove a previously registered phy device from the MDIO bus
845 * @phydev: phy_device structure to remove
846 *
847 * This doesn't free the phy_device itself, it merely reverses the effects
848 * of phy_device_register(). Use phy_device_free() to free the device
849 * after calling this function.
850 */
851void phy_device_remove(struct phy_device *phydev)
852{
Andrew Lunne5a03bf2016-01-06 20:11:16 +0100853 device_del(&phydev->mdio.dev);
Sergei Shtylyovbafbdd52017-12-04 13:35:05 +0100854
855 /* Assert the reset signal */
856 phy_device_reset(phydev, 1);
857
Andrew Lunn7f854422016-01-06 20:11:18 +0100858 mdiobus_unregister_device(&phydev->mdio);
Russell King38737e42015-09-24 20:36:28 +0100859}
860EXPORT_SYMBOL(phy_device_remove);
861
862/**
Jiri Pirkof8f76db2010-02-04 10:23:02 -0800863 * phy_find_first - finds the first PHY device on the bus
864 * @bus: the target MII bus
865 */
866struct phy_device *phy_find_first(struct mii_bus *bus)
867{
Andrew Lunn7f854422016-01-06 20:11:18 +0100868 struct phy_device *phydev;
Jiri Pirkof8f76db2010-02-04 10:23:02 -0800869 int addr;
870
871 for (addr = 0; addr < PHY_MAX_ADDR; addr++) {
Andrew Lunn7f854422016-01-06 20:11:18 +0100872 phydev = mdiobus_get_phy(bus, addr);
873 if (phydev)
874 return phydev;
Jiri Pirkof8f76db2010-02-04 10:23:02 -0800875 }
876 return NULL;
877}
878EXPORT_SYMBOL(phy_find_first);
879
Russell Kinga81497b2017-07-25 15:02:58 +0100880static void phy_link_change(struct phy_device *phydev, bool up, bool do_carrier)
881{
882 struct net_device *netdev = phydev->attached_dev;
883
884 if (do_carrier) {
885 if (up)
886 netif_carrier_on(netdev);
887 else
888 netif_carrier_off(netdev);
889 }
890 phydev->adjust_link(netdev);
891}
892
Jiri Pirkof8f76db2010-02-04 10:23:02 -0800893/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800894 * phy_prepare_link - prepares the PHY layer to monitor link status
895 * @phydev: target phy_device struct
896 * @handler: callback function for link status change notifications
Andy Fleming00db8182005-07-30 19:31:23 -0400897 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800898 * Description: Tells the PHY infrastructure to handle the
Andy Fleming00db8182005-07-30 19:31:23 -0400899 * gory details on monitoring link status (whether through
900 * polling or an interrupt), and to call back to the
901 * connected device driver when the link status changes.
902 * If you want to monitor your own link state, don't call
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800903 * this function.
904 */
stephen hemminger89ff05e2010-10-21 08:37:41 +0000905static void phy_prepare_link(struct phy_device *phydev,
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300906 void (*handler)(struct net_device *))
Andy Fleming00db8182005-07-30 19:31:23 -0400907{
908 phydev->adjust_link = handler;
909}
910
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800911/**
Grant Likelyfa94f6d2009-04-25 12:52:51 +0000912 * phy_connect_direct - connect an ethernet device to a specific phy_device
913 * @dev: the network device to connect
914 * @phydev: the pointer to the phy device
915 * @handler: callback function for state change notifications
Grant Likelyfa94f6d2009-04-25 12:52:51 +0000916 * @interface: PHY device's interface
917 */
918int phy_connect_direct(struct net_device *dev, struct phy_device *phydev,
Florian Fainellif9a8f832013-01-14 00:52:52 +0000919 void (*handler)(struct net_device *),
Grant Likelyfa94f6d2009-04-25 12:52:51 +0000920 phy_interface_t interface)
921{
922 int rc;
923
Florian Fainellif9a8f832013-01-14 00:52:52 +0000924 rc = phy_attach_direct(dev, phydev, phydev->dev_flags, interface);
Grant Likelyfa94f6d2009-04-25 12:52:51 +0000925 if (rc)
926 return rc;
927
928 phy_prepare_link(phydev, handler);
Sergei Shtylyov29935ae2014-01-05 03:27:17 +0300929 phy_start_machine(phydev);
Grant Likelyfa94f6d2009-04-25 12:52:51 +0000930 if (phydev->irq > 0)
931 phy_start_interrupts(phydev);
932
933 return 0;
934}
935EXPORT_SYMBOL(phy_connect_direct);
936
937/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800938 * phy_connect - connect an ethernet device to a PHY device
939 * @dev: the network device to connect
Randy Dunlap5d12b132008-04-28 10:58:22 -0700940 * @bus_id: the id string of the PHY device to connect
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800941 * @handler: callback function for state change notifications
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800942 * @interface: PHY device's interface
Andy Fleminge1393452005-08-24 18:46:21 -0500943 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800944 * Description: Convenience function for connecting ethernet
Andy Fleminge1393452005-08-24 18:46:21 -0500945 * devices to PHY devices. The default behavior is for
946 * the PHY infrastructure to handle everything, and only notify
947 * the connected driver when the link status changes. If you
948 * don't want, or can't use the provided functionality, you may
949 * choose to call only the subset of functions which provide
950 * the desired functionality.
951 */
Florian Fainellie1093742013-12-17 21:38:12 -0800952struct phy_device *phy_connect(struct net_device *dev, const char *bus_id,
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300953 void (*handler)(struct net_device *),
954 phy_interface_t interface)
Andy Fleminge1393452005-08-24 18:46:21 -0500955{
956 struct phy_device *phydev;
Grant Likelyfa94f6d2009-04-25 12:52:51 +0000957 struct device *d;
958 int rc;
Andy Fleminge1393452005-08-24 18:46:21 -0500959
Grant Likelyfa94f6d2009-04-25 12:52:51 +0000960 /* Search the list of PHY devices on the mdio bus for the
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300961 * PHY with the requested name
962 */
Grant Likelyfa94f6d2009-04-25 12:52:51 +0000963 d = bus_find_device_by_name(&mdio_bus_type, NULL, bus_id);
964 if (!d) {
965 pr_err("PHY %s not found\n", bus_id);
966 return ERR_PTR(-ENODEV);
967 }
968 phydev = to_phy_device(d);
Andy Fleminge1393452005-08-24 18:46:21 -0500969
Florian Fainellif9a8f832013-01-14 00:52:52 +0000970 rc = phy_connect_direct(dev, phydev, handler, interface);
Johan Hovold17ae1c62016-11-03 18:40:19 +0100971 put_device(d);
Grant Likelyfa94f6d2009-04-25 12:52:51 +0000972 if (rc)
973 return ERR_PTR(rc);
Andy Fleminge1393452005-08-24 18:46:21 -0500974
975 return phydev;
976}
977EXPORT_SYMBOL(phy_connect);
978
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800979/**
Sergei Shtylyov2f53e902014-01-05 03:17:06 +0300980 * phy_disconnect - disable interrupts, stop state machine, and detach a PHY
981 * device
Randy Dunlapb3df0da2007-03-06 02:41:48 -0800982 * @phydev: target phy_device struct
983 */
Andy Fleminge1393452005-08-24 18:46:21 -0500984void phy_disconnect(struct phy_device *phydev)
985{
986 if (phydev->irq > 0)
987 phy_stop_interrupts(phydev);
988
989 phy_stop_machine(phydev);
Florian Fainellie1093742013-12-17 21:38:12 -0800990
Andy Fleminge1393452005-08-24 18:46:21 -0500991 phydev->adjust_link = NULL;
992
993 phy_detach(phydev);
994}
995EXPORT_SYMBOL(phy_disconnect);
996
Florian Fainelli87aa9f92013-12-06 13:01:34 -0800997/**
998 * phy_poll_reset - Safely wait until a PHY reset has properly completed
999 * @phydev: The PHY device to poll
1000 *
1001 * Description: According to IEEE 802.3, Section 2, Subsection 22.2.4.1.1, as
1002 * published in 2008, a PHY reset may take up to 0.5 seconds. The MII BMCR
1003 * register must be polled until the BMCR_RESET bit clears.
1004 *
1005 * Furthermore, any attempts to write to PHY registers may have no effect
1006 * or even generate MDIO bus errors until this is complete.
1007 *
1008 * Some PHYs (such as the Marvell 88E1111) don't entirely conform to the
1009 * standard and do not fully reset after the BMCR_RESET bit is set, and may
1010 * even *REQUIRE* a soft-reset to properly restart autonegotiation. In an
1011 * effort to support such broken PHYs, this function is separate from the
1012 * standard phy_init_hw() which will zero all the other bits in the BMCR
1013 * and reapply all driver-specific and board-specific fixups.
1014 */
1015static int phy_poll_reset(struct phy_device *phydev)
1016{
1017 /* Poll until the reset bit clears (50ms per retry == 0.6 sec) */
1018 unsigned int retries = 12;
1019 int ret;
1020
1021 do {
1022 msleep(50);
1023 ret = phy_read(phydev, MII_BMCR);
1024 if (ret < 0)
1025 return ret;
1026 } while (ret & BMCR_RESET && --retries);
1027 if (ret & BMCR_RESET)
1028 return -ETIMEDOUT;
1029
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001030 /* Some chips (smsc911x) may still need up to another 1ms after the
Florian Fainelli87aa9f92013-12-06 13:01:34 -08001031 * BMCR_RESET bit is cleared before they are usable.
1032 */
1033 msleep(1);
1034 return 0;
1035}
1036
Anton Vorontsov2f5cb432009-12-30 08:23:30 +00001037int phy_init_hw(struct phy_device *phydev)
1038{
Florian Fainelli9df81dd2014-02-17 13:34:03 -08001039 int ret = 0;
Anton Vorontsov2f5cb432009-12-30 08:23:30 +00001040
Sergei Shtylyovbafbdd52017-12-04 13:35:05 +01001041 /* Deassert the reset signal */
1042 phy_device_reset(phydev, 0);
1043
Anton Vorontsov2f5cb432009-12-30 08:23:30 +00001044 if (!phydev->drv || !phydev->drv->config_init)
1045 return 0;
1046
Florian Fainelli9df81dd2014-02-17 13:34:03 -08001047 if (phydev->drv->soft_reset)
1048 ret = phydev->drv->soft_reset(phydev);
Florian Fainelli9df81dd2014-02-17 13:34:03 -08001049
Florian Fainelli87aa9f92013-12-06 13:01:34 -08001050 if (ret < 0)
1051 return ret;
1052
Anton Vorontsov2f5cb432009-12-30 08:23:30 +00001053 ret = phy_scan_fixups(phydev);
1054 if (ret < 0)
1055 return ret;
1056
1057 return phydev->drv->config_init(phydev);
1058}
Florian Fainelli87aa9f92013-12-06 13:01:34 -08001059EXPORT_SYMBOL(phy_init_hw);
Anton Vorontsov2f5cb432009-12-30 08:23:30 +00001060
Andrew Lunn22209432016-01-06 20:11:13 +01001061void phy_attached_info(struct phy_device *phydev)
1062{
1063 phy_attached_print(phydev, NULL);
1064}
1065EXPORT_SYMBOL(phy_attached_info);
1066
Romain Perier5e369ae2017-09-04 10:41:36 +02001067#define ATTACHED_FMT "attached PHY driver [%s] (mii_bus:phy_addr=%s, irq=%s)"
Andrew Lunn22209432016-01-06 20:11:13 +01001068void phy_attached_print(struct phy_device *phydev, const char *fmt, ...)
1069{
Florian Fainellifcd03e32017-08-22 14:26:47 -07001070 const char *drv_name = phydev->drv ? phydev->drv->name : "unbound";
Romain Perier5e369ae2017-09-04 10:41:36 +02001071 char *irq_str;
Geert Uytterhoeven059fbe82017-09-21 13:27:02 +02001072 char irq_num[8];
Romain Perier5e369ae2017-09-04 10:41:36 +02001073
1074 switch(phydev->irq) {
1075 case PHY_POLL:
1076 irq_str = "POLL";
1077 break;
1078 case PHY_IGNORE_INTERRUPT:
1079 irq_str = "IGNORE";
1080 break;
1081 default:
1082 snprintf(irq_num, sizeof(irq_num), "%d", phydev->irq);
1083 irq_str = irq_num;
1084 break;
1085 }
1086
Florian Fainellifcd03e32017-08-22 14:26:47 -07001087
Andrew Lunn22209432016-01-06 20:11:13 +01001088 if (!fmt) {
Andrew Lunnc4fabb82018-09-29 23:04:11 +02001089 phydev_info(phydev, ATTACHED_FMT "\n",
Florian Fainellifcd03e32017-08-22 14:26:47 -07001090 drv_name, phydev_name(phydev),
Romain Perier5e369ae2017-09-04 10:41:36 +02001091 irq_str);
Andrew Lunn22209432016-01-06 20:11:13 +01001092 } else {
1093 va_list ap;
1094
Andrew Lunnc4fabb82018-09-29 23:04:11 +02001095 phydev_info(phydev, ATTACHED_FMT,
Florian Fainellifcd03e32017-08-22 14:26:47 -07001096 drv_name, phydev_name(phydev),
Romain Perier5e369ae2017-09-04 10:41:36 +02001097 irq_str);
Andrew Lunn22209432016-01-06 20:11:13 +01001098
1099 va_start(ap, fmt);
1100 vprintk(fmt, ap);
1101 va_end(ap);
1102 }
1103}
1104EXPORT_SYMBOL(phy_attached_print);
1105
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001106/**
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001107 * phy_attach_direct - attach a network device to a given PHY device pointer
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001108 * @dev: network device to attach
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001109 * @phydev: Pointer to phy_device to attach
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001110 * @flags: PHY device's dev_flags
1111 * @interface: PHY device's interface
1112 *
1113 * Description: Called by drivers to attach to a particular PHY
1114 * device. The phy_device is found, and properly hooked up
Andy Fleming257184d2014-01-10 14:27:54 +08001115 * to the phy_driver. If no driver is attached, then a
1116 * generic driver is used. The phy_device is given a ptr to
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001117 * the attaching device, and given a callback for link status
1118 * change. The phy_device is returned to the attaching driver.
Russell King73229672015-09-24 20:36:08 +01001119 * This function takes a reference on the phy device.
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001120 */
Andy Fleming257184d2014-01-10 14:27:54 +08001121int phy_attach_direct(struct net_device *dev, struct phy_device *phydev,
1122 u32 flags, phy_interface_t interface)
Andy Fleminge1393452005-08-24 18:46:21 -05001123{
Florian Fainelliec988ad2016-12-06 20:54:43 -08001124 struct module *ndev_owner = dev->dev.parent->driver->owner;
Andrew Lunne5a03bf2016-01-06 20:11:16 +01001125 struct mii_bus *bus = phydev->mdio.bus;
1126 struct device *d = &phydev->mdio.dev;
Florian Fainelli6d9f66a2017-02-08 19:05:26 -08001127 bool using_genphy = false;
Marc Kleine-Budded005a092011-03-28 14:54:08 +00001128 int err;
Andy Fleminge1393452005-08-24 18:46:21 -05001129
Florian Fainelliec988ad2016-12-06 20:54:43 -08001130 /* For Ethernet device drivers that register their own MDIO bus, we
1131 * will have bus->owner match ndev_mod, so we do not want to increment
1132 * our own module->refcnt here, otherwise we would not be able to
1133 * unload later on.
1134 */
1135 if (ndev_owner != bus->owner && !try_module_get(bus->owner)) {
Russell King3e3aaf62015-09-24 20:36:02 +01001136 dev_err(&dev->dev, "failed to get the bus module\n");
1137 return -EIO;
1138 }
1139
Russell King73229672015-09-24 20:36:08 +01001140 get_device(d);
1141
Andy Fleminge1393452005-08-24 18:46:21 -05001142 /* Assume that if there is no driver, that it doesn't
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001143 * exist, and we should use the genphy driver.
1144 */
Sergei Shtylyovef899c02015-08-28 21:35:14 +03001145 if (!d->driver) {
Andy Fleming257184d2014-01-10 14:27:54 +08001146 if (phydev->is_c45)
Russell King921690f2017-06-05 12:23:05 +01001147 d->driver = &genphy_10g_driver.mdiodrv.driver;
Andy Fleming257184d2014-01-10 14:27:54 +08001148 else
Russell King921690f2017-06-05 12:23:05 +01001149 d->driver = &genphy_driver.mdiodrv.driver;
Andy Fleminge1393452005-08-24 18:46:21 -05001150
Florian Fainelli6d9f66a2017-02-08 19:05:26 -08001151 using_genphy = true;
1152 }
1153
1154 if (!try_module_get(d->driver->owner)) {
1155 dev_err(&dev->dev, "failed to get the device driver module\n");
1156 err = -EIO;
1157 goto error_put_device;
1158 }
1159
1160 if (using_genphy) {
Andy Fleminge1393452005-08-24 18:46:21 -05001161 err = d->driver->probe(d);
Jeff Garzikb7a00ec2006-10-01 07:27:46 -04001162 if (err >= 0)
1163 err = device_bind_driver(d);
Andy Fleminge1393452005-08-24 18:46:21 -05001164
Jeff Garzikb7a00ec2006-10-01 07:27:46 -04001165 if (err)
Florian Fainelli6d9f66a2017-02-08 19:05:26 -08001166 goto error_module_put;
Andy Fleminge1393452005-08-24 18:46:21 -05001167 }
1168
1169 if (phydev->attached_dev) {
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001170 dev_err(&dev->dev, "PHY already attached\n");
Russell King3e3aaf62015-09-24 20:36:02 +01001171 err = -EBUSY;
1172 goto error;
Ezequiel Garciab3565f22014-07-23 16:47:32 -03001173 }
1174
Russell Kinga81497b2017-07-25 15:02:58 +01001175 phydev->phy_link_change = phy_link_change;
Andy Fleminge1393452005-08-24 18:46:21 -05001176 phydev->attached_dev = dev;
Richard Cochranc1f19b52010-07-17 08:49:36 +00001177 dev->phydev = phydev;
Florian Fainellia3995462017-05-27 10:42:25 -07001178
1179 /* Some Ethernet drivers try to connect to a PHY device before
1180 * calling register_netdevice() -> netdev_register_kobject() and
1181 * does the dev->dev.kobj initialization. Here we only check for
1182 * success which indicates that the network device kobject is
1183 * ready. Once we do that we still need to keep track of whether
1184 * links were successfully set up or not for phy_detach() to
1185 * remove them accordingly.
1186 */
1187 phydev->sysfs_links = false;
1188
Florian Fainelli55683632017-05-25 09:21:41 -07001189 err = sysfs_create_link(&phydev->mdio.dev.kobj, &dev->dev.kobj,
1190 "attached_dev");
Florian Fainellia3995462017-05-27 10:42:25 -07001191 if (!err) {
Grygorii Strashko4414b3e2018-03-16 17:08:35 -05001192 err = sysfs_create_link_nowarn(&dev->dev.kobj,
1193 &phydev->mdio.dev.kobj,
1194 "phydev");
1195 if (err) {
1196 dev_err(&dev->dev, "could not add device link to %s err %d\n",
1197 kobject_name(&phydev->mdio.dev.kobj),
1198 err);
1199 /* non-fatal - some net drivers can use one netdevice
1200 * with more then one phy
1201 */
1202 }
Florian Fainelli55683632017-05-25 09:21:41 -07001203
Florian Fainellia3995462017-05-27 10:42:25 -07001204 phydev->sysfs_links = true;
1205 }
Andy Fleminge1393452005-08-24 18:46:21 -05001206
1207 phydev->dev_flags = flags;
1208
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001209 phydev->interface = interface;
1210
Anton Vorontsovef24b162010-08-24 14:46:12 -07001211 phydev->state = PHY_READY;
1212
Sjoerd Simons113c74d2016-01-14 21:57:18 +01001213 /* Initial carrier state is off as the phy is about to be
1214 * (re)initialized.
1215 */
1216 netif_carrier_off(phydev->attached_dev);
1217
Andy Fleminge8a2b6a2006-12-01 12:01:06 -06001218 /* Do initial configuration here, now that
1219 * we have certain key parameters
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001220 * (dev_flags and interface)
1221 */
Marc Kleine-Budded005a092011-03-28 14:54:08 +00001222 err = phy_init_hw(phydev);
1223 if (err)
Woojung Huha7dac9f2016-11-23 23:10:33 +00001224 goto error;
Sebastian Hesselbarth1211ce52013-12-13 10:20:28 +01001225
Woojung Huha7dac9f2016-11-23 23:10:33 +00001226 phy_resume(phydev);
Zach Brown2e0bc452016-10-17 10:49:55 -05001227 phy_led_triggers_register(phydev);
1228
Marc Kleine-Budded005a092011-03-28 14:54:08 +00001229 return err;
Russell King3e3aaf62015-09-24 20:36:02 +01001230
1231error:
Florian Fainelli6d9f66a2017-02-08 19:05:26 -08001232 /* phy_detach() does all of the cleanup below */
Woojung Huha7dac9f2016-11-23 23:10:33 +00001233 phy_detach(phydev);
Florian Fainelli6d9f66a2017-02-08 19:05:26 -08001234 return err;
1235
1236error_module_put:
Mao Wenancafe8df2017-01-31 18:46:43 -08001237 module_put(d->driver->owner);
Florian Fainelli6d9f66a2017-02-08 19:05:26 -08001238error_put_device:
1239 put_device(d);
Florian Fainelliec988ad2016-12-06 20:54:43 -08001240 if (ndev_owner != bus->owner)
1241 module_put(bus->owner);
Russell King3e3aaf62015-09-24 20:36:02 +01001242 return err;
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001243}
Andy Fleming257184d2014-01-10 14:27:54 +08001244EXPORT_SYMBOL(phy_attach_direct);
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001245
1246/**
1247 * phy_attach - attach a network device to a particular PHY device
1248 * @dev: network device to attach
1249 * @bus_id: Bus ID of PHY device to attach
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001250 * @interface: PHY device's interface
1251 *
1252 * Description: Same as phy_attach_direct() except that a PHY bus_id
1253 * string is passed instead of a pointer to a struct phy_device.
1254 */
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001255struct phy_device *phy_attach(struct net_device *dev, const char *bus_id,
1256 phy_interface_t interface)
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001257{
1258 struct bus_type *bus = &mdio_bus_type;
1259 struct phy_device *phydev;
1260 struct device *d;
1261 int rc;
1262
1263 /* Search the list of PHY devices on the mdio bus for the
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001264 * PHY with the requested name
1265 */
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001266 d = bus_find_device_by_name(bus, NULL, bus_id);
1267 if (!d) {
1268 pr_err("PHY %s not found\n", bus_id);
1269 return ERR_PTR(-ENODEV);
1270 }
1271 phydev = to_phy_device(d);
1272
Florian Fainellif9a8f832013-01-14 00:52:52 +00001273 rc = phy_attach_direct(dev, phydev, phydev->dev_flags, interface);
Johan Hovold17ae1c62016-11-03 18:40:19 +01001274 put_device(d);
Grant Likelyfa94f6d2009-04-25 12:52:51 +00001275 if (rc)
1276 return ERR_PTR(rc);
1277
Andy Fleminge1393452005-08-24 18:46:21 -05001278 return phydev;
1279}
1280EXPORT_SYMBOL(phy_attach);
1281
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001282/**
1283 * phy_detach - detach a PHY device from its network device
1284 * @phydev: target phy_device struct
Russell King73229672015-09-24 20:36:08 +01001285 *
1286 * This detaches the phy device from its network device and the phy
1287 * driver, and drops the reference count taken in phy_attach_direct().
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001288 */
Andy Fleminge1393452005-08-24 18:46:21 -05001289void phy_detach(struct phy_device *phydev)
1290{
Florian Fainelliec988ad2016-12-06 20:54:43 -08001291 struct net_device *dev = phydev->attached_dev;
1292 struct module *ndev_owner = dev->dev.parent->driver->owner;
Russell King3e3aaf62015-09-24 20:36:02 +01001293 struct mii_bus *bus;
Ezequiel Garciab3565f22014-07-23 16:47:32 -03001294
Florian Fainellia3995462017-05-27 10:42:25 -07001295 if (phydev->sysfs_links) {
1296 sysfs_remove_link(&dev->dev.kobj, "phydev");
1297 sysfs_remove_link(&phydev->mdio.dev.kobj, "attached_dev");
1298 }
Heiner Kallweit93f41e62018-09-24 22:01:32 +02001299 phy_suspend(phydev);
Richard Cochranc1f19b52010-07-17 08:49:36 +00001300 phydev->attached_dev->phydev = NULL;
Andy Fleminge1393452005-08-24 18:46:21 -05001301 phydev->attached_dev = NULL;
Russell King9525ae82017-07-25 15:03:13 +01001302 phydev->phylink = NULL;
Andy Fleminge1393452005-08-24 18:46:21 -05001303
Geert Uytterhoeven0075bd62016-11-28 15:18:31 +01001304 phy_led_triggers_unregister(phydev);
1305
Florian Fainelli6d9f66a2017-02-08 19:05:26 -08001306 module_put(phydev->mdio.dev.driver->owner);
1307
Andy Fleminge1393452005-08-24 18:46:21 -05001308 /* If the device had no specific driver before (i.e. - it
1309 * was using the generic driver), we unbind the device
1310 * from the generic driver so that there's a chance a
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001311 * real driver could be loaded
1312 */
Russell King921690f2017-06-05 12:23:05 +01001313 if (phydev->mdio.dev.driver == &genphy_10g_driver.mdiodrv.driver ||
1314 phydev->mdio.dev.driver == &genphy_driver.mdiodrv.driver)
1315 device_release_driver(&phydev->mdio.dev);
Russell King3e3aaf62015-09-24 20:36:02 +01001316
Russell King73229672015-09-24 20:36:08 +01001317 /*
1318 * The phydev might go away on the put_device() below, so avoid
1319 * a use-after-free bug by reading the underlying bus first.
1320 */
Andrew Lunne5a03bf2016-01-06 20:11:16 +01001321 bus = phydev->mdio.bus;
Russell King3e3aaf62015-09-24 20:36:02 +01001322
Andrew Lunne5a03bf2016-01-06 20:11:16 +01001323 put_device(&phydev->mdio.dev);
Florian Fainelliec988ad2016-12-06 20:54:43 -08001324 if (ndev_owner != bus->owner)
1325 module_put(bus->owner);
Sergei Shtylyovbafbdd52017-12-04 13:35:05 +01001326
1327 /* Assert the reset signal */
1328 phy_device_reset(phydev, 1);
Andy Fleminge1393452005-08-24 18:46:21 -05001329}
1330EXPORT_SYMBOL(phy_detach);
1331
Sebastian Hesselbarth481b5d92013-12-13 10:20:27 +01001332int phy_suspend(struct phy_device *phydev)
1333{
Andrew Lunne5a03bf2016-01-06 20:11:16 +01001334 struct phy_driver *phydrv = to_phy_driver(phydev->mdio.dev.driver);
Heiner Kallweit93f41e62018-09-24 22:01:32 +02001335 struct net_device *netdev = phydev->attached_dev;
Sebastian Hesselbarth32fc3fd2014-03-14 10:07:44 +01001336 struct ethtool_wolinfo wol = { .cmd = ETHTOOL_GWOL };
Florian Fainelli8a477a62015-01-26 22:05:39 -08001337 int ret = 0;
Sebastian Hesselbarth481b5d92013-12-13 10:20:27 +01001338
1339 /* If the device has WOL enabled, we cannot suspend the PHY */
Sebastian Hesselbarth481b5d92013-12-13 10:20:27 +01001340 phy_ethtool_get_wol(phydev, &wol);
Heiner Kallweit93f41e62018-09-24 22:01:32 +02001341 if (wol.wolopts || (netdev && netdev->wol_enabled))
Sebastian Hesselbarth481b5d92013-12-13 10:20:27 +01001342 return -EBUSY;
1343
Florian Fainelli25149ef2017-02-17 16:07:34 -08001344 if (phydev->drv && phydrv->suspend)
Florian Fainelli8a477a62015-01-26 22:05:39 -08001345 ret = phydrv->suspend(phydev);
1346
1347 if (ret)
1348 return ret;
1349
1350 phydev->suspended = true;
1351
1352 return ret;
Sebastian Hesselbarth481b5d92013-12-13 10:20:27 +01001353}
Florian Fainellica127692014-07-08 10:38:36 -07001354EXPORT_SYMBOL(phy_suspend);
Sebastian Hesselbarth481b5d92013-12-13 10:20:27 +01001355
Andrew Lunn9c2c2e62018-02-27 01:56:06 +01001356int __phy_resume(struct phy_device *phydev)
Sebastian Hesselbarth481b5d92013-12-13 10:20:27 +01001357{
Andrew Lunne5a03bf2016-01-06 20:11:16 +01001358 struct phy_driver *phydrv = to_phy_driver(phydev->mdio.dev.driver);
Florian Fainelli8a477a62015-01-26 22:05:39 -08001359 int ret = 0;
Sebastian Hesselbarth481b5d92013-12-13 10:20:27 +01001360
Russell Kingf5e64032017-12-12 10:45:36 +00001361 WARN_ON(!mutex_is_locked(&phydev->lock));
1362
Florian Fainelli25149ef2017-02-17 16:07:34 -08001363 if (phydev->drv && phydrv->resume)
Florian Fainelli8a477a62015-01-26 22:05:39 -08001364 ret = phydrv->resume(phydev);
1365
1366 if (ret)
1367 return ret;
1368
1369 phydev->suspended = false;
1370
1371 return ret;
Sebastian Hesselbarth481b5d92013-12-13 10:20:27 +01001372}
Andrew Lunn9c2c2e62018-02-27 01:56:06 +01001373EXPORT_SYMBOL(__phy_resume);
1374
1375int phy_resume(struct phy_device *phydev)
1376{
1377 int ret;
1378
1379 mutex_lock(&phydev->lock);
1380 ret = __phy_resume(phydev);
1381 mutex_unlock(&phydev->lock);
1382
1383 return ret;
1384}
Florian Fainellica127692014-07-08 10:38:36 -07001385EXPORT_SYMBOL(phy_resume);
Andy Fleminge1393452005-08-24 18:46:21 -05001386
Lin Yun Shengf0f9b4e2017-06-30 17:44:15 +08001387int phy_loopback(struct phy_device *phydev, bool enable)
1388{
1389 struct phy_driver *phydrv = to_phy_driver(phydev->mdio.dev.driver);
1390 int ret = 0;
1391
1392 mutex_lock(&phydev->lock);
1393
1394 if (enable && phydev->loopback_enabled) {
1395 ret = -EBUSY;
1396 goto out;
1397 }
1398
1399 if (!enable && !phydev->loopback_enabled) {
1400 ret = -EINVAL;
1401 goto out;
1402 }
1403
1404 if (phydev->drv && phydrv->set_loopback)
1405 ret = phydrv->set_loopback(phydev, enable);
1406 else
1407 ret = -EOPNOTSUPP;
1408
1409 if (ret)
1410 goto out;
1411
1412 phydev->loopback_enabled = enable;
1413
1414out:
1415 mutex_unlock(&phydev->lock);
1416 return ret;
1417}
1418EXPORT_SYMBOL(phy_loopback);
1419
Richard Leitnera9668492017-12-11 13:16:58 +01001420/**
1421 * phy_reset_after_clk_enable - perform a PHY reset if needed
1422 * @phydev: target phy_device struct
1423 *
1424 * Description: Some PHYs are known to need a reset after their refclk was
1425 * enabled. This function evaluates the flags and perform the reset if it's
1426 * needed. Returns < 0 on error, 0 if the phy wasn't reset and 1 if the phy
1427 * was reset.
1428 */
1429int phy_reset_after_clk_enable(struct phy_device *phydev)
1430{
1431 if (!phydev || !phydev->drv)
1432 return -ENODEV;
1433
1434 if (phydev->drv->flags & PHY_RST_AFTER_CLK_EN) {
1435 phy_device_reset(phydev, 1);
1436 phy_device_reset(phydev, 0);
1437 return 1;
1438 }
1439
1440 return 0;
1441}
1442EXPORT_SYMBOL(phy_reset_after_clk_enable);
1443
Andy Fleming00db8182005-07-30 19:31:23 -04001444/* Generic PHY support and helper functions */
1445
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001446/**
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001447 * genphy_config_advert - sanitize and advertise auto-negotiation parameters
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001448 * @phydev: target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -04001449 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001450 * Description: Writes MII_ADVERTISE with the appropriate values,
Andy Fleming00db8182005-07-30 19:31:23 -04001451 * after sanitizing the values to make sure we only advertise
Trent Piepho51e2a382008-09-24 10:55:46 +00001452 * what is supported. Returns < 0 on error, 0 if the PHY's advertisement
1453 * hasn't changed, and > 0 if it has changed.
Andy Fleming00db8182005-07-30 19:31:23 -04001454 */
stephen hemminger89ff05e2010-10-21 08:37:41 +00001455static int genphy_config_advert(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -04001456{
1457 u32 advertise;
Florian Fainelli5273e3a2014-02-03 12:35:46 -08001458 int oldadv, adv, bmsr;
Trent Piepho51e2a382008-09-24 10:55:46 +00001459 int err, changed = 0;
Andy Fleming00db8182005-07-30 19:31:23 -04001460
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001461 /* Only allow advertising what this PHY supports */
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01001462 linkmode_and(phydev->advertising, phydev->advertising,
1463 phydev->supported);
1464 if (!ethtool_convert_link_mode_to_legacy_u32(&advertise,
1465 phydev->advertising))
1466 phydev_warn(phydev, "PHY advertising (%*pb) more modes than genphy supports, some modes not advertised.\n",
1467 __ETHTOOL_LINK_MODE_MASK_NBITS,
1468 phydev->advertising);
Andy Fleming00db8182005-07-30 19:31:23 -04001469
1470 /* Setup standard advertisement */
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001471 adv = phy_read(phydev, MII_ADVERTISE);
Andy Fleming00db8182005-07-30 19:31:23 -04001472 if (adv < 0)
1473 return adv;
1474
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001475 oldadv = adv;
Matt Carlson28011cf2011-11-16 18:36:59 -05001476 adv &= ~(ADVERTISE_ALL | ADVERTISE_100BASE4 | ADVERTISE_PAUSE_CAP |
Andy Fleming00db8182005-07-30 19:31:23 -04001477 ADVERTISE_PAUSE_ASYM);
Matt Carlson37f07022011-11-17 14:30:55 +00001478 adv |= ethtool_adv_to_mii_adv_t(advertise);
Andy Fleming00db8182005-07-30 19:31:23 -04001479
Trent Piepho51e2a382008-09-24 10:55:46 +00001480 if (adv != oldadv) {
1481 err = phy_write(phydev, MII_ADVERTISE, adv);
Andy Fleming00db8182005-07-30 19:31:23 -04001482
Trent Piepho51e2a382008-09-24 10:55:46 +00001483 if (err < 0)
1484 return err;
1485 changed = 1;
1486 }
Andy Fleming00db8182005-07-30 19:31:23 -04001487
Florian Fainelli5273e3a2014-02-03 12:35:46 -08001488 bmsr = phy_read(phydev, MII_BMSR);
1489 if (bmsr < 0)
1490 return bmsr;
1491
1492 /* Per 802.3-2008, Section 22.2.4.2.16 Extended status all
1493 * 1000Mbits/sec capable PHYs shall have the BMSR_ESTATEN bit set to a
1494 * logical 1.
1495 */
1496 if (!(bmsr & BMSR_ESTATEN))
1497 return changed;
1498
Andy Fleming00db8182005-07-30 19:31:23 -04001499 /* Configure gigabit if it's supported */
Florian Fainelli5273e3a2014-02-03 12:35:46 -08001500 adv = phy_read(phydev, MII_CTRL1000);
1501 if (adv < 0)
1502 return adv;
1503
1504 oldadv = adv;
1505 adv &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
1506
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01001507 if (linkmode_test_bit(ETHTOOL_LINK_MODE_1000baseT_Half_BIT,
1508 phydev->supported) ||
1509 linkmode_test_bit(ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
1510 phydev->supported))
Matt Carlson37f07022011-11-17 14:30:55 +00001511 adv |= ethtool_adv_to_mii_ctrl1000_t(advertise);
Andy Fleming00db8182005-07-30 19:31:23 -04001512
Mugunthan V Neb686232015-06-25 22:21:02 +05301513 if (adv != oldadv)
1514 changed = 1;
1515
Florian Fainelli5273e3a2014-02-03 12:35:46 -08001516 err = phy_write(phydev, MII_CTRL1000, adv);
1517 if (err < 0)
1518 return err;
1519
Trent Piepho51e2a382008-09-24 10:55:46 +00001520 return changed;
Andy Fleming00db8182005-07-30 19:31:23 -04001521}
Andy Fleming00db8182005-07-30 19:31:23 -04001522
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001523/**
jbrunetd853d142016-11-28 10:46:46 +01001524 * genphy_config_eee_advert - disable unwanted eee mode advertisement
1525 * @phydev: target phy_device struct
1526 *
1527 * Description: Writes MDIO_AN_EEE_ADV after disabling unsupported energy
1528 * efficent ethernet modes. Returns 0 if the PHY's advertisement hasn't
1529 * changed, and 1 if it has changed.
1530 */
1531static int genphy_config_eee_advert(struct phy_device *phydev)
1532{
jbrunet3bb9ab62016-12-19 16:05:36 +01001533 int broken = phydev->eee_broken_modes;
1534 int old_adv, adv;
jbrunetd853d142016-11-28 10:46:46 +01001535
1536 /* Nothing to disable */
1537 if (!broken)
1538 return 0;
1539
1540 /* If the following call fails, we assume that EEE is not
1541 * supported by the phy. If we read 0, EEE is not advertised
1542 * In both case, we don't need to continue
1543 */
Russell Kinga6d99fc2017-03-21 16:36:53 +00001544 adv = phy_read_mmd(phydev, MDIO_MMD_AN, MDIO_AN_EEE_ADV);
jbrunetd853d142016-11-28 10:46:46 +01001545 if (adv <= 0)
1546 return 0;
1547
1548 old_adv = adv;
1549 adv &= ~broken;
1550
1551 /* Advertising remains unchanged with the broken mask */
1552 if (old_adv == adv)
1553 return 0;
1554
Russell Kinga6d99fc2017-03-21 16:36:53 +00001555 phy_write_mmd(phydev, MDIO_MMD_AN, MDIO_AN_EEE_ADV, adv);
jbrunetd853d142016-11-28 10:46:46 +01001556
1557 return 1;
1558}
1559
1560/**
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001561 * genphy_setup_forced - configures/forces speed/duplex from @phydev
1562 * @phydev: target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -04001563 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001564 * Description: Configures MII_BMCR to force speed/duplex
Andy Fleming00db8182005-07-30 19:31:23 -04001565 * to the values in phydev. Assumes that the values are valid.
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001566 * Please see phy_sanitize_settings().
1567 */
Madalin Bucur3fb69bc2013-11-20 16:38:19 -06001568int genphy_setup_forced(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -04001569{
Russell Kingfea23fb2018-01-02 10:58:58 +00001570 u16 ctl = 0;
Andy Fleming00db8182005-07-30 19:31:23 -04001571
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001572 phydev->pause = 0;
1573 phydev->asym_pause = 0;
Andy Fleming00db8182005-07-30 19:31:23 -04001574
1575 if (SPEED_1000 == phydev->speed)
1576 ctl |= BMCR_SPEED1000;
1577 else if (SPEED_100 == phydev->speed)
1578 ctl |= BMCR_SPEED100;
1579
1580 if (DUPLEX_FULL == phydev->duplex)
1581 ctl |= BMCR_FULLDPLX;
Florian Fainellie1093742013-12-17 21:38:12 -08001582
Russell Kingfea23fb2018-01-02 10:58:58 +00001583 return phy_modify(phydev, MII_BMCR,
Ingo van Lil18a5b052018-02-12 12:02:52 +01001584 ~(BMCR_LOOPBACK | BMCR_ISOLATE | BMCR_PDOWN), ctl);
Andy Fleming00db8182005-07-30 19:31:23 -04001585}
Madalin Bucur3fb69bc2013-11-20 16:38:19 -06001586EXPORT_SYMBOL(genphy_setup_forced);
Andy Fleming00db8182005-07-30 19:31:23 -04001587
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001588/**
1589 * genphy_restart_aneg - Enable and Restart Autonegotiation
1590 * @phydev: target phy_device struct
1591 */
Andy Fleming00db8182005-07-30 19:31:23 -04001592int genphy_restart_aneg(struct phy_device *phydev)
1593{
Andy Fleming00db8182005-07-30 19:31:23 -04001594 /* Don't isolate the PHY if we're negotiating */
Russell Kingf1028522018-01-05 16:07:10 +00001595 return phy_modify(phydev, MII_BMCR, BMCR_ISOLATE,
Russell Kingfea23fb2018-01-02 10:58:58 +00001596 BMCR_ANENABLE | BMCR_ANRESTART);
Andy Fleming00db8182005-07-30 19:31:23 -04001597}
Adrian Bunk892871d2008-10-13 18:48:09 -07001598EXPORT_SYMBOL(genphy_restart_aneg);
Andy Fleming00db8182005-07-30 19:31:23 -04001599
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001600/**
1601 * genphy_config_aneg - restart auto-negotiation or write BMCR
1602 * @phydev: target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -04001603 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001604 * Description: If auto-negotiation is enabled, we configure the
Andy Fleming00db8182005-07-30 19:31:23 -04001605 * advertising, and then restart auto-negotiation. If it is not
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001606 * enabled, then we write the BMCR.
Andy Fleming00db8182005-07-30 19:31:23 -04001607 */
1608int genphy_config_aneg(struct phy_device *phydev)
1609{
jbrunetd853d142016-11-28 10:46:46 +01001610 int err, changed;
1611
1612 changed = genphy_config_eee_advert(phydev);
Andy Fleming00db8182005-07-30 19:31:23 -04001613
Trent Piephode339c22008-11-19 15:52:41 -08001614 if (AUTONEG_ENABLE != phydev->autoneg)
1615 return genphy_setup_forced(phydev);
Andy Fleming00db8182005-07-30 19:31:23 -04001616
jbrunetd853d142016-11-28 10:46:46 +01001617 err = genphy_config_advert(phydev);
1618 if (err < 0) /* error */
1619 return err;
1620
1621 changed |= err;
1622
1623 if (changed == 0) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001624 /* Advertisement hasn't changed, but maybe aneg was never on to
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001625 * begin with? Or maybe phy was isolated?
1626 */
Trent Piephode339c22008-11-19 15:52:41 -08001627 int ctl = phy_read(phydev, MII_BMCR);
1628
1629 if (ctl < 0)
1630 return ctl;
1631
1632 if (!(ctl & BMCR_ANENABLE) || (ctl & BMCR_ISOLATE))
jbrunetd853d142016-11-28 10:46:46 +01001633 changed = 1; /* do restart aneg */
Trent Piephode339c22008-11-19 15:52:41 -08001634 }
1635
1636 /* Only restart aneg if we are advertising something different
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001637 * than we were before.
1638 */
jbrunetd853d142016-11-28 10:46:46 +01001639 if (changed > 0)
1640 return genphy_restart_aneg(phydev);
Andy Fleming00db8182005-07-30 19:31:23 -04001641
jbrunetd853d142016-11-28 10:46:46 +01001642 return 0;
Andy Fleming00db8182005-07-30 19:31:23 -04001643}
1644EXPORT_SYMBOL(genphy_config_aneg);
1645
Florian Fainellia9fa6e62014-02-11 17:27:36 -08001646/**
1647 * genphy_aneg_done - return auto-negotiation status
1648 * @phydev: target phy_device struct
1649 *
1650 * Description: Reads the status register and returns 0 either if
1651 * auto-negotiation is incomplete, or if there was an error.
1652 * Returns BMSR_ANEGCOMPLETE if auto-negotiation is done.
1653 */
1654int genphy_aneg_done(struct phy_device *phydev)
1655{
1656 int retval = phy_read(phydev, MII_BMSR);
1657
1658 return (retval < 0) ? retval : (retval & BMSR_ANEGCOMPLETE);
1659}
1660EXPORT_SYMBOL(genphy_aneg_done);
1661
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001662/**
1663 * genphy_update_link - update link status in @phydev
1664 * @phydev: target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -04001665 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001666 * Description: Update the value in phydev->link to reflect the
Andy Fleming00db8182005-07-30 19:31:23 -04001667 * current link value. In order to do this, we need to read
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001668 * the status register twice, keeping the second value.
Andy Fleming00db8182005-07-30 19:31:23 -04001669 */
1670int genphy_update_link(struct phy_device *phydev)
1671{
1672 int status;
1673
1674 /* Do a fake read */
1675 status = phy_read(phydev, MII_BMSR);
Andy Fleming00db8182005-07-30 19:31:23 -04001676 if (status < 0)
1677 return status;
1678
1679 /* Read link and autonegotiation status */
1680 status = phy_read(phydev, MII_BMSR);
Andy Fleming00db8182005-07-30 19:31:23 -04001681 if (status < 0)
1682 return status;
1683
1684 if ((status & BMSR_LSTATUS) == 0)
1685 phydev->link = 0;
1686 else
1687 phydev->link = 1;
1688
1689 return 0;
1690}
Andy Fleming6b655522006-10-16 16:19:17 -05001691EXPORT_SYMBOL(genphy_update_link);
Andy Fleming00db8182005-07-30 19:31:23 -04001692
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001693/**
1694 * genphy_read_status - check the link status and update current link state
1695 * @phydev: target phy_device struct
Andy Fleming00db8182005-07-30 19:31:23 -04001696 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -08001697 * Description: Check the link, then figure out the current state
Andy Fleming00db8182005-07-30 19:31:23 -04001698 * by comparing what we advertise with what the link partner
1699 * advertises. Start by checking the gigabit possibilities,
1700 * then move on to 10/100.
1701 */
1702int genphy_read_status(struct phy_device *phydev)
1703{
1704 int adv;
1705 int err;
1706 int lpa;
1707 int lpagb = 0;
Cristian Bercarua4572e02014-02-25 10:22:48 +02001708 int common_adv;
1709 int common_adv_gb = 0;
Andy Fleming00db8182005-07-30 19:31:23 -04001710
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001711 /* Update the link, but return if there was an error */
Andy Fleming00db8182005-07-30 19:31:23 -04001712 err = genphy_update_link(phydev);
1713 if (err)
1714 return err;
1715
Andrew Lunnc0ec3c22018-11-10 23:43:34 +01001716 linkmode_zero(phydev->lp_advertising);
Florian Fainelli114002b2013-12-06 13:01:30 -08001717
Andy Fleming00db8182005-07-30 19:31:23 -04001718 if (AUTONEG_ENABLE == phydev->autoneg) {
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01001719 if (linkmode_test_bit(ETHTOOL_LINK_MODE_1000baseT_Half_BIT,
1720 phydev->supported) ||
1721 linkmode_test_bit(ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
1722 phydev->supported)) {
Andy Fleming00db8182005-07-30 19:31:23 -04001723 lpagb = phy_read(phydev, MII_STAT1000);
Andy Fleming00db8182005-07-30 19:31:23 -04001724 if (lpagb < 0)
1725 return lpagb;
1726
1727 adv = phy_read(phydev, MII_CTRL1000);
Andy Fleming00db8182005-07-30 19:31:23 -04001728 if (adv < 0)
1729 return adv;
1730
Heiner Kallweitb8f8c8e2018-07-21 15:48:47 +02001731 if (lpagb & LPA_1000MSFAIL) {
1732 if (adv & CTL1000_ENABLE_MASTER)
1733 phydev_err(phydev, "Master/Slave resolution failed, maybe conflicting manual settings?\n");
1734 else
1735 phydev_err(phydev, "Master/Slave resolution failed\n");
1736 return -ENOLINK;
1737 }
1738
Andrew Lunn78a24df2018-12-05 21:49:41 +01001739 mii_stat1000_mod_linkmode_lpa_t(phydev->lp_advertising,
1740 lpagb);
Cristian Bercarua4572e02014-02-25 10:22:48 +02001741 common_adv_gb = lpagb & adv << 2;
Andy Fleming00db8182005-07-30 19:31:23 -04001742 }
1743
1744 lpa = phy_read(phydev, MII_LPA);
Andy Fleming00db8182005-07-30 19:31:23 -04001745 if (lpa < 0)
1746 return lpa;
1747
Andrew Lunnd3351932018-12-05 21:49:43 +01001748 mii_lpa_mod_linkmode_lpa_t(phydev->lp_advertising, lpa);
Florian Fainelli114002b2013-12-06 13:01:30 -08001749
Andy Fleming00db8182005-07-30 19:31:23 -04001750 adv = phy_read(phydev, MII_ADVERTISE);
Andy Fleming00db8182005-07-30 19:31:23 -04001751 if (adv < 0)
1752 return adv;
1753
Cristian Bercarua4572e02014-02-25 10:22:48 +02001754 common_adv = lpa & adv;
Andy Fleming00db8182005-07-30 19:31:23 -04001755
1756 phydev->speed = SPEED_10;
1757 phydev->duplex = DUPLEX_HALF;
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001758 phydev->pause = 0;
1759 phydev->asym_pause = 0;
Andy Fleming00db8182005-07-30 19:31:23 -04001760
Cristian Bercarua4572e02014-02-25 10:22:48 +02001761 if (common_adv_gb & (LPA_1000FULL | LPA_1000HALF)) {
Andy Fleming00db8182005-07-30 19:31:23 -04001762 phydev->speed = SPEED_1000;
1763
Cristian Bercarua4572e02014-02-25 10:22:48 +02001764 if (common_adv_gb & LPA_1000FULL)
Andy Fleming00db8182005-07-30 19:31:23 -04001765 phydev->duplex = DUPLEX_FULL;
Cristian Bercarua4572e02014-02-25 10:22:48 +02001766 } else if (common_adv & (LPA_100FULL | LPA_100HALF)) {
Andy Fleming00db8182005-07-30 19:31:23 -04001767 phydev->speed = SPEED_100;
Florian Fainellie1093742013-12-17 21:38:12 -08001768
Cristian Bercarua4572e02014-02-25 10:22:48 +02001769 if (common_adv & LPA_100FULL)
Andy Fleming00db8182005-07-30 19:31:23 -04001770 phydev->duplex = DUPLEX_FULL;
1771 } else
Cristian Bercarua4572e02014-02-25 10:22:48 +02001772 if (common_adv & LPA_10FULL)
Andy Fleming00db8182005-07-30 19:31:23 -04001773 phydev->duplex = DUPLEX_FULL;
1774
Florian Fainellie1093742013-12-17 21:38:12 -08001775 if (phydev->duplex == DUPLEX_FULL) {
Andy Fleming00db8182005-07-30 19:31:23 -04001776 phydev->pause = lpa & LPA_PAUSE_CAP ? 1 : 0;
1777 phydev->asym_pause = lpa & LPA_PAUSE_ASYM ? 1 : 0;
1778 }
1779 } else {
1780 int bmcr = phy_read(phydev, MII_BMCR);
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001781
Andy Fleming00db8182005-07-30 19:31:23 -04001782 if (bmcr < 0)
1783 return bmcr;
1784
1785 if (bmcr & BMCR_FULLDPLX)
1786 phydev->duplex = DUPLEX_FULL;
1787 else
1788 phydev->duplex = DUPLEX_HALF;
1789
1790 if (bmcr & BMCR_SPEED1000)
1791 phydev->speed = SPEED_1000;
1792 else if (bmcr & BMCR_SPEED100)
1793 phydev->speed = SPEED_100;
1794 else
1795 phydev->speed = SPEED_10;
1796
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03001797 phydev->pause = 0;
1798 phydev->asym_pause = 0;
Andy Fleming00db8182005-07-30 19:31:23 -04001799 }
1800
1801 return 0;
1802}
1803EXPORT_SYMBOL(genphy_read_status);
1804
Florian Fainelli797ac072014-02-17 13:34:02 -08001805/**
1806 * genphy_soft_reset - software reset the PHY via BMCR_RESET bit
1807 * @phydev: target phy_device struct
1808 *
1809 * Description: Perform a software PHY reset using the standard
1810 * BMCR_RESET bit and poll for the reset bit to be cleared.
1811 *
1812 * Returns: 0 on success, < 0 on failure
1813 */
1814int genphy_soft_reset(struct phy_device *phydev)
1815{
1816 int ret;
1817
1818 ret = phy_write(phydev, MII_BMCR, BMCR_RESET);
1819 if (ret < 0)
1820 return ret;
1821
1822 return phy_poll_reset(phydev);
1823}
1824EXPORT_SYMBOL(genphy_soft_reset);
1825
Daniel Mackaf6b6962014-04-16 17:19:12 +02001826int genphy_config_init(struct phy_device *phydev)
Andy Fleming00db8182005-07-30 19:31:23 -04001827{
Eric Sesterhenn84c22d72006-09-25 16:39:22 -07001828 int val;
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01001829 __ETHTOOL_DECLARE_LINK_MODE_MASK(features) = { 0, };
Andy Fleming00db8182005-07-30 19:31:23 -04001830
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01001831 linkmode_set_bit_array(phy_basic_ports_array,
1832 ARRAY_SIZE(phy_basic_ports_array),
1833 features);
1834 linkmode_set_bit(ETHTOOL_LINK_MODE_Pause_BIT, features);
1835 linkmode_set_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, features);
Andy Fleming00db8182005-07-30 19:31:23 -04001836
1837 /* Do we support autonegotiation? */
1838 val = phy_read(phydev, MII_BMSR);
Andy Fleming00db8182005-07-30 19:31:23 -04001839 if (val < 0)
1840 return val;
1841
1842 if (val & BMSR_ANEGCAPABLE)
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01001843 linkmode_set_bit(ETHTOOL_LINK_MODE_Autoneg_BIT, features);
Andy Fleming00db8182005-07-30 19:31:23 -04001844
1845 if (val & BMSR_100FULL)
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01001846 linkmode_set_bit(ETHTOOL_LINK_MODE_100baseT_Full_BIT, features);
Andy Fleming00db8182005-07-30 19:31:23 -04001847 if (val & BMSR_100HALF)
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01001848 linkmode_set_bit(ETHTOOL_LINK_MODE_100baseT_Half_BIT, features);
Andy Fleming00db8182005-07-30 19:31:23 -04001849 if (val & BMSR_10FULL)
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01001850 linkmode_set_bit(ETHTOOL_LINK_MODE_10baseT_Full_BIT, features);
Andy Fleming00db8182005-07-30 19:31:23 -04001851 if (val & BMSR_10HALF)
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01001852 linkmode_set_bit(ETHTOOL_LINK_MODE_10baseT_Half_BIT, features);
Andy Fleming00db8182005-07-30 19:31:23 -04001853
1854 if (val & BMSR_ESTATEN) {
1855 val = phy_read(phydev, MII_ESTATUS);
Andy Fleming00db8182005-07-30 19:31:23 -04001856 if (val < 0)
1857 return val;
1858
1859 if (val & ESTATUS_1000_TFULL)
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01001860 linkmode_set_bit(ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
1861 features);
Andy Fleming00db8182005-07-30 19:31:23 -04001862 if (val & ESTATUS_1000_THALF)
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01001863 linkmode_set_bit(ETHTOOL_LINK_MODE_1000baseT_Half_BIT,
1864 features);
Andy Fleming00db8182005-07-30 19:31:23 -04001865 }
1866
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01001867 linkmode_and(phydev->supported, phydev->supported, features);
1868 linkmode_and(phydev->advertising, phydev->advertising, features);
Andy Fleming00db8182005-07-30 19:31:23 -04001869
1870 return 0;
1871}
Uwe Kleine-Königa0a32d32017-05-24 00:26:07 +02001872EXPORT_SYMBOL(genphy_config_init);
Andy Fleming124059f2014-01-10 14:27:37 +08001873
Kevin Hao5df7af82018-03-20 09:44:52 +08001874/* This is used for the phy device which doesn't support the MMD extended
1875 * register access, but it does have side effect when we are trying to access
1876 * the MMD register via indirect method.
1877 */
1878int genphy_read_mmd_unsupported(struct phy_device *phdev, int devad, u16 regnum)
1879{
1880 return -EOPNOTSUPP;
1881}
1882EXPORT_SYMBOL(genphy_read_mmd_unsupported);
1883
1884int genphy_write_mmd_unsupported(struct phy_device *phdev, int devnum,
1885 u16 regnum, u16 val)
1886{
1887 return -EOPNOTSUPP;
1888}
1889EXPORT_SYMBOL(genphy_write_mmd_unsupported);
1890
Giuseppe Cavallaro0f0ca342008-11-28 16:24:56 -08001891int genphy_suspend(struct phy_device *phydev)
1892{
Heiner Kallweit032f4702018-01-12 21:20:36 +01001893 return phy_set_bits(phydev, MII_BMCR, BMCR_PDOWN);
Giuseppe Cavallaro0f0ca342008-11-28 16:24:56 -08001894}
1895EXPORT_SYMBOL(genphy_suspend);
1896
1897int genphy_resume(struct phy_device *phydev)
1898{
Heiner Kallweit032f4702018-01-12 21:20:36 +01001899 return phy_clear_bits(phydev, MII_BMCR, BMCR_PDOWN);
Giuseppe Cavallaro0f0ca342008-11-28 16:24:56 -08001900}
1901EXPORT_SYMBOL(genphy_resume);
Andy Fleming00db8182005-07-30 19:31:23 -04001902
Lin Yun Shengf0f9b4e2017-06-30 17:44:15 +08001903int genphy_loopback(struct phy_device *phydev, bool enable)
1904{
Russell Kingf1028522018-01-05 16:07:10 +00001905 return phy_modify(phydev, MII_BMCR, BMCR_LOOPBACK,
Russell Kingfea23fb2018-01-02 10:58:58 +00001906 enable ? BMCR_LOOPBACK : 0);
Lin Yun Shengf0f9b4e2017-06-30 17:44:15 +08001907}
1908EXPORT_SYMBOL(genphy_loopback);
1909
Simon Hormanf3a6bd32015-09-30 15:15:52 +09001910static int __set_phy_supported(struct phy_device *phydev, u32 max_speed)
1911{
Simon Hormanf3a6bd32015-09-30 15:15:52 +09001912 switch (max_speed) {
Heiner Kallweit6915bf32018-12-03 08:04:57 +01001913 case SPEED_10:
1914 linkmode_clear_bit(ETHTOOL_LINK_MODE_100baseT_Half_BIT,
1915 phydev->supported);
1916 linkmode_clear_bit(ETHTOOL_LINK_MODE_100baseT_Full_BIT,
1917 phydev->supported);
Simon Hormanf3a6bd32015-09-30 15:15:52 +09001918 /* fall through */
1919 case SPEED_100:
Heiner Kallweit6915bf32018-12-03 08:04:57 +01001920 linkmode_clear_bit(ETHTOOL_LINK_MODE_1000baseT_Half_BIT,
1921 phydev->supported);
1922 linkmode_clear_bit(ETHTOOL_LINK_MODE_1000baseT_Full_BIT,
1923 phydev->supported);
1924 break;
1925 case SPEED_1000:
1926 break;
1927 default:
1928 return -ENOTSUPP;
Simon Hormanf3a6bd32015-09-30 15:15:52 +09001929 }
1930
1931 return 0;
1932}
1933
1934int phy_set_max_speed(struct phy_device *phydev, u32 max_speed)
1935{
1936 int err;
1937
1938 err = __set_phy_supported(phydev, max_speed);
1939 if (err)
1940 return err;
1941
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01001942 linkmode_copy(phydev->advertising, phydev->supported);
Simon Hormanf3a6bd32015-09-30 15:15:52 +09001943
1944 return 0;
1945}
1946EXPORT_SYMBOL(phy_set_max_speed);
1947
Andrew Lunn41124fa2018-09-12 01:53:14 +02001948/**
1949 * phy_remove_link_mode - Remove a supported link mode
1950 * @phydev: phy_device structure to remove link mode from
1951 * @link_mode: Link mode to be removed
1952 *
1953 * Description: Some MACs don't support all link modes which the PHY
1954 * does. e.g. a 1G MAC often does not support 1000Half. Add a helper
1955 * to remove a link mode.
1956 */
1957void phy_remove_link_mode(struct phy_device *phydev, u32 link_mode)
1958{
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01001959 linkmode_clear_bit(link_mode, phydev->supported);
1960 linkmode_copy(phydev->advertising, phydev->supported);
Andrew Lunn41124fa2018-09-12 01:53:14 +02001961}
1962EXPORT_SYMBOL(phy_remove_link_mode);
1963
Andrew Lunnaf8d9bb2018-09-12 01:53:15 +02001964/**
Andrew Lunnc306ad32018-09-12 01:53:16 +02001965 * phy_support_sym_pause - Enable support of symmetrical pause
1966 * @phydev: target phy_device struct
1967 *
1968 * Description: Called by the MAC to indicate is supports symmetrical
1969 * Pause, but not asym pause.
1970 */
1971void phy_support_sym_pause(struct phy_device *phydev)
1972{
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01001973 linkmode_clear_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, phydev->supported);
1974 linkmode_set_bit(ETHTOOL_LINK_MODE_Pause_BIT, phydev->supported);
1975 linkmode_copy(phydev->advertising, phydev->supported);
Andrew Lunnc306ad32018-09-12 01:53:16 +02001976}
1977EXPORT_SYMBOL(phy_support_sym_pause);
1978
1979/**
Andrew Lunnaf8d9bb2018-09-12 01:53:15 +02001980 * phy_support_asym_pause - Enable support of asym pause
1981 * @phydev: target phy_device struct
1982 *
1983 * Description: Called by the MAC to indicate is supports Asym Pause.
1984 */
1985void phy_support_asym_pause(struct phy_device *phydev)
1986{
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01001987 linkmode_set_bit(ETHTOOL_LINK_MODE_Pause_BIT, phydev->supported);
1988 linkmode_set_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, phydev->supported);
1989 linkmode_copy(phydev->advertising, phydev->supported);
Andrew Lunnaf8d9bb2018-09-12 01:53:15 +02001990}
1991EXPORT_SYMBOL(phy_support_asym_pause);
1992
Andrew Lunn70814e82018-09-12 01:53:17 +02001993/**
Andrew Lunn0c122402018-09-12 01:53:18 +02001994 * phy_set_sym_pause - Configure symmetric Pause
1995 * @phydev: target phy_device struct
1996 * @rx: Receiver Pause is supported
1997 * @tx: Transmit Pause is supported
1998 * @autoneg: Auto neg should be used
1999 *
2000 * Description: Configure advertised Pause support depending on if
2001 * receiver pause and pause auto neg is supported. Generally called
2002 * from the set_pauseparam .ndo.
2003 */
2004void phy_set_sym_pause(struct phy_device *phydev, bool rx, bool tx,
2005 bool autoneg)
2006{
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002007 linkmode_clear_bit(ETHTOOL_LINK_MODE_Pause_BIT, phydev->supported);
Andrew Lunn0c122402018-09-12 01:53:18 +02002008
2009 if (rx && tx && autoneg)
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002010 linkmode_set_bit(ETHTOOL_LINK_MODE_Pause_BIT,
2011 phydev->supported);
Andrew Lunn0c122402018-09-12 01:53:18 +02002012
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002013 linkmode_copy(phydev->advertising, phydev->supported);
Andrew Lunn0c122402018-09-12 01:53:18 +02002014}
2015EXPORT_SYMBOL(phy_set_sym_pause);
2016
2017/**
Andrew Lunn70814e82018-09-12 01:53:17 +02002018 * phy_set_asym_pause - Configure Pause and Asym Pause
2019 * @phydev: target phy_device struct
2020 * @rx: Receiver Pause is supported
2021 * @tx: Transmit Pause is supported
2022 *
2023 * Description: Configure advertised Pause support depending on if
2024 * transmit and receiver pause is supported. If there has been a
2025 * change in adverting, trigger a new autoneg. Generally called from
2026 * the set_pauseparam .ndo.
2027 */
2028void phy_set_asym_pause(struct phy_device *phydev, bool rx, bool tx)
2029{
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002030 __ETHTOOL_DECLARE_LINK_MODE_MASK(oldadv);
Andrew Lunn70814e82018-09-12 01:53:17 +02002031
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002032 linkmode_copy(oldadv, phydev->advertising);
Andrew Lunn70814e82018-09-12 01:53:17 +02002033
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002034 linkmode_clear_bit(ETHTOOL_LINK_MODE_Pause_BIT,
2035 phydev->advertising);
2036 linkmode_clear_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
2037 phydev->advertising);
Andrew Lunn70814e82018-09-12 01:53:17 +02002038
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002039 if (rx) {
2040 linkmode_set_bit(ETHTOOL_LINK_MODE_Pause_BIT,
2041 phydev->advertising);
2042 linkmode_set_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
2043 phydev->advertising);
Andrew Lunn70814e82018-09-12 01:53:17 +02002044 }
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002045
2046 if (tx)
2047 linkmode_change_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
2048 phydev->advertising);
2049
2050 if (!linkmode_equal(oldadv, phydev->advertising) &&
2051 phydev->autoneg)
2052 phy_start_aneg(phydev);
Andrew Lunn70814e82018-09-12 01:53:17 +02002053}
2054EXPORT_SYMBOL(phy_set_asym_pause);
2055
Andrew Lunn22b7d292018-09-12 01:53:19 +02002056/**
2057 * phy_validate_pause - Test if the PHY/MAC support the pause configuration
2058 * @phydev: phy_device struct
2059 * @pp: requested pause configuration
2060 *
2061 * Description: Test if the PHY/MAC combination supports the Pause
2062 * configuration the user is requesting. Returns True if it is
2063 * supported, false otherwise.
2064 */
2065bool phy_validate_pause(struct phy_device *phydev,
2066 struct ethtool_pauseparam *pp)
2067{
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002068 if (!linkmode_test_bit(ETHTOOL_LINK_MODE_Pause_BIT,
2069 phydev->supported) ||
2070 (!linkmode_test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
2071 phydev->supported) &&
Andrew Lunn22b7d292018-09-12 01:53:19 +02002072 pp->rx_pause != pp->tx_pause))
2073 return false;
2074 return true;
2075}
2076EXPORT_SYMBOL(phy_validate_pause);
2077
Sascha Hauerde906af2014-05-21 15:29:45 +02002078static void of_set_phy_supported(struct phy_device *phydev)
2079{
Andrew Lunne5a03bf2016-01-06 20:11:16 +01002080 struct device_node *node = phydev->mdio.dev.of_node;
Sascha Hauerde906af2014-05-21 15:29:45 +02002081 u32 max_speed;
2082
2083 if (!IS_ENABLED(CONFIG_OF_MDIO))
2084 return;
2085
2086 if (!node)
2087 return;
2088
Simon Hormanf3a6bd32015-09-30 15:15:52 +09002089 if (!of_property_read_u32(node, "max-speed", &max_speed))
2090 __set_phy_supported(phydev, max_speed);
Sascha Hauerde906af2014-05-21 15:29:45 +02002091}
2092
jbrunetd853d142016-11-28 10:46:46 +01002093static void of_set_phy_eee_broken(struct phy_device *phydev)
2094{
2095 struct device_node *node = phydev->mdio.dev.of_node;
jbrunet57f39862016-12-19 16:05:37 +01002096 u32 broken = 0;
jbrunetd853d142016-11-28 10:46:46 +01002097
2098 if (!IS_ENABLED(CONFIG_OF_MDIO))
2099 return;
2100
2101 if (!node)
2102 return;
2103
jbrunet57f39862016-12-19 16:05:37 +01002104 if (of_property_read_bool(node, "eee-broken-100tx"))
2105 broken |= MDIO_EEE_100TX;
2106 if (of_property_read_bool(node, "eee-broken-1000t"))
2107 broken |= MDIO_EEE_1000T;
2108 if (of_property_read_bool(node, "eee-broken-10gt"))
2109 broken |= MDIO_EEE_10GT;
2110 if (of_property_read_bool(node, "eee-broken-1000kx"))
2111 broken |= MDIO_EEE_1000KX;
2112 if (of_property_read_bool(node, "eee-broken-10gkx4"))
2113 broken |= MDIO_EEE_10GKX4;
2114 if (of_property_read_bool(node, "eee-broken-10gkr"))
2115 broken |= MDIO_EEE_10GKR;
2116
2117 phydev->eee_broken_modes = broken;
jbrunetd853d142016-11-28 10:46:46 +01002118}
2119
Heiner Kallweit0d2e7782018-11-09 18:16:28 +01002120static bool phy_drv_supports_irq(struct phy_driver *phydrv)
2121{
Heiner Kallweita21ff3c2018-11-12 21:16:06 +01002122 return phydrv->config_intr && phydrv->ack_interrupt;
Heiner Kallweit0d2e7782018-11-09 18:16:28 +01002123}
2124
Randy Dunlapb3df0da2007-03-06 02:41:48 -08002125/**
2126 * phy_probe - probe and init a PHY device
2127 * @dev: device to probe and init
Andy Fleming00db8182005-07-30 19:31:23 -04002128 *
Randy Dunlapb3df0da2007-03-06 02:41:48 -08002129 * Description: Take care of setting up the phy_device structure,
Andy Fleming00db8182005-07-30 19:31:23 -04002130 * set the state to READY (the driver's init function should
2131 * set it to STARTING if needed).
2132 */
2133static int phy_probe(struct device *dev)
2134{
Sergei Shtylyov553fe922014-01-05 03:23:19 +03002135 struct phy_device *phydev = to_phy_device(dev);
Andrew Lunne5a03bf2016-01-06 20:11:16 +01002136 struct device_driver *drv = phydev->mdio.dev.driver;
Sergei Shtylyov553fe922014-01-05 03:23:19 +03002137 struct phy_driver *phydrv = to_phy_driver(drv);
Andy Fleming00db8182005-07-30 19:31:23 -04002138 int err = 0;
2139
Andy Fleming00db8182005-07-30 19:31:23 -04002140 phydev->drv = phydrv;
2141
Florian Fainelli2c7b4922013-05-19 22:53:42 +00002142 /* Disable the interrupt if the PHY doesn't support it
2143 * but the interrupt is still a valid one
2144 */
Heiner Kallweit0d2e7782018-11-09 18:16:28 +01002145 if (!phy_drv_supports_irq(phydrv) && phy_interrupt_is_valid(phydev))
Andy Fleming00db8182005-07-30 19:31:23 -04002146 phydev->irq = PHY_POLL;
2147
Florian Fainelli4284b6a2013-05-23 01:11:12 +00002148 if (phydrv->flags & PHY_IS_INTERNAL)
2149 phydev->is_internal = true;
2150
Nate Case35b5f6b2008-01-29 10:05:09 -06002151 mutex_lock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -04002152
2153 /* Start out supporting everything. Eventually,
2154 * a controller will attach, and may modify one
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03002155 * or both of these values
2156 */
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002157 linkmode_copy(phydev->supported, phydrv->features);
Sascha Hauerde906af2014-05-21 15:29:45 +02002158 of_set_phy_supported(phydev);
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002159 linkmode_copy(phydev->advertising, phydev->supported);
Andy Fleming00db8182005-07-30 19:31:23 -04002160
jbrunetd853d142016-11-28 10:46:46 +01002161 /* Get the EEE modes we want to prohibit. We will ask
2162 * the PHY stop advertising these mode later on
2163 */
2164 of_set_phy_eee_broken(phydev);
2165
Timur Tabi529ed122016-12-07 13:20:51 -06002166 /* The Pause Frame bits indicate that the PHY can support passing
2167 * pause frames. During autonegotiation, the PHYs will determine if
2168 * they should allow pause frames to pass. The MAC driver should then
2169 * use that result to determine whether to enable flow control via
2170 * pause frames.
2171 *
2172 * Normally, PHY drivers should not set the Pause bits, and instead
2173 * allow phylib to do that. However, there may be some situations
2174 * (e.g. hardware erratum) where the driver wants to set only one
2175 * of these bits.
2176 */
Andrew Lunn719655a2018-09-29 23:04:16 +02002177 if (test_bit(ETHTOOL_LINK_MODE_Pause_BIT, phydrv->features) ||
2178 test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT, phydrv->features)) {
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002179 linkmode_clear_bit(ETHTOOL_LINK_MODE_Pause_BIT,
2180 phydev->supported);
2181 linkmode_clear_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
2182 phydev->supported);
Andrew Lunn719655a2018-09-29 23:04:16 +02002183 if (test_bit(ETHTOOL_LINK_MODE_Pause_BIT, phydrv->features))
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002184 linkmode_set_bit(ETHTOOL_LINK_MODE_Pause_BIT,
2185 phydev->supported);
Andrew Lunn719655a2018-09-29 23:04:16 +02002186 if (test_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
2187 phydrv->features))
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002188 linkmode_set_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
2189 phydev->supported);
Timur Tabi529ed122016-12-07 13:20:51 -06002190 } else {
Andrew Lunn3c1bcc82018-11-10 23:43:33 +01002191 linkmode_set_bit(ETHTOOL_LINK_MODE_Pause_BIT,
2192 phydev->supported);
2193 linkmode_set_bit(ETHTOOL_LINK_MODE_Asym_Pause_BIT,
2194 phydev->supported);
Timur Tabi529ed122016-12-07 13:20:51 -06002195 }
2196
Andy Fleming00db8182005-07-30 19:31:23 -04002197 /* Set the state to READY by default */
2198 phydev->state = PHY_READY;
2199
Sergei Shtylyovbafbdd52017-12-04 13:35:05 +01002200 if (phydev->drv->probe) {
2201 /* Deassert the reset signal */
2202 phy_device_reset(phydev, 0);
2203
Andy Fleming00db8182005-07-30 19:31:23 -04002204 err = phydev->drv->probe(phydev);
Sergei Shtylyovbafbdd52017-12-04 13:35:05 +01002205 if (err) {
2206 /* Assert the reset signal */
2207 phy_device_reset(phydev, 1);
2208 }
2209 }
Andy Fleming00db8182005-07-30 19:31:23 -04002210
Nate Case35b5f6b2008-01-29 10:05:09 -06002211 mutex_unlock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -04002212
Andy Fleming00db8182005-07-30 19:31:23 -04002213 return err;
2214}
2215
2216static int phy_remove(struct device *dev)
2217{
Sergei Shtylyov553fe922014-01-05 03:23:19 +03002218 struct phy_device *phydev = to_phy_device(dev);
Andy Fleming00db8182005-07-30 19:31:23 -04002219
Florian Fainelli7b9a88a2017-02-17 16:07:33 -08002220 cancel_delayed_work_sync(&phydev->state_queue);
2221
Nate Case35b5f6b2008-01-29 10:05:09 -06002222 mutex_lock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -04002223 phydev->state = PHY_DOWN;
Nate Case35b5f6b2008-01-29 10:05:09 -06002224 mutex_unlock(&phydev->lock);
Andy Fleming00db8182005-07-30 19:31:23 -04002225
Sergei Shtylyovbafbdd52017-12-04 13:35:05 +01002226 if (phydev->drv && phydev->drv->remove) {
Andy Fleming00db8182005-07-30 19:31:23 -04002227 phydev->drv->remove(phydev);
Sergei Shtylyovbafbdd52017-12-04 13:35:05 +01002228
2229 /* Assert the reset signal */
2230 phy_device_reset(phydev, 1);
2231 }
Andy Fleming00db8182005-07-30 19:31:23 -04002232 phydev->drv = NULL;
2233
2234 return 0;
2235}
2236
Randy Dunlapb3df0da2007-03-06 02:41:48 -08002237/**
2238 * phy_driver_register - register a phy_driver with the PHY layer
2239 * @new_driver: new phy_driver to register
Andrew Lunnbe01da72016-01-06 20:11:22 +01002240 * @owner: module owning this PHY
Randy Dunlapb3df0da2007-03-06 02:41:48 -08002241 */
Andrew Lunnbe01da72016-01-06 20:11:22 +01002242int phy_driver_register(struct phy_driver *new_driver, struct module *owner)
Andy Fleming00db8182005-07-30 19:31:23 -04002243{
2244 int retval;
2245
Andrew Lunna9049e02016-01-06 20:11:26 +01002246 new_driver->mdiodrv.flags |= MDIO_DEVICE_IS_PHY;
2247 new_driver->mdiodrv.driver.name = new_driver->name;
2248 new_driver->mdiodrv.driver.bus = &mdio_bus_type;
2249 new_driver->mdiodrv.driver.probe = phy_probe;
2250 new_driver->mdiodrv.driver.remove = phy_remove;
2251 new_driver->mdiodrv.driver.owner = owner;
Andy Fleming00db8182005-07-30 19:31:23 -04002252
Andrew Lunna9049e02016-01-06 20:11:26 +01002253 retval = driver_register(&new_driver->mdiodrv.driver);
Andy Fleming00db8182005-07-30 19:31:23 -04002254 if (retval) {
Joe Perches8d242482012-06-09 07:49:07 +00002255 pr_err("%s: Error %d in registering driver\n",
2256 new_driver->name, retval);
Andy Fleming00db8182005-07-30 19:31:23 -04002257
2258 return retval;
2259 }
2260
Olof Johanssonf2511f12007-11-04 16:09:23 -06002261 pr_debug("%s: Registered new driver\n", new_driver->name);
Andy Fleming00db8182005-07-30 19:31:23 -04002262
2263 return 0;
2264}
2265EXPORT_SYMBOL(phy_driver_register);
2266
Andrew Lunnbe01da72016-01-06 20:11:22 +01002267int phy_drivers_register(struct phy_driver *new_driver, int n,
2268 struct module *owner)
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +00002269{
2270 int i, ret = 0;
2271
2272 for (i = 0; i < n; i++) {
Andrew Lunnbe01da72016-01-06 20:11:22 +01002273 ret = phy_driver_register(new_driver + i, owner);
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +00002274 if (ret) {
2275 while (i-- > 0)
2276 phy_driver_unregister(new_driver + i);
2277 break;
2278 }
2279 }
2280 return ret;
2281}
2282EXPORT_SYMBOL(phy_drivers_register);
2283
Andy Fleming00db8182005-07-30 19:31:23 -04002284void phy_driver_unregister(struct phy_driver *drv)
2285{
Andrew Lunna9049e02016-01-06 20:11:26 +01002286 driver_unregister(&drv->mdiodrv.driver);
Andy Fleming00db8182005-07-30 19:31:23 -04002287}
2288EXPORT_SYMBOL(phy_driver_unregister);
2289
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +00002290void phy_drivers_unregister(struct phy_driver *drv, int n)
2291{
2292 int i;
Sergei Shtylyov2f53e902014-01-05 03:17:06 +03002293
2294 for (i = 0; i < n; i++)
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +00002295 phy_driver_unregister(drv + i);
Christian Hohnstaedtd5bf9072012-07-04 05:44:34 +00002296}
2297EXPORT_SYMBOL(phy_drivers_unregister);
2298
Russell King921690f2017-06-05 12:23:05 +01002299static struct phy_driver genphy_driver = {
Andy Fleminge1393452005-08-24 18:46:21 -05002300 .phy_id = 0xffffffff,
2301 .phy_id_mask = 0xffffffff,
2302 .name = "Generic PHY",
Florian Fainelli0878fff2017-03-05 12:34:49 -08002303 .soft_reset = genphy_no_soft_reset,
Andy Fleminge1393452005-08-24 18:46:21 -05002304 .config_init = genphy_config_init,
Andrew Lunn719655a2018-09-29 23:04:16 +02002305 .features = PHY_GBIT_ALL_PORTS_FEATURES,
Florian Fainelli76a423a2014-02-11 17:27:37 -08002306 .aneg_done = genphy_aneg_done,
Giuseppe Cavallaro0f0ca342008-11-28 16:24:56 -08002307 .suspend = genphy_suspend,
2308 .resume = genphy_resume,
Lin Yun Shengf0f9b4e2017-06-30 17:44:15 +08002309 .set_loopback = genphy_loopback,
Russell King921690f2017-06-05 12:23:05 +01002310};
Andy Fleming00db8182005-07-30 19:31:23 -04002311
Jeff Garzik67c4f3f2005-08-11 02:07:25 -04002312static int __init phy_init(void)
Andy Fleming00db8182005-07-30 19:31:23 -04002313{
Jeff Garzik67c4f3f2005-08-11 02:07:25 -04002314 int rc;
Jeff Garzik67c4f3f2005-08-11 02:07:25 -04002315
2316 rc = mdio_bus_init();
2317 if (rc)
Andy Fleminge1393452005-08-24 18:46:21 -05002318 return rc;
Jeff Garzik67c4f3f2005-08-11 02:07:25 -04002319
Andrew Lunn719655a2018-09-29 23:04:16 +02002320 features_init();
2321
Russell King921690f2017-06-05 12:23:05 +01002322 rc = phy_driver_register(&genphy_10g_driver, THIS_MODULE);
Andy Fleminge1393452005-08-24 18:46:21 -05002323 if (rc)
Russell King921690f2017-06-05 12:23:05 +01002324 goto err_10g;
2325
2326 rc = phy_driver_register(&genphy_driver, THIS_MODULE);
2327 if (rc) {
2328 phy_driver_unregister(&genphy_10g_driver);
2329err_10g:
Andy Fleminge1393452005-08-24 18:46:21 -05002330 mdio_bus_exit();
Russell King921690f2017-06-05 12:23:05 +01002331 }
Jeff Garzik67c4f3f2005-08-11 02:07:25 -04002332
Jeff Garzik67c4f3f2005-08-11 02:07:25 -04002333 return rc;
Andy Fleming00db8182005-07-30 19:31:23 -04002334}
2335
Jeff Garzik67c4f3f2005-08-11 02:07:25 -04002336static void __exit phy_exit(void)
Andy Fleming00db8182005-07-30 19:31:23 -04002337{
Russell King921690f2017-06-05 12:23:05 +01002338 phy_driver_unregister(&genphy_10g_driver);
2339 phy_driver_unregister(&genphy_driver);
Andy Fleminge1393452005-08-24 18:46:21 -05002340 mdio_bus_exit();
Andy Fleming00db8182005-07-30 19:31:23 -04002341}
2342
Andy Fleminge1393452005-08-24 18:46:21 -05002343subsys_initcall(phy_init);
Jeff Garzik67c4f3f2005-08-11 02:07:25 -04002344module_exit(phy_exit);