blob: fff1d669fcdc91f29edd1502778b7140e34c57f8 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Andy Fleming5f184712011-04-08 02:10:27 -05002/*
3 * Generic PHY Management code
4 *
Andy Fleming5f184712011-04-08 02:10:27 -05005 * Copyright 2011 Freescale Semiconductor, Inc.
6 * author Andy Fleming
7 *
8 * Based loosely off of Linux's PHY Lib
9 */
Andy Fleming5f184712011-04-08 02:10:27 -050010#include <common.h>
Simon Glass24b852a2015-11-08 23:47:45 -070011#include <console.h>
Simon Glassc74c8e62015-04-05 16:07:39 -060012#include <dm.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060013#include <log.h>
Andy Fleming5f184712011-04-08 02:10:27 -050014#include <malloc.h>
15#include <net.h>
16#include <command.h>
17#include <miiphy.h>
18#include <phy.h>
19#include <errno.h>
Simon Glass401d1c42020-10-30 21:38:53 -060020#include <asm/global_data.h>
Bin Meng676fbd32021-03-14 20:14:52 +080021#include <dm/of_extra.h>
Simon Glasscd93d622020-05-10 11:40:13 -060022#include <linux/bitops.h>
Simon Glassc05ed002020-05-10 11:40:11 -060023#include <linux/delay.h>
Troy Kisky1adb4062012-10-22 16:40:43 +000024#include <linux/err.h>
Shengzhou Liu597fe042014-04-11 16:14:17 +080025#include <linux/compiler.h>
Andy Fleming5f184712011-04-08 02:10:27 -050026
Michal Simekabbfcbe2015-05-13 13:40:40 +020027DECLARE_GLOBAL_DATA_PTR;
28
Andy Fleming5f184712011-04-08 02:10:27 -050029/* Generic PHY support and helper functions */
30
31/**
Mario Six8d631202018-01-15 11:08:27 +010032 * genphy_config_advert - sanitize and advertise auto-negotiation parameters
Andy Fleming5f184712011-04-08 02:10:27 -050033 * @phydev: target phy_device struct
34 *
35 * Description: Writes MII_ADVERTISE with the appropriate values,
36 * after sanitizing the values to make sure we only advertise
37 * what is supported. Returns < 0 on error, 0 if the PHY's advertisement
38 * hasn't changed, and > 0 if it has changed.
39 */
Kim Phillips960d70c2012-10-29 13:34:34 +000040static int genphy_config_advert(struct phy_device *phydev)
Andy Fleming5f184712011-04-08 02:10:27 -050041{
42 u32 advertise;
Florian Fainellibbdcaff2016-01-13 16:59:31 +030043 int oldadv, adv, bmsr;
Andy Fleming5f184712011-04-08 02:10:27 -050044 int err, changed = 0;
45
Florian Fainellibbdcaff2016-01-13 16:59:31 +030046 /* Only allow advertising what this PHY supports */
Andy Fleming5f184712011-04-08 02:10:27 -050047 phydev->advertising &= phydev->supported;
48 advertise = phydev->advertising;
49
50 /* Setup standard advertisement */
Florian Fainellibbdcaff2016-01-13 16:59:31 +030051 adv = phy_read(phydev, MDIO_DEVAD_NONE, MII_ADVERTISE);
52 oldadv = adv;
Andy Fleming5f184712011-04-08 02:10:27 -050053
54 if (adv < 0)
55 return adv;
56
57 adv &= ~(ADVERTISE_ALL | ADVERTISE_100BASE4 | ADVERTISE_PAUSE_CAP |
58 ADVERTISE_PAUSE_ASYM);
59 if (advertise & ADVERTISED_10baseT_Half)
60 adv |= ADVERTISE_10HALF;
61 if (advertise & ADVERTISED_10baseT_Full)
62 adv |= ADVERTISE_10FULL;
63 if (advertise & ADVERTISED_100baseT_Half)
64 adv |= ADVERTISE_100HALF;
65 if (advertise & ADVERTISED_100baseT_Full)
66 adv |= ADVERTISE_100FULL;
67 if (advertise & ADVERTISED_Pause)
68 adv |= ADVERTISE_PAUSE_CAP;
69 if (advertise & ADVERTISED_Asym_Pause)
70 adv |= ADVERTISE_PAUSE_ASYM;
Charles Coldwellde1d7862013-02-21 08:25:52 -050071 if (advertise & ADVERTISED_1000baseX_Half)
72 adv |= ADVERTISE_1000XHALF;
73 if (advertise & ADVERTISED_1000baseX_Full)
74 adv |= ADVERTISE_1000XFULL;
Andy Fleming5f184712011-04-08 02:10:27 -050075
76 if (adv != oldadv) {
77 err = phy_write(phydev, MDIO_DEVAD_NONE, MII_ADVERTISE, adv);
78
79 if (err < 0)
80 return err;
81 changed = 1;
82 }
83
Florian Fainellibbdcaff2016-01-13 16:59:31 +030084 bmsr = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMSR);
85 if (bmsr < 0)
86 return bmsr;
87
88 /* Per 802.3-2008, Section 22.2.4.2.16 Extended status all
89 * 1000Mbits/sec capable PHYs shall have the BMSR_ESTATEN bit set to a
90 * logical 1.
91 */
92 if (!(bmsr & BMSR_ESTATEN))
93 return changed;
94
Andy Fleming5f184712011-04-08 02:10:27 -050095 /* Configure gigabit if it's supported */
Florian Fainellibbdcaff2016-01-13 16:59:31 +030096 adv = phy_read(phydev, MDIO_DEVAD_NONE, MII_CTRL1000);
97 oldadv = adv;
98
99 if (adv < 0)
100 return adv;
101
102 adv &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
103
Andy Fleming5f184712011-04-08 02:10:27 -0500104 if (phydev->supported & (SUPPORTED_1000baseT_Half |
105 SUPPORTED_1000baseT_Full)) {
Andy Fleming5f184712011-04-08 02:10:27 -0500106 if (advertise & SUPPORTED_1000baseT_Half)
107 adv |= ADVERTISE_1000HALF;
108 if (advertise & SUPPORTED_1000baseT_Full)
109 adv |= ADVERTISE_1000FULL;
Andy Fleming5f184712011-04-08 02:10:27 -0500110 }
111
Florian Fainellibbdcaff2016-01-13 16:59:31 +0300112 if (adv != oldadv)
113 changed = 1;
114
115 err = phy_write(phydev, MDIO_DEVAD_NONE, MII_CTRL1000, adv);
116 if (err < 0)
117 return err;
118
Andy Fleming5f184712011-04-08 02:10:27 -0500119 return changed;
120}
121
Andy Fleming5f184712011-04-08 02:10:27 -0500122/**
123 * genphy_setup_forced - configures/forces speed/duplex from @phydev
124 * @phydev: target phy_device struct
125 *
126 * Description: Configures MII_BMCR to force speed/duplex
127 * to the values in phydev. Assumes that the values are valid.
128 */
Kim Phillips960d70c2012-10-29 13:34:34 +0000129static int genphy_setup_forced(struct phy_device *phydev)
Andy Fleming5f184712011-04-08 02:10:27 -0500130{
131 int err;
Alexandre Messier53b0c382016-01-22 14:16:15 -0500132 int ctl = BMCR_ANRESTART;
Andy Fleming5f184712011-04-08 02:10:27 -0500133
Mario Six8d631202018-01-15 11:08:27 +0100134 phydev->pause = 0;
135 phydev->asym_pause = 0;
Andy Fleming5f184712011-04-08 02:10:27 -0500136
Mario Six8d631202018-01-15 11:08:27 +0100137 if (phydev->speed == SPEED_1000)
Andy Fleming5f184712011-04-08 02:10:27 -0500138 ctl |= BMCR_SPEED1000;
Mario Six8d631202018-01-15 11:08:27 +0100139 else if (phydev->speed == SPEED_100)
Andy Fleming5f184712011-04-08 02:10:27 -0500140 ctl |= BMCR_SPEED100;
141
Mario Six8d631202018-01-15 11:08:27 +0100142 if (phydev->duplex == DUPLEX_FULL)
Andy Fleming5f184712011-04-08 02:10:27 -0500143 ctl |= BMCR_FULLDPLX;
144
145 err = phy_write(phydev, MDIO_DEVAD_NONE, MII_BMCR, ctl);
146
147 return err;
148}
149
Andy Fleming5f184712011-04-08 02:10:27 -0500150/**
151 * genphy_restart_aneg - Enable and Restart Autonegotiation
152 * @phydev: target phy_device struct
153 */
154int genphy_restart_aneg(struct phy_device *phydev)
155{
156 int ctl;
157
158 ctl = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMCR);
159
160 if (ctl < 0)
161 return ctl;
162
163 ctl |= (BMCR_ANENABLE | BMCR_ANRESTART);
164
165 /* Don't isolate the PHY if we're negotiating */
166 ctl &= ~(BMCR_ISOLATE);
167
168 ctl = phy_write(phydev, MDIO_DEVAD_NONE, MII_BMCR, ctl);
169
170 return ctl;
171}
172
Andy Fleming5f184712011-04-08 02:10:27 -0500173/**
174 * genphy_config_aneg - restart auto-negotiation or write BMCR
175 * @phydev: target phy_device struct
176 *
177 * Description: If auto-negotiation is enabled, we configure the
178 * advertising, and then restart auto-negotiation. If it is not
179 * enabled, then we write the BMCR.
180 */
181int genphy_config_aneg(struct phy_device *phydev)
182{
183 int result;
184
Mario Six8d631202018-01-15 11:08:27 +0100185 if (phydev->autoneg != AUTONEG_ENABLE)
Andy Fleming5f184712011-04-08 02:10:27 -0500186 return genphy_setup_forced(phydev);
187
188 result = genphy_config_advert(phydev);
189
190 if (result < 0) /* error */
191 return result;
192
193 if (result == 0) {
Mario Six8d631202018-01-15 11:08:27 +0100194 /*
195 * Advertisment hasn't changed, but maybe aneg was never on to
196 * begin with? Or maybe phy was isolated?
197 */
Andy Fleming5f184712011-04-08 02:10:27 -0500198 int ctl = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMCR);
199
200 if (ctl < 0)
201 return ctl;
202
203 if (!(ctl & BMCR_ANENABLE) || (ctl & BMCR_ISOLATE))
204 result = 1; /* do restart aneg */
205 }
206
Mario Six8d631202018-01-15 11:08:27 +0100207 /*
208 * Only restart aneg if we are advertising something different
209 * than we were before.
210 */
Andy Fleming5f184712011-04-08 02:10:27 -0500211 if (result > 0)
212 result = genphy_restart_aneg(phydev);
213
214 return result;
215}
216
217/**
218 * genphy_update_link - update link status in @phydev
219 * @phydev: target phy_device struct
220 *
221 * Description: Update the value in phydev->link to reflect the
222 * current link value. In order to do this, we need to read
223 * the status register twice, keeping the second value.
224 */
225int genphy_update_link(struct phy_device *phydev)
226{
227 unsigned int mii_reg;
228
229 /*
230 * Wait if the link is up, and autonegotiation is in progress
231 * (ie - we're capable and it's not done)
232 */
233 mii_reg = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMSR);
234
235 /*
236 * If we already saw the link up, and it hasn't gone down, then
237 * we don't need to wait for autoneg again
238 */
239 if (phydev->link && mii_reg & BMSR_LSTATUS)
240 return 0;
241
Alexandre Messier1f9e6722016-01-22 14:16:56 -0500242 if ((phydev->autoneg == AUTONEG_ENABLE) &&
243 !(mii_reg & BMSR_ANEGCOMPLETE)) {
Andy Fleming5f184712011-04-08 02:10:27 -0500244 int i = 0;
245
246 printf("%s Waiting for PHY auto negotiation to complete",
Mario Six8d631202018-01-15 11:08:27 +0100247 phydev->dev->name);
Andy Fleming5f184712011-04-08 02:10:27 -0500248 while (!(mii_reg & BMSR_ANEGCOMPLETE)) {
249 /*
250 * Timeout reached ?
251 */
Andre Przywaraa44ee242020-01-03 22:08:47 +0000252 if (i > (PHY_ANEG_TIMEOUT / 50)) {
Andy Fleming5f184712011-04-08 02:10:27 -0500253 printf(" TIMEOUT !\n");
254 phydev->link = 0;
Michal Simekef5e8212016-05-18 12:48:57 +0200255 return -ETIMEDOUT;
Andy Fleming5f184712011-04-08 02:10:27 -0500256 }
257
258 if (ctrlc()) {
259 puts("user interrupt!\n");
260 phydev->link = 0;
261 return -EINTR;
262 }
263
Stefan Roese27c3f702019-09-30 10:26:42 +0200264 if ((i++ % 10) == 0)
Andy Fleming5f184712011-04-08 02:10:27 -0500265 printf(".");
266
Andy Fleming5f184712011-04-08 02:10:27 -0500267 mii_reg = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMSR);
Stefan Roese27c3f702019-09-30 10:26:42 +0200268 mdelay(50); /* 50 ms */
Andy Fleming5f184712011-04-08 02:10:27 -0500269 }
270 printf(" done\n");
271 phydev->link = 1;
272 } else {
273 /* Read the link a second time to clear the latched state */
274 mii_reg = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMSR);
275
276 if (mii_reg & BMSR_LSTATUS)
277 phydev->link = 1;
278 else
279 phydev->link = 0;
280 }
281
282 return 0;
283}
284
285/*
286 * Generic function which updates the speed and duplex. If
287 * autonegotiation is enabled, it uses the AND of the link
288 * partner's advertised capabilities and our advertised
289 * capabilities. If autonegotiation is disabled, we use the
290 * appropriate bits in the control register.
291 *
292 * Stolen from Linux's mii.c and phy_device.c
293 */
Yegor Yefremove2043f52012-11-28 11:15:17 +0100294int genphy_parse_link(struct phy_device *phydev)
Andy Fleming5f184712011-04-08 02:10:27 -0500295{
296 int mii_reg = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMSR);
297
298 /* We're using autonegotiation */
Alexandre Messier1f9e6722016-01-22 14:16:56 -0500299 if (phydev->autoneg == AUTONEG_ENABLE) {
Andy Fleming5f184712011-04-08 02:10:27 -0500300 u32 lpa = 0;
Heiko Schocherf6d1f6e2013-07-23 15:32:36 +0200301 int gblpa = 0;
Charles Coldwellde1d7862013-02-21 08:25:52 -0500302 u32 estatus = 0;
Andy Fleming5f184712011-04-08 02:10:27 -0500303
304 /* Check for gigabit capability */
David Dueck3a530d12013-11-05 17:23:02 +0100305 if (phydev->supported & (SUPPORTED_1000baseT_Full |
306 SUPPORTED_1000baseT_Half)) {
Andy Fleming5f184712011-04-08 02:10:27 -0500307 /* We want a list of states supported by
308 * both PHYs in the link
309 */
310 gblpa = phy_read(phydev, MDIO_DEVAD_NONE, MII_STAT1000);
Heiko Schocherf6d1f6e2013-07-23 15:32:36 +0200311 if (gblpa < 0) {
Mario Six8d631202018-01-15 11:08:27 +0100312 debug("Could not read MII_STAT1000. ");
313 debug("Ignoring gigabit capability\n");
Heiko Schocherf6d1f6e2013-07-23 15:32:36 +0200314 gblpa = 0;
315 }
Andy Fleming5f184712011-04-08 02:10:27 -0500316 gblpa &= phy_read(phydev,
317 MDIO_DEVAD_NONE, MII_CTRL1000) << 2;
318 }
319
320 /* Set the baseline so we only have to set them
321 * if they're different
322 */
323 phydev->speed = SPEED_10;
324 phydev->duplex = DUPLEX_HALF;
325
326 /* Check the gigabit fields */
327 if (gblpa & (PHY_1000BTSR_1000FD | PHY_1000BTSR_1000HD)) {
328 phydev->speed = SPEED_1000;
329
330 if (gblpa & PHY_1000BTSR_1000FD)
331 phydev->duplex = DUPLEX_FULL;
332
333 /* We're done! */
334 return 0;
335 }
336
337 lpa = phy_read(phydev, MDIO_DEVAD_NONE, MII_ADVERTISE);
338 lpa &= phy_read(phydev, MDIO_DEVAD_NONE, MII_LPA);
339
Wolfgang Denk0dcfb0f2011-09-28 21:02:43 +0200340 if (lpa & (LPA_100FULL | LPA_100HALF)) {
Andy Fleming5f184712011-04-08 02:10:27 -0500341 phydev->speed = SPEED_100;
342
Wolfgang Denk0dcfb0f2011-09-28 21:02:43 +0200343 if (lpa & LPA_100FULL)
344 phydev->duplex = DUPLEX_FULL;
345
Mario Six8d631202018-01-15 11:08:27 +0100346 } else if (lpa & LPA_10FULL) {
Andy Fleming5f184712011-04-08 02:10:27 -0500347 phydev->duplex = DUPLEX_FULL;
Mario Six8d631202018-01-15 11:08:27 +0100348 }
Charles Coldwellde1d7862013-02-21 08:25:52 -0500349
Sascha Silbe9ba30f62013-07-19 12:25:10 +0200350 /*
351 * Extended status may indicate that the PHY supports
352 * 1000BASE-T/X even though the 1000BASE-T registers
353 * are missing. In this case we can't tell whether the
354 * peer also supports it, so we only check extended
355 * status if the 1000BASE-T registers are actually
356 * missing.
357 */
358 if ((mii_reg & BMSR_ESTATEN) && !(mii_reg & BMSR_ERCAP))
Charles Coldwellde1d7862013-02-21 08:25:52 -0500359 estatus = phy_read(phydev, MDIO_DEVAD_NONE,
360 MII_ESTATUS);
361
362 if (estatus & (ESTATUS_1000_XFULL | ESTATUS_1000_XHALF |
363 ESTATUS_1000_TFULL | ESTATUS_1000_THALF)) {
364 phydev->speed = SPEED_1000;
365 if (estatus & (ESTATUS_1000_XFULL | ESTATUS_1000_TFULL))
366 phydev->duplex = DUPLEX_FULL;
367 }
368
Andy Fleming5f184712011-04-08 02:10:27 -0500369 } else {
370 u32 bmcr = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMCR);
371
372 phydev->speed = SPEED_10;
373 phydev->duplex = DUPLEX_HALF;
374
375 if (bmcr & BMCR_FULLDPLX)
376 phydev->duplex = DUPLEX_FULL;
377
378 if (bmcr & BMCR_SPEED1000)
379 phydev->speed = SPEED_1000;
380 else if (bmcr & BMCR_SPEED100)
381 phydev->speed = SPEED_100;
382 }
383
384 return 0;
385}
386
387int genphy_config(struct phy_device *phydev)
388{
389 int val;
390 u32 features;
391
Andy Fleming5f184712011-04-08 02:10:27 -0500392 features = (SUPPORTED_TP | SUPPORTED_MII
393 | SUPPORTED_AUI | SUPPORTED_FIBRE |
394 SUPPORTED_BNC);
395
396 /* Do we support autonegotiation? */
397 val = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMSR);
398
399 if (val < 0)
400 return val;
401
402 if (val & BMSR_ANEGCAPABLE)
403 features |= SUPPORTED_Autoneg;
404
405 if (val & BMSR_100FULL)
406 features |= SUPPORTED_100baseT_Full;
407 if (val & BMSR_100HALF)
408 features |= SUPPORTED_100baseT_Half;
409 if (val & BMSR_10FULL)
410 features |= SUPPORTED_10baseT_Full;
411 if (val & BMSR_10HALF)
412 features |= SUPPORTED_10baseT_Half;
413
414 if (val & BMSR_ESTATEN) {
415 val = phy_read(phydev, MDIO_DEVAD_NONE, MII_ESTATUS);
416
417 if (val < 0)
418 return val;
419
420 if (val & ESTATUS_1000_TFULL)
421 features |= SUPPORTED_1000baseT_Full;
422 if (val & ESTATUS_1000_THALF)
423 features |= SUPPORTED_1000baseT_Half;
Charles Coldwellde1d7862013-02-21 08:25:52 -0500424 if (val & ESTATUS_1000_XFULL)
425 features |= SUPPORTED_1000baseX_Full;
426 if (val & ESTATUS_1000_XHALF)
Fabio Estevam9a5dad22013-07-19 10:01:34 -0300427 features |= SUPPORTED_1000baseX_Half;
Andy Fleming5f184712011-04-08 02:10:27 -0500428 }
429
Sascha Hauer44bc3172016-01-13 16:59:32 +0300430 phydev->supported &= features;
431 phydev->advertising &= features;
Andy Fleming5f184712011-04-08 02:10:27 -0500432
433 genphy_config_aneg(phydev);
434
435 return 0;
436}
437
438int genphy_startup(struct phy_device *phydev)
439{
Michal Simekb733c272016-05-18 12:46:12 +0200440 int ret;
Andy Fleming5f184712011-04-08 02:10:27 -0500441
Michal Simekb733c272016-05-18 12:46:12 +0200442 ret = genphy_update_link(phydev);
443 if (ret)
444 return ret;
445
446 return genphy_parse_link(phydev);
Andy Fleming5f184712011-04-08 02:10:27 -0500447}
448
449int genphy_shutdown(struct phy_device *phydev)
450{
451 return 0;
452}
453
454static struct phy_driver genphy_driver = {
455 .uid = 0xffffffff,
456 .mask = 0xffffffff,
457 .name = "Generic PHY",
Sascha Hauer44bc3172016-01-13 16:59:32 +0300458 .features = PHY_GBIT_FEATURES | SUPPORTED_MII |
459 SUPPORTED_AUI | SUPPORTED_FIBRE |
460 SUPPORTED_BNC,
Andy Fleming5f184712011-04-08 02:10:27 -0500461 .config = genphy_config,
462 .startup = genphy_startup,
463 .shutdown = genphy_shutdown,
464};
465
Vladimir Olteana17776b2021-09-18 14:55:24 +0300466static int genphy_init(void)
Siva Durga Prasad Paladugube495082019-03-15 17:46:47 +0530467{
468 return phy_register(&genphy_driver);
469}
470
Andy Fleming5f184712011-04-08 02:10:27 -0500471static LIST_HEAD(phy_drivers);
472
Marek Vasut9d5a38c2023-03-19 18:02:41 +0100473#ifdef CONFIG_NEEDS_MANUAL_RELOC
474static void phy_drv_reloc(struct phy_driver *drv)
475{
476 if (drv->probe)
477 drv->probe += gd->reloc_off;
478 if (drv->config)
479 drv->config += gd->reloc_off;
480 if (drv->startup)
481 drv->startup += gd->reloc_off;
482 if (drv->shutdown)
483 drv->shutdown += gd->reloc_off;
484 if (drv->readext)
485 drv->readext += gd->reloc_off;
486 if (drv->writeext)
487 drv->writeext += gd->reloc_off;
488 if (drv->read_mmd)
489 drv->read_mmd += gd->reloc_off;
490 if (drv->write_mmd)
491 drv->write_mmd += gd->reloc_off;
492}
493#endif
494
Andy Fleming5f184712011-04-08 02:10:27 -0500495int phy_init(void)
496{
Siva Durga Prasad Paladuguc689c482019-03-04 16:01:30 +0100497#ifdef CONFIG_NEEDS_MANUAL_RELOC
Marek Vasut7940a932023-03-19 18:02:42 +0100498 const int ll_n_ents = ll_entry_count(struct phy_driver, phy_driver);
499 struct phy_driver *drv, *ll_entry;
500
Siva Durga Prasad Paladuguc689c482019-03-04 16:01:30 +0100501 /*
502 * The pointers inside phy_drivers also needs to be updated incase of
503 * manual reloc, without which these points to some invalid
504 * pre reloc address and leads to invalid accesses, hangs.
505 */
506 struct list_head *head = &phy_drivers;
507
508 head->next = (void *)head->next + gd->reloc_off;
509 head->prev = (void *)head->prev + gd->reloc_off;
Marek Vasut7940a932023-03-19 18:02:42 +0100510
511 /* Perform manual relocation on linker list based PHY drivers */
512 ll_entry = ll_entry_start(struct phy_driver, phy_driver);
513 for (drv = ll_entry; drv != ll_entry + ll_n_ents; drv++)
514 phy_drv_reloc(drv);
Siva Durga Prasad Paladuguc689c482019-03-04 16:01:30 +0100515#endif
516
Siva Durga Prasad Paladugued6fad32016-02-05 13:22:10 +0530517#ifdef CONFIG_PHY_XILINX
518 phy_xilinx_init();
519#endif
Tim Harvey5e6c0692022-11-17 13:27:09 -0800520#ifdef CONFIG_PHY_XWAY
521 phy_xway_init();
522#endif
John Haechtena5fd13a2016-12-09 22:15:17 +0000523#ifdef CONFIG_PHY_MSCC
524 phy_mscc_init();
525#endif
Hannes Schmelzerdb40c1a2017-03-23 15:11:43 +0100526#ifdef CONFIG_PHY_FIXED
527 phy_fixed_init();
528#endif
Samuel Mendoza-Jonase2ffeaa2019-06-18 11:37:18 +1000529#ifdef CONFIG_PHY_NCSI
530 phy_ncsi_init();
531#endif
Siva Durga Prasad Paladuguf41e5882018-11-27 11:49:11 +0530532#ifdef CONFIG_PHY_XILINX_GMII2RGMII
533 phy_xilinx_gmii2rgmii_init();
534#endif
Siva Durga Prasad Paladugube495082019-03-15 17:46:47 +0530535 genphy_init();
536
Andy Fleming5f184712011-04-08 02:10:27 -0500537 return 0;
538}
539
540int phy_register(struct phy_driver *drv)
541{
542 INIT_LIST_HEAD(&drv->list);
543 list_add_tail(&drv->list, &phy_drivers);
544
Michal Simekabbfcbe2015-05-13 13:40:40 +0200545#ifdef CONFIG_NEEDS_MANUAL_RELOC
Marek Vasut9d5a38c2023-03-19 18:02:41 +0100546 phy_drv_reloc(drv);
Michal Simekabbfcbe2015-05-13 13:40:40 +0200547#endif
Andy Fleming5f184712011-04-08 02:10:27 -0500548 return 0;
549}
550
Alexey Brodkinb18acb02016-01-13 16:59:34 +0300551int phy_set_supported(struct phy_device *phydev, u32 max_speed)
552{
553 /* The default values for phydev->supported are provided by the PHY
554 * driver "features" member, we want to reset to sane defaults first
555 * before supporting higher speeds.
556 */
557 phydev->supported &= PHY_DEFAULT_FEATURES;
558
559 switch (max_speed) {
560 default:
561 return -ENOTSUPP;
562 case SPEED_1000:
563 phydev->supported |= PHY_1000BT_FEATURES;
564 /* fall through */
565 case SPEED_100:
566 phydev->supported |= PHY_100BT_FEATURES;
567 /* fall through */
568 case SPEED_10:
569 phydev->supported |= PHY_10BT_FEATURES;
570 }
571
572 return 0;
573}
574
Kim Phillips960d70c2012-10-29 13:34:34 +0000575static int phy_probe(struct phy_device *phydev)
Andy Fleming5f184712011-04-08 02:10:27 -0500576{
577 int err = 0;
578
Mario Six8d631202018-01-15 11:08:27 +0100579 phydev->advertising = phydev->drv->features;
580 phydev->supported = phydev->drv->features;
581
Andy Fleming5f184712011-04-08 02:10:27 -0500582 phydev->mmds = phydev->drv->mmds;
583
584 if (phydev->drv->probe)
585 err = phydev->drv->probe(phydev);
586
587 return err;
588}
589
Marek Behún79bef5f2022-04-07 00:33:06 +0200590static struct phy_driver *generic_for_phy(struct phy_device *phydev)
Andy Fleming5f184712011-04-08 02:10:27 -0500591{
592#ifdef CONFIG_PHYLIB_10G
Marek Behún79bef5f2022-04-07 00:33:06 +0200593 if (phydev->is_c45)
Andy Fleming5f184712011-04-08 02:10:27 -0500594 return &gen10g_driver;
595#endif
596
597 return &genphy_driver;
598}
599
Marek Behúne24b58f2022-04-07 00:33:08 +0200600static struct phy_driver *get_phy_driver(struct phy_device *phydev)
Andy Fleming5f184712011-04-08 02:10:27 -0500601{
Marek Vasut7940a932023-03-19 18:02:42 +0100602 const int ll_n_ents = ll_entry_count(struct phy_driver, phy_driver);
603 struct phy_driver *ll_entry;
Andy Fleming5f184712011-04-08 02:10:27 -0500604 struct list_head *entry;
605 int phy_id = phydev->phy_id;
606 struct phy_driver *drv = NULL;
607
608 list_for_each(entry, &phy_drivers) {
609 drv = list_entry(entry, struct phy_driver, list);
610 if ((drv->uid & drv->mask) == (phy_id & drv->mask))
611 return drv;
612 }
613
Marek Vasut7940a932023-03-19 18:02:42 +0100614 ll_entry = ll_entry_start(struct phy_driver, phy_driver);
615 for (drv = ll_entry; drv != ll_entry + ll_n_ents; drv++)
616 if ((drv->uid & drv->mask) == (phy_id & drv->mask))
617 return drv;
618
Andy Fleming5f184712011-04-08 02:10:27 -0500619 /* If we made it here, there's no driver for this PHY */
Marek Behún79bef5f2022-04-07 00:33:06 +0200620 return generic_for_phy(phydev);
Andy Fleming5f184712011-04-08 02:10:27 -0500621}
622
Michal Simek32491162022-02-23 15:45:41 +0100623struct phy_device *phy_device_create(struct mii_dev *bus, int addr,
Marek Behúne24b58f2022-04-07 00:33:08 +0200624 u32 phy_id, bool is_c45)
Andy Fleming5f184712011-04-08 02:10:27 -0500625{
626 struct phy_device *dev;
627
Mario Six8d631202018-01-15 11:08:27 +0100628 /*
629 * We allocate the device, and initialize the
630 * default values
631 */
Andy Fleming5f184712011-04-08 02:10:27 -0500632 dev = malloc(sizeof(*dev));
633 if (!dev) {
634 printf("Failed to allocate PHY device for %s:%d\n",
Vladimir Oltean15c49df2020-07-16 18:09:08 +0800635 bus ? bus->name : "(null bus)", addr);
Andy Fleming5f184712011-04-08 02:10:27 -0500636 return NULL;
637 }
638
639 memset(dev, 0, sizeof(*dev));
640
641 dev->duplex = -1;
Mugunthan V N26d3acd2015-09-03 15:50:21 +0530642 dev->link = 0;
Marek Behúne24b58f2022-04-07 00:33:08 +0200643 dev->interface = PHY_INTERFACE_MODE_NA;
Andy Fleming5f184712011-04-08 02:10:27 -0500644
Grygorii Strashkoeef0b8a2018-07-05 12:02:48 -0500645 dev->node = ofnode_null();
Grygorii Strashkoeef0b8a2018-07-05 12:02:48 -0500646
Andy Fleming5f184712011-04-08 02:10:27 -0500647 dev->autoneg = AUTONEG_ENABLE;
648
649 dev->addr = addr;
650 dev->phy_id = phy_id;
Pankaj Bansalb3eabd82018-11-16 06:26:18 +0000651 dev->is_c45 = is_c45;
Andy Fleming5f184712011-04-08 02:10:27 -0500652 dev->bus = bus;
653
Marek Behúne24b58f2022-04-07 00:33:08 +0200654 dev->drv = get_phy_driver(dev);
Andy Fleming5f184712011-04-08 02:10:27 -0500655
Siva Durga Prasad Paladugu05eb6a62019-03-04 16:02:11 +0100656 if (phy_probe(dev)) {
657 printf("%s, PHY probe failed\n", __func__);
658 return NULL;
659 }
Andy Fleming5f184712011-04-08 02:10:27 -0500660
Vladimir Oltean15c49df2020-07-16 18:09:08 +0800661 if (addr >= 0 && addr < PHY_MAX_ADDR && phy_id != PHY_FIXED_ID)
Michal Simek7b4ea2d2018-12-19 16:57:38 +0100662 bus->phymap[addr] = dev;
Andy Fleming5f184712011-04-08 02:10:27 -0500663
664 return dev;
665}
666
667/**
668 * get_phy_id - reads the specified addr for its ID.
669 * @bus: the target MII bus
670 * @addr: PHY address on the MII bus
671 * @phy_id: where to store the ID retrieved.
672 *
673 * Description: Reads the ID registers of the PHY at @addr on the
674 * @bus, stores it in @phy_id and returns zero on success.
675 */
Shengzhou Liu5707d5f2015-04-07 18:46:32 +0800676int __weak get_phy_id(struct mii_dev *bus, int addr, int devad, u32 *phy_id)
Andy Fleming5f184712011-04-08 02:10:27 -0500677{
678 int phy_reg;
679
Mario Six8d631202018-01-15 11:08:27 +0100680 /*
681 * Grab the bits from PHYIR1, and put them
682 * in the upper half
683 */
Andy Fleming5f184712011-04-08 02:10:27 -0500684 phy_reg = bus->read(bus, addr, devad, MII_PHYSID1);
685
686 if (phy_reg < 0)
687 return -EIO;
688
689 *phy_id = (phy_reg & 0xffff) << 16;
690
691 /* Grab the bits from PHYIR2, and put them in the lower half */
692 phy_reg = bus->read(bus, addr, devad, MII_PHYSID2);
693
694 if (phy_reg < 0)
695 return -EIO;
696
697 *phy_id |= (phy_reg & 0xffff);
698
699 return 0;
700}
701
Troy Kisky1adb4062012-10-22 16:40:43 +0000702static struct phy_device *create_phy_by_mask(struct mii_dev *bus,
Marek Behúne24b58f2022-04-07 00:33:08 +0200703 uint phy_mask, int devad)
Troy Kisky1adb4062012-10-22 16:40:43 +0000704{
705 u32 phy_id = 0xffffffff;
Pankaj Bansalb3eabd82018-11-16 06:26:18 +0000706 bool is_c45;
Mario Six8d631202018-01-15 11:08:27 +0100707
Troy Kisky1adb4062012-10-22 16:40:43 +0000708 while (phy_mask) {
709 int addr = ffs(phy_mask) - 1;
710 int r = get_phy_id(bus, addr, devad, &phy_id);
Alex Marginean3bf135b2019-07-05 12:28:55 +0300711
712 /*
713 * If the PHY ID is flat 0 we ignore it. There are C45 PHYs
714 * that return all 0s for C22 reads (like Aquantia AQR112) and
715 * there are C22 PHYs that return all 0s for C45 reads (like
716 * Atheros AR8035).
717 */
718 if (r == 0 && phy_id == 0)
719 goto next;
720
Troy Kisky1adb4062012-10-22 16:40:43 +0000721 /* If the PHY ID is mostly f's, we didn't find anything */
Pankaj Bansalb3eabd82018-11-16 06:26:18 +0000722 if (r == 0 && (phy_id & 0x1fffffff) != 0x1fffffff) {
723 is_c45 = (devad == MDIO_DEVAD_NONE) ? false : true;
Marek Behúne24b58f2022-04-07 00:33:08 +0200724 return phy_device_create(bus, addr, phy_id, is_c45);
Pankaj Bansalb3eabd82018-11-16 06:26:18 +0000725 }
Alex Marginean3bf135b2019-07-05 12:28:55 +0300726next:
Troy Kisky1adb4062012-10-22 16:40:43 +0000727 phy_mask &= ~(1 << addr);
728 }
729 return NULL;
730}
731
732static struct phy_device *search_for_existing_phy(struct mii_dev *bus,
Marek Behúne24b58f2022-04-07 00:33:08 +0200733 uint phy_mask)
Troy Kisky1adb4062012-10-22 16:40:43 +0000734{
735 /* If we have one, return the existing device, with new interface */
736 while (phy_mask) {
737 int addr = ffs(phy_mask) - 1;
Mario Six8d631202018-01-15 11:08:27 +0100738
Marek Behúne24b58f2022-04-07 00:33:08 +0200739 if (bus->phymap[addr])
Troy Kisky1adb4062012-10-22 16:40:43 +0000740 return bus->phymap[addr];
Marek Behúne24b58f2022-04-07 00:33:08 +0200741
Troy Kisky1adb4062012-10-22 16:40:43 +0000742 phy_mask &= ~(1 << addr);
743 }
744 return NULL;
745}
746
747static struct phy_device *get_phy_device_by_mask(struct mii_dev *bus,
Marek Behúne24b58f2022-04-07 00:33:08 +0200748 uint phy_mask)
Troy Kisky1adb4062012-10-22 16:40:43 +0000749{
Troy Kisky1adb4062012-10-22 16:40:43 +0000750 struct phy_device *phydev;
Florin Chiculita9c6de502020-04-29 14:25:48 +0300751 int devad[] = {
752 /* Clause-22 */
753 MDIO_DEVAD_NONE,
754 /* Clause-45 */
755 MDIO_MMD_PMAPMD,
756 MDIO_MMD_WIS,
757 MDIO_MMD_PCS,
758 MDIO_MMD_PHYXS,
759 MDIO_MMD_VEND1,
760 };
761 int i, devad_cnt;
Troy Kisky1adb4062012-10-22 16:40:43 +0000762
Florin Chiculita9c6de502020-04-29 14:25:48 +0300763 devad_cnt = sizeof(devad)/sizeof(int);
Marek Behúne24b58f2022-04-07 00:33:08 +0200764 phydev = search_for_existing_phy(bus, phy_mask);
Troy Kisky1adb4062012-10-22 16:40:43 +0000765 if (phydev)
766 return phydev;
Florin Chiculita9c6de502020-04-29 14:25:48 +0300767 /* try different access clauses */
768 for (i = 0; i < devad_cnt; i++) {
Marek Behúne24b58f2022-04-07 00:33:08 +0200769 phydev = create_phy_by_mask(bus, phy_mask, devad[i]);
Troy Kisky1adb4062012-10-22 16:40:43 +0000770 if (IS_ERR(phydev))
771 return NULL;
772 if (phydev)
773 return phydev;
774 }
Bin Meng3e1949d2015-10-07 21:19:30 -0700775
776 debug("\n%s PHY: ", bus->name);
777 while (phy_mask) {
778 int addr = ffs(phy_mask) - 1;
Mario Six8d631202018-01-15 11:08:27 +0100779
Bin Meng3e1949d2015-10-07 21:19:30 -0700780 debug("%d ", addr);
781 phy_mask &= ~(1 << addr);
782 }
783 debug("not found\n");
Bin Meng0132b9a2015-10-07 21:19:29 -0700784
785 return NULL;
Troy Kisky1adb4062012-10-22 16:40:43 +0000786}
787
Andy Fleming5f184712011-04-08 02:10:27 -0500788/**
Mario Six8d631202018-01-15 11:08:27 +0100789 * get_phy_device - reads the specified PHY device and returns its
790 * @phy_device struct
Andy Fleming5f184712011-04-08 02:10:27 -0500791 * @bus: the target MII bus
792 * @addr: PHY address on the MII bus
793 *
794 * Description: Reads the ID registers of the PHY at @addr on the
795 * @bus, then allocates and returns the phy_device to represent it.
796 */
Marek Behúne24b58f2022-04-07 00:33:08 +0200797static struct phy_device *get_phy_device(struct mii_dev *bus, int addr)
Andy Fleming5f184712011-04-08 02:10:27 -0500798{
Marek Behúne24b58f2022-04-07 00:33:08 +0200799 return get_phy_device_by_mask(bus, 1 << addr);
Andy Fleming5f184712011-04-08 02:10:27 -0500800}
801
802int phy_reset(struct phy_device *phydev)
803{
804 int reg;
805 int timeout = 500;
806 int devad = MDIO_DEVAD_NONE;
807
Shaohui Xieddcd1f32016-01-28 15:55:46 +0800808 if (phydev->flags & PHY_FLAG_BROKEN_RESET)
809 return 0;
810
Andy Fleming5f184712011-04-08 02:10:27 -0500811#ifdef CONFIG_PHYLIB_10G
812 /* If it's 10G, we need to issue reset through one of the MMDs */
Marek Behún79bef5f2022-04-07 00:33:06 +0200813 if (phydev->is_c45) {
Andy Fleming5f184712011-04-08 02:10:27 -0500814 if (!phydev->mmds)
815 gen10g_discover_mmds(phydev);
816
817 devad = ffs(phydev->mmds) - 1;
818 }
819#endif
820
Stefan Agnera0580522015-12-09 11:21:25 -0800821 if (phy_write(phydev, devad, MII_BMCR, BMCR_RESET) < 0) {
Andy Fleming5f184712011-04-08 02:10:27 -0500822 debug("PHY reset failed\n");
823 return -1;
824 }
825
Tom Rini16199a82022-03-18 08:38:26 -0400826#if CONFIG_PHY_RESET_DELAY > 0
Andy Fleming5f184712011-04-08 02:10:27 -0500827 udelay(CONFIG_PHY_RESET_DELAY); /* Intel LXT971A needs this */
828#endif
829 /*
830 * Poll the control register for the reset bit to go to 0 (it is
831 * auto-clearing). This should happen within 0.5 seconds per the
832 * IEEE spec.
833 */
Stefan Agnera0580522015-12-09 11:21:25 -0800834 reg = phy_read(phydev, devad, MII_BMCR);
Andy Fleming5f184712011-04-08 02:10:27 -0500835 while ((reg & BMCR_RESET) && timeout--) {
836 reg = phy_read(phydev, devad, MII_BMCR);
837
838 if (reg < 0) {
839 debug("PHY status read failed\n");
840 return -1;
841 }
842 udelay(1000);
843 }
844
845 if (reg & BMCR_RESET) {
846 puts("PHY reset timed out\n");
847 return -1;
848 }
849
850 return 0;
851}
852
853int miiphy_reset(const char *devname, unsigned char addr)
854{
855 struct mii_dev *bus = miiphy_get_dev_by_name(devname);
856 struct phy_device *phydev;
857
Marek Behúne24b58f2022-04-07 00:33:08 +0200858 phydev = get_phy_device(bus, addr);
Andy Fleming5f184712011-04-08 02:10:27 -0500859
860 return phy_reset(phydev);
861}
862
Marek Behúne24b58f2022-04-07 00:33:08 +0200863struct phy_device *phy_find_by_mask(struct mii_dev *bus, uint phy_mask)
Andy Fleming5f184712011-04-08 02:10:27 -0500864{
Andy Fleming5f184712011-04-08 02:10:27 -0500865 /* Reset the bus */
Jörg Krause59370f32015-07-15 15:18:22 +0200866 if (bus->reset) {
Vladimir Zapolskiye3a77212011-09-05 07:24:07 +0000867 bus->reset(bus);
Andy Fleming5f184712011-04-08 02:10:27 -0500868
Jörg Krause59370f32015-07-15 15:18:22 +0200869 /* Wait 15ms to make sure the PHY has come out of hard reset */
Mario Six8d631202018-01-15 11:08:27 +0100870 mdelay(15);
Jörg Krause59370f32015-07-15 15:18:22 +0200871 }
872
Marek Behúne24b58f2022-04-07 00:33:08 +0200873 return get_phy_device_by_mask(bus, phy_mask);
Troy Kisky1adb4062012-10-22 16:40:43 +0000874}
Andy Fleming5f184712011-04-08 02:10:27 -0500875
Marek Behúne24b58f2022-04-07 00:33:08 +0200876void phy_connect_dev(struct phy_device *phydev, struct udevice *dev,
877 phy_interface_t interface)
Troy Kisky1adb4062012-10-22 16:40:43 +0000878{
Andy Fleming5f184712011-04-08 02:10:27 -0500879 /* Soft Reset the PHY */
880 phy_reset(phydev);
Bin Meng17ecfa92015-10-07 21:19:31 -0700881 if (phydev->dev && phydev->dev != dev) {
Andy Fleming5f184712011-04-08 02:10:27 -0500882 printf("%s:%d is connected to %s. Reconnecting to %s\n",
Mario Six8d631202018-01-15 11:08:27 +0100883 phydev->bus->name, phydev->addr,
884 phydev->dev->name, dev->name);
Troy Kisky1adb4062012-10-22 16:40:43 +0000885 }
Andy Fleming5f184712011-04-08 02:10:27 -0500886 phydev->dev = dev;
Marek Behúne24b58f2022-04-07 00:33:08 +0200887 phydev->interface = interface;
888 debug("%s connected to %s mode %s\n", dev->name, phydev->drv->name,
889 phy_string_for_interface(interface));
Troy Kisky1adb4062012-10-22 16:40:43 +0000890}
Andy Fleming5f184712011-04-08 02:10:27 -0500891
Siva Durga Prasad Paladuguf41e5882018-11-27 11:49:11 +0530892#ifdef CONFIG_PHY_XILINX_GMII2RGMII
Siva Durga Prasad Paladuguf41e5882018-11-27 11:49:11 +0530893static struct phy_device *phy_connect_gmii2rgmii(struct mii_dev *bus,
Marek Behúne24b58f2022-04-07 00:33:08 +0200894 struct udevice *dev)
Siva Durga Prasad Paladuguf41e5882018-11-27 11:49:11 +0530895{
896 struct phy_device *phydev = NULL;
Michal Simek0a9f0e02021-04-26 14:26:48 +0200897 ofnode node;
Siva Durga Prasad Paladuguf41e5882018-11-27 11:49:11 +0530898
Michal Simek0a9f0e02021-04-26 14:26:48 +0200899 ofnode_for_each_subnode(node, dev_ofnode(dev)) {
Bin Meng6c993812021-03-14 20:14:50 +0800900 node = ofnode_by_compatible(node, "xlnx,gmii-to-rgmii-1.0");
901 if (ofnode_valid(node)) {
902 phydev = phy_device_create(bus, 0,
Marek Behúne24b58f2022-04-07 00:33:08 +0200903 PHY_GMII2RGMII_ID, false);
Bin Meng6c993812021-03-14 20:14:50 +0800904 if (phydev)
905 phydev->node = node;
Siva Durga Prasad Paladuguf41e5882018-11-27 11:49:11 +0530906 break;
907 }
Bin Meng6c993812021-03-14 20:14:50 +0800908
909 node = ofnode_first_subnode(node);
Siva Durga Prasad Paladuguf41e5882018-11-27 11:49:11 +0530910 }
911
912 return phydev;
913}
914#endif
915
Siva Durga Prasad Paladuguc256d3f2018-11-27 11:49:10 +0530916#ifdef CONFIG_PHY_FIXED
Vladimir Olteand0781c92021-01-25 14:23:52 +0200917/**
918 * fixed_phy_create() - create an unconnected fixed-link pseudo-PHY device
919 * @node: OF node for the container of the fixed-link node
920 *
921 * Description: Creates a struct phy_device based on a fixed-link of_node
922 * description. Can be used without phy_connect by drivers which do not expose
923 * a UCLASS_ETH udevice.
924 */
925struct phy_device *fixed_phy_create(ofnode node)
926{
Vladimir Olteanf27bc8a2021-03-14 20:14:48 +0800927 struct phy_device *phydev;
Vladimir Olteand0781c92021-01-25 14:23:52 +0200928 ofnode subnode;
929
Vladimir Olteand0781c92021-01-25 14:23:52 +0200930 subnode = ofnode_find_subnode(node, "fixed-link");
931 if (!ofnode_valid(subnode)) {
932 return NULL;
933 }
934
Marek Behúne24b58f2022-04-07 00:33:08 +0200935 phydev = phy_device_create(NULL, 0, PHY_FIXED_ID, false);
Heinrich Schuchardtebb8ff62022-07-11 19:40:13 +0200936 if (phydev) {
Vladimir Olteanf27bc8a2021-03-14 20:14:48 +0800937 phydev->node = subnode;
Heinrich Schuchardtebb8ff62022-07-11 19:40:13 +0200938 phydev->interface = ofnode_read_phy_mode(node);
939 }
Marek Behúne24b58f2022-04-07 00:33:08 +0200940
Vladimir Olteanf27bc8a2021-03-14 20:14:48 +0800941 return phydev;
Vladimir Olteand0781c92021-01-25 14:23:52 +0200942}
943
Siva Durga Prasad Paladuguc256d3f2018-11-27 11:49:10 +0530944static struct phy_device *phy_connect_fixed(struct mii_dev *bus,
Marek Behúne24b58f2022-04-07 00:33:08 +0200945 struct udevice *dev)
Troy Kisky1adb4062012-10-22 16:40:43 +0000946{
Vladimir Olteanf27bc8a2021-03-14 20:14:48 +0800947 ofnode node = dev_ofnode(dev), subnode;
Bin Meng676fbd32021-03-14 20:14:52 +0800948 struct phy_device *phydev = NULL;
Mario Six8d631202018-01-15 11:08:27 +0100949
Bin Meng676fbd32021-03-14 20:14:52 +0800950 if (ofnode_phy_is_fixed_link(node, &subnode)) {
Marek Behúne24b58f2022-04-07 00:33:08 +0200951 phydev = phy_device_create(bus, 0, PHY_FIXED_ID, false);
Bin Meng676fbd32021-03-14 20:14:52 +0800952 if (phydev)
953 phydev->node = subnode;
954 }
Siva Durga Prasad Paladuguc256d3f2018-11-27 11:49:10 +0530955
956 return phydev;
957}
Hannes Schmelzerdb40c1a2017-03-23 15:11:43 +0100958#endif
Siva Durga Prasad Paladuguc256d3f2018-11-27 11:49:10 +0530959
Siva Durga Prasad Paladuguc256d3f2018-11-27 11:49:10 +0530960struct phy_device *phy_connect(struct mii_dev *bus, int addr,
961 struct udevice *dev,
962 phy_interface_t interface)
Siva Durga Prasad Paladuguc256d3f2018-11-27 11:49:10 +0530963{
964 struct phy_device *phydev = NULL;
Priyanka Jain1f607892019-11-05 04:05:11 +0000965 uint mask = (addr >= 0) ? (1 << addr) : 0xffffffff;
Siva Durga Prasad Paladuguc256d3f2018-11-27 11:49:10 +0530966
967#ifdef CONFIG_PHY_FIXED
Marek Behúne24b58f2022-04-07 00:33:08 +0200968 phydev = phy_connect_fixed(bus, dev);
Siva Durga Prasad Paladuguc256d3f2018-11-27 11:49:10 +0530969#endif
Samuel Mendoza-Jonase2ffeaa2019-06-18 11:37:18 +1000970
971#ifdef CONFIG_PHY_NCSI
Samuel Mendoza-Jonas09bd3d02022-08-08 21:46:03 +0930972 if (!phydev && interface == PHY_INTERFACE_MODE_NCSI)
Marek Behúne24b58f2022-04-07 00:33:08 +0200973 phydev = phy_device_create(bus, 0, PHY_NCSI_ID, false);
Samuel Mendoza-Jonase2ffeaa2019-06-18 11:37:18 +1000974#endif
975
Michal Simeka744a282022-02-23 15:45:42 +0100976#ifdef CONFIG_PHY_ETHERNET_ID
977 if (!phydev)
Tom Rini7f418ea2022-04-15 08:09:52 -0400978 phydev = phy_connect_phy_id(bus, dev, addr);
Michal Simeka744a282022-02-23 15:45:42 +0100979#endif
980
Siva Durga Prasad Paladuguf41e5882018-11-27 11:49:11 +0530981#ifdef CONFIG_PHY_XILINX_GMII2RGMII
982 if (!phydev)
Marek Behúne24b58f2022-04-07 00:33:08 +0200983 phydev = phy_connect_gmii2rgmii(bus, dev);
Siva Durga Prasad Paladuguf41e5882018-11-27 11:49:11 +0530984#endif
Siva Durga Prasad Paladuguc256d3f2018-11-27 11:49:10 +0530985
Mario Six8d631202018-01-15 11:08:27 +0100986 if (!phydev)
Marek Behúne24b58f2022-04-07 00:33:08 +0200987 phydev = phy_find_by_mask(bus, mask);
Troy Kisky1adb4062012-10-22 16:40:43 +0000988
Troy Kisky1adb4062012-10-22 16:40:43 +0000989 if (phydev)
Marek Behúne24b58f2022-04-07 00:33:08 +0200990 phy_connect_dev(phydev, dev, interface);
Troy Kisky1adb4062012-10-22 16:40:43 +0000991 else
992 printf("Could not get PHY for %s: addr %d\n", bus->name, addr);
Andy Fleming5f184712011-04-08 02:10:27 -0500993 return phydev;
994}
995
Timur Tabi6e5b9ac2012-07-05 10:33:18 +0000996/*
997 * Start the PHY. Returns 0 on success, or a negative error code.
998 */
Andy Fleming5f184712011-04-08 02:10:27 -0500999int phy_startup(struct phy_device *phydev)
1000{
1001 if (phydev->drv->startup)
Timur Tabi6e5b9ac2012-07-05 10:33:18 +00001002 return phydev->drv->startup(phydev);
Andy Fleming5f184712011-04-08 02:10:27 -05001003
1004 return 0;
1005}
1006
Jeroen Hofstee3c6928f2014-10-08 22:57:26 +02001007__weak int board_phy_config(struct phy_device *phydev)
Andy Fleming5f184712011-04-08 02:10:27 -05001008{
Troy Kisky9fafe7d2012-02-07 14:08:49 +00001009 if (phydev->drv->config)
1010 return phydev->drv->config(phydev);
Andy Fleming5f184712011-04-08 02:10:27 -05001011 return 0;
1012}
1013
Andy Fleming5f184712011-04-08 02:10:27 -05001014int phy_config(struct phy_device *phydev)
1015{
Andy Fleming5f184712011-04-08 02:10:27 -05001016 /* Invoke an optional board-specific helper */
Michal Simek7a673f02016-05-18 14:37:23 +02001017 return board_phy_config(phydev);
Andy Fleming5f184712011-04-08 02:10:27 -05001018}
1019
1020int phy_shutdown(struct phy_device *phydev)
1021{
1022 if (phydev->drv->shutdown)
1023 phydev->drv->shutdown(phydev);
1024
1025 return 0;
1026}
Simon Glassc74c8e62015-04-05 16:07:39 -06001027
Ariel D'Alessandro087baf82022-04-12 10:31:36 -03001028/**
1029 * phy_modify - Convenience function for modifying a given PHY register
1030 * @phydev: the phy_device struct
1031 * @devad: The MMD to read from
1032 * @regnum: register number to write
1033 * @mask: bit mask of bits to clear
1034 * @set: new value of bits set in mask to write to @regnum
1035 */
1036int phy_modify(struct phy_device *phydev, int devad, int regnum, u16 mask,
1037 u16 set)
1038{
1039 int ret;
1040
1041 ret = phy_read(phydev, devad, regnum);
1042 if (ret < 0)
1043 return ret;
1044
1045 return phy_write(phydev, devad, regnum, (ret & ~mask) | set);
1046}
Ramon Fried65f22662022-06-05 03:44:15 +03001047
1048/**
1049 * phy_read - Convenience function for reading a given PHY register
1050 * @phydev: the phy_device struct
1051 * @devad: The MMD to read from
1052 * @regnum: register number to read
1053 * @return: value for success or negative errno for failure
1054 */
1055int phy_read(struct phy_device *phydev, int devad, int regnum)
1056{
1057 struct mii_dev *bus = phydev->bus;
1058
1059 if (!bus || !bus->read) {
1060 debug("%s: No bus configured\n", __func__);
1061 return -1;
1062 }
1063
1064 return bus->read(bus, phydev->addr, devad, regnum);
1065}
1066
1067/**
1068 * phy_write - Convenience function for writing a given PHY register
1069 * @phydev: the phy_device struct
1070 * @devad: The MMD to read from
1071 * @regnum: register number to write
1072 * @val: value to write to @regnum
1073 * @return: 0 for success or negative errno for failure
1074 */
1075int phy_write(struct phy_device *phydev, int devad, int regnum, u16 val)
1076{
1077 struct mii_dev *bus = phydev->bus;
1078
1079 if (!bus || !bus->write) {
1080 debug("%s: No bus configured\n", __func__);
1081 return -1;
1082 }
1083
1084 return bus->write(bus, phydev->addr, devad, regnum, val);
1085}
1086
1087/**
1088 * phy_mmd_start_indirect - Convenience function for writing MMD registers
1089 * @phydev: the phy_device struct
1090 * @devad: The MMD to read from
1091 * @regnum: register number to write
1092 * @return: None
1093 */
1094void phy_mmd_start_indirect(struct phy_device *phydev, int devad, int regnum)
1095{
1096 /* Write the desired MMD Devad */
1097 phy_write(phydev, MDIO_DEVAD_NONE, MII_MMD_CTRL, devad);
1098
1099 /* Write the desired MMD register address */
1100 phy_write(phydev, MDIO_DEVAD_NONE, MII_MMD_DATA, regnum);
1101
1102 /* Select the Function : DATA with no post increment */
1103 phy_write(phydev, MDIO_DEVAD_NONE, MII_MMD_CTRL,
1104 (devad | MII_MMD_CTRL_NOINCR));
1105}
1106
1107/**
1108 * phy_read_mmd - Convenience function for reading a register
1109 * from an MMD on a given PHY.
1110 * @phydev: The phy_device struct
1111 * @devad: The MMD to read from
1112 * @regnum: The register on the MMD to read
1113 * @return: Value for success or negative errno for failure
1114 */
1115int phy_read_mmd(struct phy_device *phydev, int devad, int regnum)
1116{
1117 struct phy_driver *drv = phydev->drv;
1118
1119 if (regnum > (u16)~0 || devad > 32)
1120 return -EINVAL;
1121
1122 /* driver-specific access */
1123 if (drv->read_mmd)
1124 return drv->read_mmd(phydev, devad, regnum);
1125
1126 /* direct C45 / C22 access */
1127 if ((drv->features & PHY_10G_FEATURES) == PHY_10G_FEATURES ||
1128 devad == MDIO_DEVAD_NONE || !devad)
1129 return phy_read(phydev, devad, regnum);
1130
1131 /* indirect C22 access */
1132 phy_mmd_start_indirect(phydev, devad, regnum);
1133
1134 /* Read the content of the MMD's selected register */
1135 return phy_read(phydev, MDIO_DEVAD_NONE, MII_MMD_DATA);
1136}
1137
1138/**
1139 * phy_write_mmd - Convenience function for writing a register
1140 * on an MMD on a given PHY.
1141 * @phydev: The phy_device struct
1142 * @devad: The MMD to read from
1143 * @regnum: The register on the MMD to read
1144 * @val: value to write to @regnum
1145 * @return: 0 for success or negative errno for failure
1146 */
1147int phy_write_mmd(struct phy_device *phydev, int devad, int regnum, u16 val)
1148{
1149 struct phy_driver *drv = phydev->drv;
1150
1151 if (regnum > (u16)~0 || devad > 32)
1152 return -EINVAL;
1153
1154 /* driver-specific access */
1155 if (drv->write_mmd)
1156 return drv->write_mmd(phydev, devad, regnum, val);
1157
1158 /* direct C45 / C22 access */
1159 if ((drv->features & PHY_10G_FEATURES) == PHY_10G_FEATURES ||
1160 devad == MDIO_DEVAD_NONE || !devad)
1161 return phy_write(phydev, devad, regnum, val);
1162
1163 /* indirect C22 access */
1164 phy_mmd_start_indirect(phydev, devad, regnum);
1165
1166 /* Write the data into MMD's selected register */
1167 return phy_write(phydev, MDIO_DEVAD_NONE, MII_MMD_DATA, val);
1168}
1169
1170/**
1171 * phy_set_bits_mmd - Convenience function for setting bits in a register
1172 * on MMD
1173 * @phydev: the phy_device struct
1174 * @devad: the MMD containing register to modify
1175 * @regnum: register number to modify
1176 * @val: bits to set
1177 * @return: 0 for success or negative errno for failure
1178 */
1179int phy_set_bits_mmd(struct phy_device *phydev, int devad, u32 regnum, u16 val)
1180{
1181 int value, ret;
1182
1183 value = phy_read_mmd(phydev, devad, regnum);
1184 if (value < 0)
1185 return value;
1186
1187 value |= val;
1188
1189 ret = phy_write_mmd(phydev, devad, regnum, value);
1190 if (ret < 0)
1191 return ret;
1192
1193 return 0;
1194}
1195
1196/**
1197 * phy_clear_bits_mmd - Convenience function for clearing bits in a register
1198 * on MMD
1199 * @phydev: the phy_device struct
1200 * @devad: the MMD containing register to modify
1201 * @regnum: register number to modify
1202 * @val: bits to clear
1203 * @return: 0 for success or negative errno for failure
1204 */
1205int phy_clear_bits_mmd(struct phy_device *phydev, int devad, u32 regnum, u16 val)
1206{
1207 int value, ret;
1208
1209 value = phy_read_mmd(phydev, devad, regnum);
1210 if (value < 0)
1211 return value;
1212
1213 value &= ~val;
1214
1215 ret = phy_write_mmd(phydev, devad, regnum, value);
1216 if (ret < 0)
1217 return ret;
1218
1219 return 0;
1220}
Samuel Mendoza-Jonas09bd3d02022-08-08 21:46:03 +09301221
1222bool phy_interface_is_ncsi(void)
1223{
1224 struct eth_pdata *pdata = dev_get_plat(eth_get_dev());
1225
1226 return pdata->phy_interface == PHY_INTERFACE_MODE_NCSI;
1227}