blob: ed197fa46d737593cf65439a00873d30f9b3dc6e [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Andy Flemingaecf6fc2011-04-08 02:10:27 -05002/*
3 * Generic PHY Management code
4 *
Andy Flemingaecf6fc2011-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 Flemingaecf6fc2011-04-08 02:10:27 -050010#include <common.h>
Simon Glassa73bda42015-11-08 23:47:45 -070011#include <console.h>
Simon Glassdbad3462015-04-05 16:07:39 -060012#include <dm.h>
Simon Glass0f2af882020-05-10 11:40:05 -060013#include <log.h>
Andy Flemingaecf6fc2011-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 Glass3ba929a2020-10-30 21:38:53 -060020#include <asm/global_data.h>
Bin Mengb34ef722021-03-14 20:14:52 +080021#include <dm/of_extra.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060022#include <linux/bitops.h>
Simon Glassdbd79542020-05-10 11:40:11 -060023#include <linux/delay.h>
Troy Kisky9519bc52012-10-22 16:40:43 +000024#include <linux/err.h>
Shengzhou Liufcfc7862014-04-11 16:14:17 +080025#include <linux/compiler.h>
Andy Flemingaecf6fc2011-04-08 02:10:27 -050026
Michal Simek5f676312015-05-13 13:40:40 +020027DECLARE_GLOBAL_DATA_PTR;
28
Andy Flemingaecf6fc2011-04-08 02:10:27 -050029/* Generic PHY support and helper functions */
30
31/**
Mario Six77577432018-01-15 11:08:27 +010032 * genphy_config_advert - sanitize and advertise auto-negotiation parameters
Andy Flemingaecf6fc2011-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 Phillips914b0782012-10-29 13:34:34 +000040static int genphy_config_advert(struct phy_device *phydev)
Andy Flemingaecf6fc2011-04-08 02:10:27 -050041{
42 u32 advertise;
Florian Fainelli6c8be842016-01-13 16:59:31 +030043 int oldadv, adv, bmsr;
Andy Flemingaecf6fc2011-04-08 02:10:27 -050044 int err, changed = 0;
45
Florian Fainelli6c8be842016-01-13 16:59:31 +030046 /* Only allow advertising what this PHY supports */
Andy Flemingaecf6fc2011-04-08 02:10:27 -050047 phydev->advertising &= phydev->supported;
48 advertise = phydev->advertising;
49
50 /* Setup standard advertisement */
Florian Fainelli6c8be842016-01-13 16:59:31 +030051 adv = phy_read(phydev, MDIO_DEVAD_NONE, MII_ADVERTISE);
52 oldadv = adv;
Andy Flemingaecf6fc2011-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 Coldwell23329412013-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 Flemingaecf6fc2011-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 Fainelli6c8be842016-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 Flemingaecf6fc2011-04-08 02:10:27 -050095 /* Configure gigabit if it's supported */
Florian Fainelli6c8be842016-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;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500101
Florian Fainelli6c8be842016-01-13 16:59:31 +0300102 adv &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500103
Florian Fainelli6c8be842016-01-13 16:59:31 +0300104 if (phydev->supported & (SUPPORTED_1000baseT_Half |
105 SUPPORTED_1000baseT_Full)) {
Andy Flemingaecf6fc2011-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;
Florian Fainelli6c8be842016-01-13 16:59:31 +0300110 }
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500111
Florian Fainelli6c8be842016-01-13 16:59:31 +0300112 if (adv != oldadv)
113 changed = 1;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500114
Florian Fainelli6c8be842016-01-13 16:59:31 +0300115 err = phy_write(phydev, MDIO_DEVAD_NONE, MII_CTRL1000, adv);
116 if (err < 0)
117 return err;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500118
119 return changed;
120}
121
Andy Flemingaecf6fc2011-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 Phillips914b0782012-10-29 13:34:34 +0000129static int genphy_setup_forced(struct phy_device *phydev)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500130{
131 int err;
Alexandre Messier103a8c42016-01-22 14:16:15 -0500132 int ctl = BMCR_ANRESTART;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500133
Mario Six77577432018-01-15 11:08:27 +0100134 phydev->pause = 0;
135 phydev->asym_pause = 0;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500136
Mario Six77577432018-01-15 11:08:27 +0100137 if (phydev->speed == SPEED_1000)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500138 ctl |= BMCR_SPEED1000;
Mario Six77577432018-01-15 11:08:27 +0100139 else if (phydev->speed == SPEED_100)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500140 ctl |= BMCR_SPEED100;
141
Mario Six77577432018-01-15 11:08:27 +0100142 if (phydev->duplex == DUPLEX_FULL)
Andy Flemingaecf6fc2011-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 Flemingaecf6fc2011-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 Flemingaecf6fc2011-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 Six77577432018-01-15 11:08:27 +0100185 if (phydev->autoneg != AUTONEG_ENABLE)
Andy Flemingaecf6fc2011-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 Six77577432018-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 Flemingaecf6fc2011-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 Six77577432018-01-15 11:08:27 +0100207 /*
208 * Only restart aneg if we are advertising something different
209 * than we were before.
210 */
Andy Flemingaecf6fc2011-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 Messier010c5ec2016-01-22 14:16:56 -0500242 if ((phydev->autoneg == AUTONEG_ENABLE) &&
243 !(mii_reg & BMSR_ANEGCOMPLETE)) {
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500244 int i = 0;
245
246 printf("%s Waiting for PHY auto negotiation to complete",
Mario Six77577432018-01-15 11:08:27 +0100247 phydev->dev->name);
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500248 while (!(mii_reg & BMSR_ANEGCOMPLETE)) {
249 /*
250 * Timeout reached ?
251 */
Andre Przywara71a6a602020-01-03 22:08:47 +0000252 if (i > (PHY_ANEG_TIMEOUT / 50)) {
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500253 printf(" TIMEOUT !\n");
254 phydev->link = 0;
Michal Simekcf6677b2016-05-18 12:48:57 +0200255 return -ETIMEDOUT;
Andy Flemingaecf6fc2011-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 Roese5cf96d12019-09-30 10:26:42 +0200264 if ((i++ % 10) == 0)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500265 printf(".");
266
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500267 mii_reg = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMSR);
Stefan Roese5cf96d12019-09-30 10:26:42 +0200268 mdelay(50); /* 50 ms */
Andy Flemingaecf6fc2011-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 Yefremovc40f5d32012-11-28 11:15:17 +0100294int genphy_parse_link(struct phy_device *phydev)
Andy Flemingaecf6fc2011-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 Messier010c5ec2016-01-22 14:16:56 -0500299 if (phydev->autoneg == AUTONEG_ENABLE) {
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500300 u32 lpa = 0;
Heiko Schocher94c35022013-07-23 15:32:36 +0200301 int gblpa = 0;
Charles Coldwell23329412013-02-21 08:25:52 -0500302 u32 estatus = 0;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500303
304 /* Check for gigabit capability */
David Duecked454232013-11-05 17:23:02 +0100305 if (phydev->supported & (SUPPORTED_1000baseT_Full |
306 SUPPORTED_1000baseT_Half)) {
Andy Flemingaecf6fc2011-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 Schocher94c35022013-07-23 15:32:36 +0200311 if (gblpa < 0) {
Mario Six77577432018-01-15 11:08:27 +0100312 debug("Could not read MII_STAT1000. ");
313 debug("Ignoring gigabit capability\n");
Heiko Schocher94c35022013-07-23 15:32:36 +0200314 gblpa = 0;
315 }
Andy Flemingaecf6fc2011-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 Denka7b06ce2011-09-28 21:02:43 +0200340 if (lpa & (LPA_100FULL | LPA_100HALF)) {
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500341 phydev->speed = SPEED_100;
342
Wolfgang Denka7b06ce2011-09-28 21:02:43 +0200343 if (lpa & LPA_100FULL)
344 phydev->duplex = DUPLEX_FULL;
345
Mario Six77577432018-01-15 11:08:27 +0100346 } else if (lpa & LPA_10FULL) {
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500347 phydev->duplex = DUPLEX_FULL;
Mario Six77577432018-01-15 11:08:27 +0100348 }
Charles Coldwell23329412013-02-21 08:25:52 -0500349
Sascha Silbe2ac8d302013-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 Coldwell23329412013-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 Flemingaecf6fc2011-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 Flemingaecf6fc2011-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 Coldwell23329412013-02-21 08:25:52 -0500424 if (val & ESTATUS_1000_XFULL)
425 features |= SUPPORTED_1000baseX_Full;
426 if (val & ESTATUS_1000_XHALF)
Fabio Estevam45d601e2013-07-19 10:01:34 -0300427 features |= SUPPORTED_1000baseX_Half;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500428 }
429
Sascha Hauer6cc1e7d2016-01-13 16:59:32 +0300430 phydev->supported &= features;
431 phydev->advertising &= features;
Andy Flemingaecf6fc2011-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 Simek5ff89662016-05-18 12:46:12 +0200440 int ret;
441
442 ret = genphy_update_link(phydev);
443 if (ret)
444 return ret;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500445
Michal Simek5ff89662016-05-18 12:46:12 +0200446 return genphy_parse_link(phydev);
Andy Flemingaecf6fc2011-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 Hauer6cc1e7d2016-01-13 16:59:32 +0300458 .features = PHY_GBIT_FEATURES | SUPPORTED_MII |
459 SUPPORTED_AUI | SUPPORTED_FIBRE |
460 SUPPORTED_BNC,
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500461 .config = genphy_config,
462 .startup = genphy_startup,
463 .shutdown = genphy_shutdown,
464};
465
Siva Durga Prasad Paladugu1daad9e2019-03-15 17:46:47 +0530466int genphy_init(void)
467{
468 return phy_register(&genphy_driver);
469}
470
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500471static LIST_HEAD(phy_drivers);
472
473int phy_init(void)
474{
Siva Durga Prasad Paladuguf1137542019-03-04 16:01:30 +0100475#ifdef CONFIG_NEEDS_MANUAL_RELOC
476 /*
477 * The pointers inside phy_drivers also needs to be updated incase of
478 * manual reloc, without which these points to some invalid
479 * pre reloc address and leads to invalid accesses, hangs.
480 */
481 struct list_head *head = &phy_drivers;
482
483 head->next = (void *)head->next + gd->reloc_off;
484 head->prev = (void *)head->prev + gd->reloc_off;
485#endif
486
Florian Fainelli01b4ade2017-12-09 14:59:54 -0800487#ifdef CONFIG_B53_SWITCH
488 phy_b53_init();
489#endif
Kevin Smith87b2c4e2016-03-31 19:33:12 +0000490#ifdef CONFIG_MV88E61XX_SWITCH
491 phy_mv88e61xx_init();
492#endif
Shaohui Xie0e548d72014-12-30 18:32:04 +0800493#ifdef CONFIG_PHY_AQUANTIA
494 phy_aquantia_init();
495#endif
Andy Fleming60ca78b2011-04-07 21:56:05 -0500496#ifdef CONFIG_PHY_ATHEROS
497 phy_atheros_init();
498#endif
499#ifdef CONFIG_PHY_BROADCOM
500 phy_broadcom_init();
501#endif
Shengzhou Liuc878bdb2014-11-10 18:32:29 +0800502#ifdef CONFIG_PHY_CORTINA
503 phy_cortina_init();
504#endif
Abbie Chang556872f2021-01-14 13:34:12 -0800505#ifdef CONFIG_PHY_CORTINA_ACCESS
506 phy_cortina_access_init();
507#endif
Andy Fleming60ca78b2011-04-07 21:56:05 -0500508#ifdef CONFIG_PHY_DAVICOM
509 phy_davicom_init();
510#endif
Matt Porter3bbeb792013-03-20 05:38:13 +0000511#ifdef CONFIG_PHY_ET1011C
512 phy_et1011c_init();
513#endif
Andy Fleming60ca78b2011-04-07 21:56:05 -0500514#ifdef CONFIG_PHY_LXT
515 phy_lxt_init();
516#endif
517#ifdef CONFIG_PHY_MARVELL
518 phy_marvell_init();
519#endif
Alexandru Gagniuc757bb672017-07-07 11:36:57 -0700520#ifdef CONFIG_PHY_MICREL_KSZ8XXX
521 phy_micrel_ksz8xxx_init();
522#endif
523#ifdef CONFIG_PHY_MICREL_KSZ90X1
524 phy_micrel_ksz90x1_init();
Andy Fleming60ca78b2011-04-07 21:56:05 -0500525#endif
Neil Armstrong7a4c90d2017-10-18 10:02:10 +0200526#ifdef CONFIG_PHY_MESON_GXL
527 phy_meson_gxl_init();
528#endif
Andy Fleming60ca78b2011-04-07 21:56:05 -0500529#ifdef CONFIG_PHY_NATSEMI
530 phy_natsemi_init();
531#endif
532#ifdef CONFIG_PHY_REALTEK
533 phy_realtek_init();
534#endif
Nobuhiro Iwamatsu61134dc2011-11-23 21:24:15 +0000535#ifdef CONFIG_PHY_SMSC
536 phy_smsc_init();
537#endif
Andy Fleming60ca78b2011-04-07 21:56:05 -0500538#ifdef CONFIG_PHY_TERANETICS
539 phy_teranetics_init();
540#endif
Edgar E. Iglesias8d3ce682015-09-25 23:46:08 -0700541#ifdef CONFIG_PHY_TI
542 phy_ti_init();
543#endif
Andy Fleming60ca78b2011-04-07 21:56:05 -0500544#ifdef CONFIG_PHY_VITESSE
545 phy_vitesse_init();
546#endif
Siva Durga Prasad Paladugudd6cbd32016-02-05 13:22:10 +0530547#ifdef CONFIG_PHY_XILINX
548 phy_xilinx_init();
549#endif
John Haechtenee253f92016-12-09 22:15:17 +0000550#ifdef CONFIG_PHY_MSCC
551 phy_mscc_init();
552#endif
Hannes Schmelzerda494602017-03-23 15:11:43 +0100553#ifdef CONFIG_PHY_FIXED
554 phy_fixed_init();
555#endif
Samuel Mendoza-Jonasb069c4a2019-06-18 11:37:18 +1000556#ifdef CONFIG_PHY_NCSI
557 phy_ncsi_init();
558#endif
Siva Durga Prasad Paladugud5c4e1e2018-11-27 11:49:11 +0530559#ifdef CONFIG_PHY_XILINX_GMII2RGMII
560 phy_xilinx_gmii2rgmii_init();
561#endif
Siva Durga Prasad Paladugu1daad9e2019-03-15 17:46:47 +0530562 genphy_init();
563
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500564 return 0;
565}
566
567int phy_register(struct phy_driver *drv)
568{
569 INIT_LIST_HEAD(&drv->list);
570 list_add_tail(&drv->list, &phy_drivers);
571
Michal Simek5f676312015-05-13 13:40:40 +0200572#ifdef CONFIG_NEEDS_MANUAL_RELOC
573 if (drv->probe)
574 drv->probe += gd->reloc_off;
575 if (drv->config)
576 drv->config += gd->reloc_off;
577 if (drv->startup)
578 drv->startup += gd->reloc_off;
579 if (drv->shutdown)
580 drv->shutdown += gd->reloc_off;
581 if (drv->readext)
582 drv->readext += gd->reloc_off;
583 if (drv->writeext)
584 drv->writeext += gd->reloc_off;
Carlo Caione4de87e22019-02-08 17:25:06 +0000585 if (drv->read_mmd)
586 drv->read_mmd += gd->reloc_off;
587 if (drv->write_mmd)
588 drv->write_mmd += gd->reloc_off;
Michal Simek5f676312015-05-13 13:40:40 +0200589#endif
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500590 return 0;
591}
592
Alexey Brodkine476bb22016-01-13 16:59:34 +0300593int phy_set_supported(struct phy_device *phydev, u32 max_speed)
594{
595 /* The default values for phydev->supported are provided by the PHY
596 * driver "features" member, we want to reset to sane defaults first
597 * before supporting higher speeds.
598 */
599 phydev->supported &= PHY_DEFAULT_FEATURES;
600
601 switch (max_speed) {
602 default:
603 return -ENOTSUPP;
604 case SPEED_1000:
605 phydev->supported |= PHY_1000BT_FEATURES;
606 /* fall through */
607 case SPEED_100:
608 phydev->supported |= PHY_100BT_FEATURES;
609 /* fall through */
610 case SPEED_10:
611 phydev->supported |= PHY_10BT_FEATURES;
612 }
613
614 return 0;
615}
616
Kim Phillips914b0782012-10-29 13:34:34 +0000617static int phy_probe(struct phy_device *phydev)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500618{
619 int err = 0;
620
Mario Six77577432018-01-15 11:08:27 +0100621 phydev->advertising = phydev->drv->features;
622 phydev->supported = phydev->drv->features;
623
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500624 phydev->mmds = phydev->drv->mmds;
625
626 if (phydev->drv->probe)
627 err = phydev->drv->probe(phydev);
628
629 return err;
630}
631
632static struct phy_driver *generic_for_interface(phy_interface_t interface)
633{
634#ifdef CONFIG_PHYLIB_10G
635 if (is_10g_interface(interface))
636 return &gen10g_driver;
637#endif
638
639 return &genphy_driver;
640}
641
Kim Phillips914b0782012-10-29 13:34:34 +0000642static struct phy_driver *get_phy_driver(struct phy_device *phydev,
Mario Six77577432018-01-15 11:08:27 +0100643 phy_interface_t interface)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500644{
645 struct list_head *entry;
646 int phy_id = phydev->phy_id;
647 struct phy_driver *drv = NULL;
648
649 list_for_each(entry, &phy_drivers) {
650 drv = list_entry(entry, struct phy_driver, list);
651 if ((drv->uid & drv->mask) == (phy_id & drv->mask))
652 return drv;
653 }
654
655 /* If we made it here, there's no driver for this PHY */
656 return generic_for_interface(interface);
657}
658
Kim Phillips914b0782012-10-29 13:34:34 +0000659static struct phy_device *phy_device_create(struct mii_dev *bus, int addr,
Pankaj Bansal3c43a482018-11-16 06:26:18 +0000660 u32 phy_id, bool is_c45,
Kim Phillips914b0782012-10-29 13:34:34 +0000661 phy_interface_t interface)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500662{
663 struct phy_device *dev;
664
Mario Six77577432018-01-15 11:08:27 +0100665 /*
666 * We allocate the device, and initialize the
667 * default values
668 */
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500669 dev = malloc(sizeof(*dev));
670 if (!dev) {
671 printf("Failed to allocate PHY device for %s:%d\n",
Vladimir Olteanfb73b122020-07-16 18:09:08 +0800672 bus ? bus->name : "(null bus)", addr);
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500673 return NULL;
674 }
675
676 memset(dev, 0, sizeof(*dev));
677
678 dev->duplex = -1;
Mugunthan V Nbbc97ba2015-09-03 15:50:21 +0530679 dev->link = 0;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500680 dev->interface = interface;
681
Grygorii Strashko6189c062018-07-05 12:02:48 -0500682#ifdef CONFIG_DM_ETH
683 dev->node = ofnode_null();
684#endif
685
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500686 dev->autoneg = AUTONEG_ENABLE;
687
688 dev->addr = addr;
689 dev->phy_id = phy_id;
Pankaj Bansal3c43a482018-11-16 06:26:18 +0000690 dev->is_c45 = is_c45;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500691 dev->bus = bus;
692
693 dev->drv = get_phy_driver(dev, interface);
694
Siva Durga Prasad Paladugua7228482019-03-04 16:02:11 +0100695 if (phy_probe(dev)) {
696 printf("%s, PHY probe failed\n", __func__);
697 return NULL;
698 }
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500699
Vladimir Olteanfb73b122020-07-16 18:09:08 +0800700 if (addr >= 0 && addr < PHY_MAX_ADDR && phy_id != PHY_FIXED_ID)
Michal Simek02a99d72018-12-19 16:57:38 +0100701 bus->phymap[addr] = dev;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500702
703 return dev;
704}
705
706/**
707 * get_phy_id - reads the specified addr for its ID.
708 * @bus: the target MII bus
709 * @addr: PHY address on the MII bus
710 * @phy_id: where to store the ID retrieved.
711 *
712 * Description: Reads the ID registers of the PHY at @addr on the
713 * @bus, stores it in @phy_id and returns zero on success.
714 */
Shengzhou Liu072b0fa2015-04-07 18:46:32 +0800715int __weak get_phy_id(struct mii_dev *bus, int addr, int devad, u32 *phy_id)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500716{
717 int phy_reg;
718
Mario Six77577432018-01-15 11:08:27 +0100719 /*
720 * Grab the bits from PHYIR1, and put them
721 * in the upper half
722 */
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500723 phy_reg = bus->read(bus, addr, devad, MII_PHYSID1);
724
725 if (phy_reg < 0)
726 return -EIO;
727
728 *phy_id = (phy_reg & 0xffff) << 16;
729
730 /* Grab the bits from PHYIR2, and put them in the lower half */
731 phy_reg = bus->read(bus, addr, devad, MII_PHYSID2);
732
733 if (phy_reg < 0)
734 return -EIO;
735
736 *phy_id |= (phy_reg & 0xffff);
737
738 return 0;
739}
740
Troy Kisky9519bc52012-10-22 16:40:43 +0000741static struct phy_device *create_phy_by_mask(struct mii_dev *bus,
Mario Six77577432018-01-15 11:08:27 +0100742 uint phy_mask, int devad,
743 phy_interface_t interface)
Troy Kisky9519bc52012-10-22 16:40:43 +0000744{
745 u32 phy_id = 0xffffffff;
Pankaj Bansal3c43a482018-11-16 06:26:18 +0000746 bool is_c45;
Mario Six77577432018-01-15 11:08:27 +0100747
Troy Kisky9519bc52012-10-22 16:40:43 +0000748 while (phy_mask) {
749 int addr = ffs(phy_mask) - 1;
750 int r = get_phy_id(bus, addr, devad, &phy_id);
Alex Marginean920fe672019-07-05 12:28:55 +0300751
752 /*
753 * If the PHY ID is flat 0 we ignore it. There are C45 PHYs
754 * that return all 0s for C22 reads (like Aquantia AQR112) and
755 * there are C22 PHYs that return all 0s for C45 reads (like
756 * Atheros AR8035).
757 */
758 if (r == 0 && phy_id == 0)
759 goto next;
760
Troy Kisky9519bc52012-10-22 16:40:43 +0000761 /* If the PHY ID is mostly f's, we didn't find anything */
Pankaj Bansal3c43a482018-11-16 06:26:18 +0000762 if (r == 0 && (phy_id & 0x1fffffff) != 0x1fffffff) {
763 is_c45 = (devad == MDIO_DEVAD_NONE) ? false : true;
764 return phy_device_create(bus, addr, phy_id, is_c45,
765 interface);
766 }
Alex Marginean920fe672019-07-05 12:28:55 +0300767next:
Troy Kisky9519bc52012-10-22 16:40:43 +0000768 phy_mask &= ~(1 << addr);
769 }
770 return NULL;
771}
772
773static struct phy_device *search_for_existing_phy(struct mii_dev *bus,
Mario Six77577432018-01-15 11:08:27 +0100774 uint phy_mask,
775 phy_interface_t interface)
Troy Kisky9519bc52012-10-22 16:40:43 +0000776{
777 /* If we have one, return the existing device, with new interface */
778 while (phy_mask) {
779 int addr = ffs(phy_mask) - 1;
Mario Six77577432018-01-15 11:08:27 +0100780
Troy Kisky9519bc52012-10-22 16:40:43 +0000781 if (bus->phymap[addr]) {
782 bus->phymap[addr]->interface = interface;
783 return bus->phymap[addr];
784 }
785 phy_mask &= ~(1 << addr);
786 }
787 return NULL;
788}
789
790static struct phy_device *get_phy_device_by_mask(struct mii_dev *bus,
Mario Six77577432018-01-15 11:08:27 +0100791 uint phy_mask,
792 phy_interface_t interface)
Troy Kisky9519bc52012-10-22 16:40:43 +0000793{
Troy Kisky9519bc52012-10-22 16:40:43 +0000794 struct phy_device *phydev;
Florin Chiculita0439bee2020-04-29 14:25:48 +0300795 int devad[] = {
796 /* Clause-22 */
797 MDIO_DEVAD_NONE,
798 /* Clause-45 */
799 MDIO_MMD_PMAPMD,
800 MDIO_MMD_WIS,
801 MDIO_MMD_PCS,
802 MDIO_MMD_PHYXS,
803 MDIO_MMD_VEND1,
804 };
805 int i, devad_cnt;
Troy Kisky9519bc52012-10-22 16:40:43 +0000806
Florin Chiculita0439bee2020-04-29 14:25:48 +0300807 devad_cnt = sizeof(devad)/sizeof(int);
Troy Kisky9519bc52012-10-22 16:40:43 +0000808 phydev = search_for_existing_phy(bus, phy_mask, interface);
809 if (phydev)
810 return phydev;
Florin Chiculita0439bee2020-04-29 14:25:48 +0300811 /* try different access clauses */
812 for (i = 0; i < devad_cnt; i++) {
Troy Kisky9519bc52012-10-22 16:40:43 +0000813 phydev = create_phy_by_mask(bus, phy_mask,
Florin Chiculita0439bee2020-04-29 14:25:48 +0300814 devad[i], interface);
Troy Kisky9519bc52012-10-22 16:40:43 +0000815 if (IS_ERR(phydev))
816 return NULL;
817 if (phydev)
818 return phydev;
819 }
Bin Meng59c6d892015-10-07 21:19:30 -0700820
821 debug("\n%s PHY: ", bus->name);
822 while (phy_mask) {
823 int addr = ffs(phy_mask) - 1;
Mario Six77577432018-01-15 11:08:27 +0100824
Bin Meng59c6d892015-10-07 21:19:30 -0700825 debug("%d ", addr);
826 phy_mask &= ~(1 << addr);
827 }
828 debug("not found\n");
Bin Meng0776c572015-10-07 21:19:29 -0700829
830 return NULL;
Troy Kisky9519bc52012-10-22 16:40:43 +0000831}
832
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500833/**
Mario Six77577432018-01-15 11:08:27 +0100834 * get_phy_device - reads the specified PHY device and returns its
835 * @phy_device struct
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500836 * @bus: the target MII bus
837 * @addr: PHY address on the MII bus
838 *
839 * Description: Reads the ID registers of the PHY at @addr on the
840 * @bus, then allocates and returns the phy_device to represent it.
841 */
Kim Phillips914b0782012-10-29 13:34:34 +0000842static struct phy_device *get_phy_device(struct mii_dev *bus, int addr,
843 phy_interface_t interface)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500844{
Troy Kisky9519bc52012-10-22 16:40:43 +0000845 return get_phy_device_by_mask(bus, 1 << addr, interface);
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500846}
847
848int phy_reset(struct phy_device *phydev)
849{
850 int reg;
851 int timeout = 500;
852 int devad = MDIO_DEVAD_NONE;
853
Shaohui Xie62a7b922016-01-28 15:55:46 +0800854 if (phydev->flags & PHY_FLAG_BROKEN_RESET)
855 return 0;
856
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500857#ifdef CONFIG_PHYLIB_10G
858 /* If it's 10G, we need to issue reset through one of the MMDs */
859 if (is_10g_interface(phydev->interface)) {
860 if (!phydev->mmds)
861 gen10g_discover_mmds(phydev);
862
863 devad = ffs(phydev->mmds) - 1;
864 }
865#endif
866
Stefan Agnere64013d2015-12-09 11:21:25 -0800867 if (phy_write(phydev, devad, MII_BMCR, BMCR_RESET) < 0) {
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500868 debug("PHY reset failed\n");
869 return -1;
870 }
871
872#ifdef CONFIG_PHY_RESET_DELAY
873 udelay(CONFIG_PHY_RESET_DELAY); /* Intel LXT971A needs this */
874#endif
875 /*
876 * Poll the control register for the reset bit to go to 0 (it is
877 * auto-clearing). This should happen within 0.5 seconds per the
878 * IEEE spec.
879 */
Stefan Agnere64013d2015-12-09 11:21:25 -0800880 reg = phy_read(phydev, devad, MII_BMCR);
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500881 while ((reg & BMCR_RESET) && timeout--) {
882 reg = phy_read(phydev, devad, MII_BMCR);
883
884 if (reg < 0) {
885 debug("PHY status read failed\n");
886 return -1;
887 }
888 udelay(1000);
889 }
890
891 if (reg & BMCR_RESET) {
892 puts("PHY reset timed out\n");
893 return -1;
894 }
895
896 return 0;
897}
898
899int miiphy_reset(const char *devname, unsigned char addr)
900{
901 struct mii_dev *bus = miiphy_get_dev_by_name(devname);
902 struct phy_device *phydev;
903
904 /*
905 * miiphy_reset was only used on standard PHYs, so we'll fake it here.
906 * If later code tries to connect with the right interface, this will
907 * be corrected by get_phy_device in phy_connect()
908 */
909 phydev = get_phy_device(bus, addr, PHY_INTERFACE_MODE_MII);
910
911 return phy_reset(phydev);
912}
913
Mario Six77577432018-01-15 11:08:27 +0100914struct phy_device *phy_find_by_mask(struct mii_dev *bus, uint phy_mask,
915 phy_interface_t interface)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500916{
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500917 /* Reset the bus */
Jörg Krause71b1d862015-07-15 15:18:22 +0200918 if (bus->reset) {
Vladimir Zapolskiy46f10bb2011-09-05 07:24:07 +0000919 bus->reset(bus);
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500920
Jörg Krause71b1d862015-07-15 15:18:22 +0200921 /* Wait 15ms to make sure the PHY has come out of hard reset */
Mario Six77577432018-01-15 11:08:27 +0100922 mdelay(15);
Jörg Krause71b1d862015-07-15 15:18:22 +0200923 }
924
Troy Kisky9519bc52012-10-22 16:40:43 +0000925 return get_phy_device_by_mask(bus, phy_mask, interface);
926}
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500927
Simon Glassdbad3462015-04-05 16:07:39 -0600928#ifdef CONFIG_DM_ETH
929void phy_connect_dev(struct phy_device *phydev, struct udevice *dev)
930#else
Troy Kisky9519bc52012-10-22 16:40:43 +0000931void phy_connect_dev(struct phy_device *phydev, struct eth_device *dev)
Simon Glassdbad3462015-04-05 16:07:39 -0600932#endif
Troy Kisky9519bc52012-10-22 16:40:43 +0000933{
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500934 /* Soft Reset the PHY */
935 phy_reset(phydev);
Bin Mengf87a15c2015-10-07 21:19:31 -0700936 if (phydev->dev && phydev->dev != dev) {
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500937 printf("%s:%d is connected to %s. Reconnecting to %s\n",
Mario Six77577432018-01-15 11:08:27 +0100938 phydev->bus->name, phydev->addr,
939 phydev->dev->name, dev->name);
Troy Kisky9519bc52012-10-22 16:40:43 +0000940 }
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500941 phydev->dev = dev;
Wolfgang Denka71ebc42011-07-24 21:39:10 +0000942 debug("%s connected to %s\n", dev->name, phydev->drv->name);
Troy Kisky9519bc52012-10-22 16:40:43 +0000943}
Siva Durga Prasad Paladugud5c4e1e2018-11-27 11:49:11 +0530944
945#ifdef CONFIG_PHY_XILINX_GMII2RGMII
Siva Durga Prasad Paladugud5c4e1e2018-11-27 11:49:11 +0530946static struct phy_device *phy_connect_gmii2rgmii(struct mii_dev *bus,
947 struct udevice *dev,
948 phy_interface_t interface)
Siva Durga Prasad Paladugud5c4e1e2018-11-27 11:49:11 +0530949{
950 struct phy_device *phydev = NULL;
Michal Simek77272032021-04-26 14:26:48 +0200951 ofnode node;
Siva Durga Prasad Paladugud5c4e1e2018-11-27 11:49:11 +0530952
Michal Simek77272032021-04-26 14:26:48 +0200953 ofnode_for_each_subnode(node, dev_ofnode(dev)) {
Bin Meng021e7e72021-03-14 20:14:50 +0800954 node = ofnode_by_compatible(node, "xlnx,gmii-to-rgmii-1.0");
955 if (ofnode_valid(node)) {
956 phydev = phy_device_create(bus, 0,
Siva Durga Prasad Paladugud5c4e1e2018-11-27 11:49:11 +0530957 PHY_GMII2RGMII_ID, false,
958 interface);
Bin Meng021e7e72021-03-14 20:14:50 +0800959 if (phydev)
960 phydev->node = node;
Siva Durga Prasad Paladugud5c4e1e2018-11-27 11:49:11 +0530961 break;
962 }
Bin Meng021e7e72021-03-14 20:14:50 +0800963
964 node = ofnode_first_subnode(node);
Siva Durga Prasad Paladugud5c4e1e2018-11-27 11:49:11 +0530965 }
966
967 return phydev;
968}
969#endif
Troy Kisky9519bc52012-10-22 16:40:43 +0000970
Siva Durga Prasad Paladugu03f937a2018-11-27 11:49:10 +0530971#ifdef CONFIG_PHY_FIXED
Vladimir Oltean8c089f72021-01-25 14:23:52 +0200972/**
973 * fixed_phy_create() - create an unconnected fixed-link pseudo-PHY device
974 * @node: OF node for the container of the fixed-link node
975 *
976 * Description: Creates a struct phy_device based on a fixed-link of_node
977 * description. Can be used without phy_connect by drivers which do not expose
978 * a UCLASS_ETH udevice.
979 */
980struct phy_device *fixed_phy_create(ofnode node)
981{
982 phy_interface_t interface = PHY_INTERFACE_MODE_NONE;
Vladimir Oltean6ca194a2021-03-14 20:14:48 +0800983 struct phy_device *phydev;
Vladimir Oltean8c089f72021-01-25 14:23:52 +0200984 const char *if_str;
985 ofnode subnode;
986
987 if_str = ofnode_read_string(node, "phy-mode");
988 if (!if_str) {
989 if_str = ofnode_read_string(node, "phy-interface-type");
990 }
991 if (if_str) {
992 interface = phy_get_interface_by_name(if_str);
993 }
994
995 subnode = ofnode_find_subnode(node, "fixed-link");
996 if (!ofnode_valid(subnode)) {
997 return NULL;
998 }
999
Vladimir Oltean6ca194a2021-03-14 20:14:48 +08001000 phydev = phy_device_create(NULL, 0, PHY_FIXED_ID, false, interface);
1001 if (phydev)
1002 phydev->node = subnode;
1003
1004 return phydev;
Vladimir Oltean8c089f72021-01-25 14:23:52 +02001005}
1006
Siva Durga Prasad Paladugu03f937a2018-11-27 11:49:10 +05301007static struct phy_device *phy_connect_fixed(struct mii_dev *bus,
1008 struct udevice *dev,
1009 phy_interface_t interface)
Troy Kisky9519bc52012-10-22 16:40:43 +00001010{
Vladimir Oltean6ca194a2021-03-14 20:14:48 +08001011 ofnode node = dev_ofnode(dev), subnode;
Bin Mengb34ef722021-03-14 20:14:52 +08001012 struct phy_device *phydev = NULL;
Vladimir Oltean6ca194a2021-03-14 20:14:48 +08001013
Bin Mengb34ef722021-03-14 20:14:52 +08001014 if (ofnode_phy_is_fixed_link(node, &subnode)) {
1015 phydev = phy_device_create(bus, 0, PHY_FIXED_ID,
1016 false, interface);
1017 if (phydev)
1018 phydev->node = subnode;
1019 }
Siva Durga Prasad Paladugu03f937a2018-11-27 11:49:10 +05301020
1021 return phydev;
1022}
Hannes Schmelzerda494602017-03-23 15:11:43 +01001023#endif
Siva Durga Prasad Paladugu03f937a2018-11-27 11:49:10 +05301024
1025#ifdef CONFIG_DM_ETH
1026struct phy_device *phy_connect(struct mii_dev *bus, int addr,
1027 struct udevice *dev,
1028 phy_interface_t interface)
1029#else
1030struct phy_device *phy_connect(struct mii_dev *bus, int addr,
1031 struct eth_device *dev,
1032 phy_interface_t interface)
1033#endif
1034{
1035 struct phy_device *phydev = NULL;
Priyanka Jain11691fd2019-11-05 04:05:11 +00001036 uint mask = (addr >= 0) ? (1 << addr) : 0xffffffff;
Siva Durga Prasad Paladugu03f937a2018-11-27 11:49:10 +05301037
1038#ifdef CONFIG_PHY_FIXED
1039 phydev = phy_connect_fixed(bus, dev, interface);
1040#endif
Samuel Mendoza-Jonasb069c4a2019-06-18 11:37:18 +10001041
1042#ifdef CONFIG_PHY_NCSI
1043 if (!phydev)
1044 phydev = phy_device_create(bus, 0, PHY_NCSI_ID, false, interface);
1045#endif
1046
Siva Durga Prasad Paladugud5c4e1e2018-11-27 11:49:11 +05301047#ifdef CONFIG_PHY_XILINX_GMII2RGMII
1048 if (!phydev)
1049 phydev = phy_connect_gmii2rgmii(bus, dev, interface);
1050#endif
Siva Durga Prasad Paladugu03f937a2018-11-27 11:49:10 +05301051
Mario Six77577432018-01-15 11:08:27 +01001052 if (!phydev)
Hannes Schmelzer02505e92019-03-29 09:54:05 +01001053 phydev = phy_find_by_mask(bus, mask, interface);
Andy Flemingaecf6fc2011-04-08 02:10:27 -05001054
Troy Kisky9519bc52012-10-22 16:40:43 +00001055 if (phydev)
1056 phy_connect_dev(phydev, dev);
1057 else
1058 printf("Could not get PHY for %s: addr %d\n", bus->name, addr);
Andy Flemingaecf6fc2011-04-08 02:10:27 -05001059 return phydev;
1060}
1061
Timur Tabi251180b2012-07-05 10:33:18 +00001062/*
1063 * Start the PHY. Returns 0 on success, or a negative error code.
1064 */
Andy Flemingaecf6fc2011-04-08 02:10:27 -05001065int phy_startup(struct phy_device *phydev)
1066{
1067 if (phydev->drv->startup)
Timur Tabi251180b2012-07-05 10:33:18 +00001068 return phydev->drv->startup(phydev);
Andy Flemingaecf6fc2011-04-08 02:10:27 -05001069
1070 return 0;
1071}
1072
Jeroen Hofsteee4f89472014-10-08 22:57:26 +02001073__weak int board_phy_config(struct phy_device *phydev)
Andy Flemingaecf6fc2011-04-08 02:10:27 -05001074{
Troy Kisky85846412012-02-07 14:08:49 +00001075 if (phydev->drv->config)
1076 return phydev->drv->config(phydev);
Andy Flemingaecf6fc2011-04-08 02:10:27 -05001077 return 0;
1078}
1079
Andy Flemingaecf6fc2011-04-08 02:10:27 -05001080int phy_config(struct phy_device *phydev)
1081{
Andy Flemingaecf6fc2011-04-08 02:10:27 -05001082 /* Invoke an optional board-specific helper */
Michal Simek24ce2322016-05-18 14:37:23 +02001083 return board_phy_config(phydev);
Andy Flemingaecf6fc2011-04-08 02:10:27 -05001084}
1085
1086int phy_shutdown(struct phy_device *phydev)
1087{
1088 if (phydev->drv->shutdown)
1089 phydev->drv->shutdown(phydev);
1090
1091 return 0;
1092}
Simon Glassdbad3462015-04-05 16:07:39 -06001093
1094int phy_get_interface_by_name(const char *str)
1095{
1096 int i;
1097
1098 for (i = 0; i < PHY_INTERFACE_MODE_COUNT; i++) {
1099 if (!strcmp(str, phy_interface_strings[i]))
1100 return i;
1101 }
1102
1103 return -1;
1104}