blob: 662ea2b98cc014f49adc293b39de8e3a1f2e370d [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 Glass4dcacfc2020-05-10 11:40:13 -060020#include <linux/bitops.h>
Simon Glassdbd79542020-05-10 11:40:11 -060021#include <linux/delay.h>
Troy Kisky9519bc52012-10-22 16:40:43 +000022#include <linux/err.h>
Shengzhou Liufcfc7862014-04-11 16:14:17 +080023#include <linux/compiler.h>
Andy Flemingaecf6fc2011-04-08 02:10:27 -050024
Michal Simek5f676312015-05-13 13:40:40 +020025DECLARE_GLOBAL_DATA_PTR;
26
Andy Flemingaecf6fc2011-04-08 02:10:27 -050027/* Generic PHY support and helper functions */
28
29/**
Mario Six77577432018-01-15 11:08:27 +010030 * genphy_config_advert - sanitize and advertise auto-negotiation parameters
Andy Flemingaecf6fc2011-04-08 02:10:27 -050031 * @phydev: target phy_device struct
32 *
33 * Description: Writes MII_ADVERTISE with the appropriate values,
34 * after sanitizing the values to make sure we only advertise
35 * what is supported. Returns < 0 on error, 0 if the PHY's advertisement
36 * hasn't changed, and > 0 if it has changed.
37 */
Kim Phillips914b0782012-10-29 13:34:34 +000038static int genphy_config_advert(struct phy_device *phydev)
Andy Flemingaecf6fc2011-04-08 02:10:27 -050039{
40 u32 advertise;
Florian Fainelli6c8be842016-01-13 16:59:31 +030041 int oldadv, adv, bmsr;
Andy Flemingaecf6fc2011-04-08 02:10:27 -050042 int err, changed = 0;
43
Florian Fainelli6c8be842016-01-13 16:59:31 +030044 /* Only allow advertising what this PHY supports */
Andy Flemingaecf6fc2011-04-08 02:10:27 -050045 phydev->advertising &= phydev->supported;
46 advertise = phydev->advertising;
47
48 /* Setup standard advertisement */
Florian Fainelli6c8be842016-01-13 16:59:31 +030049 adv = phy_read(phydev, MDIO_DEVAD_NONE, MII_ADVERTISE);
50 oldadv = adv;
Andy Flemingaecf6fc2011-04-08 02:10:27 -050051
52 if (adv < 0)
53 return adv;
54
55 adv &= ~(ADVERTISE_ALL | ADVERTISE_100BASE4 | ADVERTISE_PAUSE_CAP |
56 ADVERTISE_PAUSE_ASYM);
57 if (advertise & ADVERTISED_10baseT_Half)
58 adv |= ADVERTISE_10HALF;
59 if (advertise & ADVERTISED_10baseT_Full)
60 adv |= ADVERTISE_10FULL;
61 if (advertise & ADVERTISED_100baseT_Half)
62 adv |= ADVERTISE_100HALF;
63 if (advertise & ADVERTISED_100baseT_Full)
64 adv |= ADVERTISE_100FULL;
65 if (advertise & ADVERTISED_Pause)
66 adv |= ADVERTISE_PAUSE_CAP;
67 if (advertise & ADVERTISED_Asym_Pause)
68 adv |= ADVERTISE_PAUSE_ASYM;
Charles Coldwell23329412013-02-21 08:25:52 -050069 if (advertise & ADVERTISED_1000baseX_Half)
70 adv |= ADVERTISE_1000XHALF;
71 if (advertise & ADVERTISED_1000baseX_Full)
72 adv |= ADVERTISE_1000XFULL;
Andy Flemingaecf6fc2011-04-08 02:10:27 -050073
74 if (adv != oldadv) {
75 err = phy_write(phydev, MDIO_DEVAD_NONE, MII_ADVERTISE, adv);
76
77 if (err < 0)
78 return err;
79 changed = 1;
80 }
81
Florian Fainelli6c8be842016-01-13 16:59:31 +030082 bmsr = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMSR);
83 if (bmsr < 0)
84 return bmsr;
85
86 /* Per 802.3-2008, Section 22.2.4.2.16 Extended status all
87 * 1000Mbits/sec capable PHYs shall have the BMSR_ESTATEN bit set to a
88 * logical 1.
89 */
90 if (!(bmsr & BMSR_ESTATEN))
91 return changed;
92
Andy Flemingaecf6fc2011-04-08 02:10:27 -050093 /* Configure gigabit if it's supported */
Florian Fainelli6c8be842016-01-13 16:59:31 +030094 adv = phy_read(phydev, MDIO_DEVAD_NONE, MII_CTRL1000);
95 oldadv = adv;
96
97 if (adv < 0)
98 return adv;
Andy Flemingaecf6fc2011-04-08 02:10:27 -050099
Florian Fainelli6c8be842016-01-13 16:59:31 +0300100 adv &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500101
Florian Fainelli6c8be842016-01-13 16:59:31 +0300102 if (phydev->supported & (SUPPORTED_1000baseT_Half |
103 SUPPORTED_1000baseT_Full)) {
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500104 if (advertise & SUPPORTED_1000baseT_Half)
105 adv |= ADVERTISE_1000HALF;
106 if (advertise & SUPPORTED_1000baseT_Full)
107 adv |= ADVERTISE_1000FULL;
Florian Fainelli6c8be842016-01-13 16:59:31 +0300108 }
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500109
Florian Fainelli6c8be842016-01-13 16:59:31 +0300110 if (adv != oldadv)
111 changed = 1;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500112
Florian Fainelli6c8be842016-01-13 16:59:31 +0300113 err = phy_write(phydev, MDIO_DEVAD_NONE, MII_CTRL1000, adv);
114 if (err < 0)
115 return err;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500116
117 return changed;
118}
119
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500120/**
121 * genphy_setup_forced - configures/forces speed/duplex from @phydev
122 * @phydev: target phy_device struct
123 *
124 * Description: Configures MII_BMCR to force speed/duplex
125 * to the values in phydev. Assumes that the values are valid.
126 */
Kim Phillips914b0782012-10-29 13:34:34 +0000127static int genphy_setup_forced(struct phy_device *phydev)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500128{
129 int err;
Alexandre Messier103a8c42016-01-22 14:16:15 -0500130 int ctl = BMCR_ANRESTART;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500131
Mario Six77577432018-01-15 11:08:27 +0100132 phydev->pause = 0;
133 phydev->asym_pause = 0;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500134
Mario Six77577432018-01-15 11:08:27 +0100135 if (phydev->speed == SPEED_1000)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500136 ctl |= BMCR_SPEED1000;
Mario Six77577432018-01-15 11:08:27 +0100137 else if (phydev->speed == SPEED_100)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500138 ctl |= BMCR_SPEED100;
139
Mario Six77577432018-01-15 11:08:27 +0100140 if (phydev->duplex == DUPLEX_FULL)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500141 ctl |= BMCR_FULLDPLX;
142
143 err = phy_write(phydev, MDIO_DEVAD_NONE, MII_BMCR, ctl);
144
145 return err;
146}
147
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500148/**
149 * genphy_restart_aneg - Enable and Restart Autonegotiation
150 * @phydev: target phy_device struct
151 */
152int genphy_restart_aneg(struct phy_device *phydev)
153{
154 int ctl;
155
156 ctl = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMCR);
157
158 if (ctl < 0)
159 return ctl;
160
161 ctl |= (BMCR_ANENABLE | BMCR_ANRESTART);
162
163 /* Don't isolate the PHY if we're negotiating */
164 ctl &= ~(BMCR_ISOLATE);
165
166 ctl = phy_write(phydev, MDIO_DEVAD_NONE, MII_BMCR, ctl);
167
168 return ctl;
169}
170
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500171/**
172 * genphy_config_aneg - restart auto-negotiation or write BMCR
173 * @phydev: target phy_device struct
174 *
175 * Description: If auto-negotiation is enabled, we configure the
176 * advertising, and then restart auto-negotiation. If it is not
177 * enabled, then we write the BMCR.
178 */
179int genphy_config_aneg(struct phy_device *phydev)
180{
181 int result;
182
Mario Six77577432018-01-15 11:08:27 +0100183 if (phydev->autoneg != AUTONEG_ENABLE)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500184 return genphy_setup_forced(phydev);
185
186 result = genphy_config_advert(phydev);
187
188 if (result < 0) /* error */
189 return result;
190
191 if (result == 0) {
Mario Six77577432018-01-15 11:08:27 +0100192 /*
193 * Advertisment hasn't changed, but maybe aneg was never on to
194 * begin with? Or maybe phy was isolated?
195 */
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500196 int ctl = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMCR);
197
198 if (ctl < 0)
199 return ctl;
200
201 if (!(ctl & BMCR_ANENABLE) || (ctl & BMCR_ISOLATE))
202 result = 1; /* do restart aneg */
203 }
204
Mario Six77577432018-01-15 11:08:27 +0100205 /*
206 * Only restart aneg if we are advertising something different
207 * than we were before.
208 */
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500209 if (result > 0)
210 result = genphy_restart_aneg(phydev);
211
212 return result;
213}
214
215/**
216 * genphy_update_link - update link status in @phydev
217 * @phydev: target phy_device struct
218 *
219 * Description: Update the value in phydev->link to reflect the
220 * current link value. In order to do this, we need to read
221 * the status register twice, keeping the second value.
222 */
223int genphy_update_link(struct phy_device *phydev)
224{
225 unsigned int mii_reg;
226
227 /*
228 * Wait if the link is up, and autonegotiation is in progress
229 * (ie - we're capable and it's not done)
230 */
231 mii_reg = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMSR);
232
233 /*
234 * If we already saw the link up, and it hasn't gone down, then
235 * we don't need to wait for autoneg again
236 */
237 if (phydev->link && mii_reg & BMSR_LSTATUS)
238 return 0;
239
Alexandre Messier010c5ec2016-01-22 14:16:56 -0500240 if ((phydev->autoneg == AUTONEG_ENABLE) &&
241 !(mii_reg & BMSR_ANEGCOMPLETE)) {
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500242 int i = 0;
243
244 printf("%s Waiting for PHY auto negotiation to complete",
Mario Six77577432018-01-15 11:08:27 +0100245 phydev->dev->name);
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500246 while (!(mii_reg & BMSR_ANEGCOMPLETE)) {
247 /*
248 * Timeout reached ?
249 */
Andre Przywara71a6a602020-01-03 22:08:47 +0000250 if (i > (PHY_ANEG_TIMEOUT / 50)) {
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500251 printf(" TIMEOUT !\n");
252 phydev->link = 0;
Michal Simekcf6677b2016-05-18 12:48:57 +0200253 return -ETIMEDOUT;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500254 }
255
256 if (ctrlc()) {
257 puts("user interrupt!\n");
258 phydev->link = 0;
259 return -EINTR;
260 }
261
Stefan Roese5cf96d12019-09-30 10:26:42 +0200262 if ((i++ % 10) == 0)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500263 printf(".");
264
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500265 mii_reg = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMSR);
Stefan Roese5cf96d12019-09-30 10:26:42 +0200266 mdelay(50); /* 50 ms */
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500267 }
268 printf(" done\n");
269 phydev->link = 1;
270 } else {
271 /* Read the link a second time to clear the latched state */
272 mii_reg = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMSR);
273
274 if (mii_reg & BMSR_LSTATUS)
275 phydev->link = 1;
276 else
277 phydev->link = 0;
278 }
279
280 return 0;
281}
282
283/*
284 * Generic function which updates the speed and duplex. If
285 * autonegotiation is enabled, it uses the AND of the link
286 * partner's advertised capabilities and our advertised
287 * capabilities. If autonegotiation is disabled, we use the
288 * appropriate bits in the control register.
289 *
290 * Stolen from Linux's mii.c and phy_device.c
291 */
Yegor Yefremovc40f5d32012-11-28 11:15:17 +0100292int genphy_parse_link(struct phy_device *phydev)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500293{
294 int mii_reg = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMSR);
295
296 /* We're using autonegotiation */
Alexandre Messier010c5ec2016-01-22 14:16:56 -0500297 if (phydev->autoneg == AUTONEG_ENABLE) {
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500298 u32 lpa = 0;
Heiko Schocher94c35022013-07-23 15:32:36 +0200299 int gblpa = 0;
Charles Coldwell23329412013-02-21 08:25:52 -0500300 u32 estatus = 0;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500301
302 /* Check for gigabit capability */
David Duecked454232013-11-05 17:23:02 +0100303 if (phydev->supported & (SUPPORTED_1000baseT_Full |
304 SUPPORTED_1000baseT_Half)) {
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500305 /* We want a list of states supported by
306 * both PHYs in the link
307 */
308 gblpa = phy_read(phydev, MDIO_DEVAD_NONE, MII_STAT1000);
Heiko Schocher94c35022013-07-23 15:32:36 +0200309 if (gblpa < 0) {
Mario Six77577432018-01-15 11:08:27 +0100310 debug("Could not read MII_STAT1000. ");
311 debug("Ignoring gigabit capability\n");
Heiko Schocher94c35022013-07-23 15:32:36 +0200312 gblpa = 0;
313 }
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500314 gblpa &= phy_read(phydev,
315 MDIO_DEVAD_NONE, MII_CTRL1000) << 2;
316 }
317
318 /* Set the baseline so we only have to set them
319 * if they're different
320 */
321 phydev->speed = SPEED_10;
322 phydev->duplex = DUPLEX_HALF;
323
324 /* Check the gigabit fields */
325 if (gblpa & (PHY_1000BTSR_1000FD | PHY_1000BTSR_1000HD)) {
326 phydev->speed = SPEED_1000;
327
328 if (gblpa & PHY_1000BTSR_1000FD)
329 phydev->duplex = DUPLEX_FULL;
330
331 /* We're done! */
332 return 0;
333 }
334
335 lpa = phy_read(phydev, MDIO_DEVAD_NONE, MII_ADVERTISE);
336 lpa &= phy_read(phydev, MDIO_DEVAD_NONE, MII_LPA);
337
Wolfgang Denka7b06ce2011-09-28 21:02:43 +0200338 if (lpa & (LPA_100FULL | LPA_100HALF)) {
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500339 phydev->speed = SPEED_100;
340
Wolfgang Denka7b06ce2011-09-28 21:02:43 +0200341 if (lpa & LPA_100FULL)
342 phydev->duplex = DUPLEX_FULL;
343
Mario Six77577432018-01-15 11:08:27 +0100344 } else if (lpa & LPA_10FULL) {
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500345 phydev->duplex = DUPLEX_FULL;
Mario Six77577432018-01-15 11:08:27 +0100346 }
Charles Coldwell23329412013-02-21 08:25:52 -0500347
Sascha Silbe2ac8d302013-07-19 12:25:10 +0200348 /*
349 * Extended status may indicate that the PHY supports
350 * 1000BASE-T/X even though the 1000BASE-T registers
351 * are missing. In this case we can't tell whether the
352 * peer also supports it, so we only check extended
353 * status if the 1000BASE-T registers are actually
354 * missing.
355 */
356 if ((mii_reg & BMSR_ESTATEN) && !(mii_reg & BMSR_ERCAP))
Charles Coldwell23329412013-02-21 08:25:52 -0500357 estatus = phy_read(phydev, MDIO_DEVAD_NONE,
358 MII_ESTATUS);
359
360 if (estatus & (ESTATUS_1000_XFULL | ESTATUS_1000_XHALF |
361 ESTATUS_1000_TFULL | ESTATUS_1000_THALF)) {
362 phydev->speed = SPEED_1000;
363 if (estatus & (ESTATUS_1000_XFULL | ESTATUS_1000_TFULL))
364 phydev->duplex = DUPLEX_FULL;
365 }
366
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500367 } else {
368 u32 bmcr = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMCR);
369
370 phydev->speed = SPEED_10;
371 phydev->duplex = DUPLEX_HALF;
372
373 if (bmcr & BMCR_FULLDPLX)
374 phydev->duplex = DUPLEX_FULL;
375
376 if (bmcr & BMCR_SPEED1000)
377 phydev->speed = SPEED_1000;
378 else if (bmcr & BMCR_SPEED100)
379 phydev->speed = SPEED_100;
380 }
381
382 return 0;
383}
384
385int genphy_config(struct phy_device *phydev)
386{
387 int val;
388 u32 features;
389
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500390 features = (SUPPORTED_TP | SUPPORTED_MII
391 | SUPPORTED_AUI | SUPPORTED_FIBRE |
392 SUPPORTED_BNC);
393
394 /* Do we support autonegotiation? */
395 val = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMSR);
396
397 if (val < 0)
398 return val;
399
400 if (val & BMSR_ANEGCAPABLE)
401 features |= SUPPORTED_Autoneg;
402
403 if (val & BMSR_100FULL)
404 features |= SUPPORTED_100baseT_Full;
405 if (val & BMSR_100HALF)
406 features |= SUPPORTED_100baseT_Half;
407 if (val & BMSR_10FULL)
408 features |= SUPPORTED_10baseT_Full;
409 if (val & BMSR_10HALF)
410 features |= SUPPORTED_10baseT_Half;
411
412 if (val & BMSR_ESTATEN) {
413 val = phy_read(phydev, MDIO_DEVAD_NONE, MII_ESTATUS);
414
415 if (val < 0)
416 return val;
417
418 if (val & ESTATUS_1000_TFULL)
419 features |= SUPPORTED_1000baseT_Full;
420 if (val & ESTATUS_1000_THALF)
421 features |= SUPPORTED_1000baseT_Half;
Charles Coldwell23329412013-02-21 08:25:52 -0500422 if (val & ESTATUS_1000_XFULL)
423 features |= SUPPORTED_1000baseX_Full;
424 if (val & ESTATUS_1000_XHALF)
Fabio Estevam45d601e2013-07-19 10:01:34 -0300425 features |= SUPPORTED_1000baseX_Half;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500426 }
427
Sascha Hauer6cc1e7d2016-01-13 16:59:32 +0300428 phydev->supported &= features;
429 phydev->advertising &= features;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500430
431 genphy_config_aneg(phydev);
432
433 return 0;
434}
435
436int genphy_startup(struct phy_device *phydev)
437{
Michal Simek5ff89662016-05-18 12:46:12 +0200438 int ret;
439
440 ret = genphy_update_link(phydev);
441 if (ret)
442 return ret;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500443
Michal Simek5ff89662016-05-18 12:46:12 +0200444 return genphy_parse_link(phydev);
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500445}
446
447int genphy_shutdown(struct phy_device *phydev)
448{
449 return 0;
450}
451
452static struct phy_driver genphy_driver = {
453 .uid = 0xffffffff,
454 .mask = 0xffffffff,
455 .name = "Generic PHY",
Sascha Hauer6cc1e7d2016-01-13 16:59:32 +0300456 .features = PHY_GBIT_FEATURES | SUPPORTED_MII |
457 SUPPORTED_AUI | SUPPORTED_FIBRE |
458 SUPPORTED_BNC,
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500459 .config = genphy_config,
460 .startup = genphy_startup,
461 .shutdown = genphy_shutdown,
462};
463
Siva Durga Prasad Paladugu1daad9e2019-03-15 17:46:47 +0530464int genphy_init(void)
465{
466 return phy_register(&genphy_driver);
467}
468
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500469static LIST_HEAD(phy_drivers);
470
471int phy_init(void)
472{
Siva Durga Prasad Paladuguf1137542019-03-04 16:01:30 +0100473#ifdef CONFIG_NEEDS_MANUAL_RELOC
474 /*
475 * The pointers inside phy_drivers also needs to be updated incase of
476 * manual reloc, without which these points to some invalid
477 * pre reloc address and leads to invalid accesses, hangs.
478 */
479 struct list_head *head = &phy_drivers;
480
481 head->next = (void *)head->next + gd->reloc_off;
482 head->prev = (void *)head->prev + gd->reloc_off;
483#endif
484
Florian Fainelli01b4ade2017-12-09 14:59:54 -0800485#ifdef CONFIG_B53_SWITCH
486 phy_b53_init();
487#endif
Kevin Smith87b2c4e2016-03-31 19:33:12 +0000488#ifdef CONFIG_MV88E61XX_SWITCH
489 phy_mv88e61xx_init();
490#endif
Shaohui Xie0e548d72014-12-30 18:32:04 +0800491#ifdef CONFIG_PHY_AQUANTIA
492 phy_aquantia_init();
493#endif
Andy Fleming60ca78b2011-04-07 21:56:05 -0500494#ifdef CONFIG_PHY_ATHEROS
495 phy_atheros_init();
496#endif
497#ifdef CONFIG_PHY_BROADCOM
498 phy_broadcom_init();
499#endif
Shengzhou Liuc878bdb2014-11-10 18:32:29 +0800500#ifdef CONFIG_PHY_CORTINA
501 phy_cortina_init();
502#endif
Abbie Chang556872f2021-01-14 13:34:12 -0800503#ifdef CONFIG_PHY_CORTINA_ACCESS
504 phy_cortina_access_init();
505#endif
Andy Fleming60ca78b2011-04-07 21:56:05 -0500506#ifdef CONFIG_PHY_DAVICOM
507 phy_davicom_init();
508#endif
Matt Porter3bbeb792013-03-20 05:38:13 +0000509#ifdef CONFIG_PHY_ET1011C
510 phy_et1011c_init();
511#endif
Andy Fleming60ca78b2011-04-07 21:56:05 -0500512#ifdef CONFIG_PHY_LXT
513 phy_lxt_init();
514#endif
515#ifdef CONFIG_PHY_MARVELL
516 phy_marvell_init();
517#endif
Alexandru Gagniuc757bb672017-07-07 11:36:57 -0700518#ifdef CONFIG_PHY_MICREL_KSZ8XXX
519 phy_micrel_ksz8xxx_init();
520#endif
521#ifdef CONFIG_PHY_MICREL_KSZ90X1
522 phy_micrel_ksz90x1_init();
Andy Fleming60ca78b2011-04-07 21:56:05 -0500523#endif
Neil Armstrong7a4c90d2017-10-18 10:02:10 +0200524#ifdef CONFIG_PHY_MESON_GXL
525 phy_meson_gxl_init();
526#endif
Andy Fleming60ca78b2011-04-07 21:56:05 -0500527#ifdef CONFIG_PHY_NATSEMI
528 phy_natsemi_init();
529#endif
530#ifdef CONFIG_PHY_REALTEK
531 phy_realtek_init();
532#endif
Nobuhiro Iwamatsu61134dc2011-11-23 21:24:15 +0000533#ifdef CONFIG_PHY_SMSC
534 phy_smsc_init();
535#endif
Andy Fleming60ca78b2011-04-07 21:56:05 -0500536#ifdef CONFIG_PHY_TERANETICS
537 phy_teranetics_init();
538#endif
Edgar E. Iglesias8d3ce682015-09-25 23:46:08 -0700539#ifdef CONFIG_PHY_TI
540 phy_ti_init();
541#endif
Andy Fleming60ca78b2011-04-07 21:56:05 -0500542#ifdef CONFIG_PHY_VITESSE
543 phy_vitesse_init();
544#endif
Siva Durga Prasad Paladugudd6cbd32016-02-05 13:22:10 +0530545#ifdef CONFIG_PHY_XILINX
546 phy_xilinx_init();
547#endif
John Haechtenee253f92016-12-09 22:15:17 +0000548#ifdef CONFIG_PHY_MSCC
549 phy_mscc_init();
550#endif
Hannes Schmelzerda494602017-03-23 15:11:43 +0100551#ifdef CONFIG_PHY_FIXED
552 phy_fixed_init();
553#endif
Samuel Mendoza-Jonasb069c4a2019-06-18 11:37:18 +1000554#ifdef CONFIG_PHY_NCSI
555 phy_ncsi_init();
556#endif
Siva Durga Prasad Paladugud5c4e1e2018-11-27 11:49:11 +0530557#ifdef CONFIG_PHY_XILINX_GMII2RGMII
558 phy_xilinx_gmii2rgmii_init();
559#endif
Siva Durga Prasad Paladugu1daad9e2019-03-15 17:46:47 +0530560 genphy_init();
561
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500562 return 0;
563}
564
565int phy_register(struct phy_driver *drv)
566{
567 INIT_LIST_HEAD(&drv->list);
568 list_add_tail(&drv->list, &phy_drivers);
569
Michal Simek5f676312015-05-13 13:40:40 +0200570#ifdef CONFIG_NEEDS_MANUAL_RELOC
571 if (drv->probe)
572 drv->probe += gd->reloc_off;
573 if (drv->config)
574 drv->config += gd->reloc_off;
575 if (drv->startup)
576 drv->startup += gd->reloc_off;
577 if (drv->shutdown)
578 drv->shutdown += gd->reloc_off;
579 if (drv->readext)
580 drv->readext += gd->reloc_off;
581 if (drv->writeext)
582 drv->writeext += gd->reloc_off;
Carlo Caione4de87e22019-02-08 17:25:06 +0000583 if (drv->read_mmd)
584 drv->read_mmd += gd->reloc_off;
585 if (drv->write_mmd)
586 drv->write_mmd += gd->reloc_off;
Michal Simek5f676312015-05-13 13:40:40 +0200587#endif
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500588 return 0;
589}
590
Alexey Brodkine476bb22016-01-13 16:59:34 +0300591int phy_set_supported(struct phy_device *phydev, u32 max_speed)
592{
593 /* The default values for phydev->supported are provided by the PHY
594 * driver "features" member, we want to reset to sane defaults first
595 * before supporting higher speeds.
596 */
597 phydev->supported &= PHY_DEFAULT_FEATURES;
598
599 switch (max_speed) {
600 default:
601 return -ENOTSUPP;
602 case SPEED_1000:
603 phydev->supported |= PHY_1000BT_FEATURES;
604 /* fall through */
605 case SPEED_100:
606 phydev->supported |= PHY_100BT_FEATURES;
607 /* fall through */
608 case SPEED_10:
609 phydev->supported |= PHY_10BT_FEATURES;
610 }
611
612 return 0;
613}
614
Kim Phillips914b0782012-10-29 13:34:34 +0000615static int phy_probe(struct phy_device *phydev)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500616{
617 int err = 0;
618
Mario Six77577432018-01-15 11:08:27 +0100619 phydev->advertising = phydev->drv->features;
620 phydev->supported = phydev->drv->features;
621
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500622 phydev->mmds = phydev->drv->mmds;
623
624 if (phydev->drv->probe)
625 err = phydev->drv->probe(phydev);
626
627 return err;
628}
629
630static struct phy_driver *generic_for_interface(phy_interface_t interface)
631{
632#ifdef CONFIG_PHYLIB_10G
633 if (is_10g_interface(interface))
634 return &gen10g_driver;
635#endif
636
637 return &genphy_driver;
638}
639
Kim Phillips914b0782012-10-29 13:34:34 +0000640static struct phy_driver *get_phy_driver(struct phy_device *phydev,
Mario Six77577432018-01-15 11:08:27 +0100641 phy_interface_t interface)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500642{
643 struct list_head *entry;
644 int phy_id = phydev->phy_id;
645 struct phy_driver *drv = NULL;
646
647 list_for_each(entry, &phy_drivers) {
648 drv = list_entry(entry, struct phy_driver, list);
649 if ((drv->uid & drv->mask) == (phy_id & drv->mask))
650 return drv;
651 }
652
653 /* If we made it here, there's no driver for this PHY */
654 return generic_for_interface(interface);
655}
656
Kim Phillips914b0782012-10-29 13:34:34 +0000657static struct phy_device *phy_device_create(struct mii_dev *bus, int addr,
Pankaj Bansal3c43a482018-11-16 06:26:18 +0000658 u32 phy_id, bool is_c45,
Kim Phillips914b0782012-10-29 13:34:34 +0000659 phy_interface_t interface)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500660{
661 struct phy_device *dev;
662
Mario Six77577432018-01-15 11:08:27 +0100663 /*
664 * We allocate the device, and initialize the
665 * default values
666 */
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500667 dev = malloc(sizeof(*dev));
668 if (!dev) {
669 printf("Failed to allocate PHY device for %s:%d\n",
Vladimir Olteanfb73b122020-07-16 18:09:08 +0800670 bus ? bus->name : "(null bus)", addr);
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500671 return NULL;
672 }
673
674 memset(dev, 0, sizeof(*dev));
675
676 dev->duplex = -1;
Mugunthan V Nbbc97ba2015-09-03 15:50:21 +0530677 dev->link = 0;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500678 dev->interface = interface;
679
Grygorii Strashko6189c062018-07-05 12:02:48 -0500680#ifdef CONFIG_DM_ETH
681 dev->node = ofnode_null();
682#endif
683
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500684 dev->autoneg = AUTONEG_ENABLE;
685
686 dev->addr = addr;
687 dev->phy_id = phy_id;
Pankaj Bansal3c43a482018-11-16 06:26:18 +0000688 dev->is_c45 = is_c45;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500689 dev->bus = bus;
690
691 dev->drv = get_phy_driver(dev, interface);
692
Siva Durga Prasad Paladugua7228482019-03-04 16:02:11 +0100693 if (phy_probe(dev)) {
694 printf("%s, PHY probe failed\n", __func__);
695 return NULL;
696 }
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500697
Vladimir Olteanfb73b122020-07-16 18:09:08 +0800698 if (addr >= 0 && addr < PHY_MAX_ADDR && phy_id != PHY_FIXED_ID)
Michal Simek02a99d72018-12-19 16:57:38 +0100699 bus->phymap[addr] = dev;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500700
701 return dev;
702}
703
704/**
705 * get_phy_id - reads the specified addr for its ID.
706 * @bus: the target MII bus
707 * @addr: PHY address on the MII bus
708 * @phy_id: where to store the ID retrieved.
709 *
710 * Description: Reads the ID registers of the PHY at @addr on the
711 * @bus, stores it in @phy_id and returns zero on success.
712 */
Shengzhou Liu072b0fa2015-04-07 18:46:32 +0800713int __weak get_phy_id(struct mii_dev *bus, int addr, int devad, u32 *phy_id)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500714{
715 int phy_reg;
716
Mario Six77577432018-01-15 11:08:27 +0100717 /*
718 * Grab the bits from PHYIR1, and put them
719 * in the upper half
720 */
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500721 phy_reg = bus->read(bus, addr, devad, MII_PHYSID1);
722
723 if (phy_reg < 0)
724 return -EIO;
725
726 *phy_id = (phy_reg & 0xffff) << 16;
727
728 /* Grab the bits from PHYIR2, and put them in the lower half */
729 phy_reg = bus->read(bus, addr, devad, MII_PHYSID2);
730
731 if (phy_reg < 0)
732 return -EIO;
733
734 *phy_id |= (phy_reg & 0xffff);
735
736 return 0;
737}
738
Troy Kisky9519bc52012-10-22 16:40:43 +0000739static struct phy_device *create_phy_by_mask(struct mii_dev *bus,
Mario Six77577432018-01-15 11:08:27 +0100740 uint phy_mask, int devad,
741 phy_interface_t interface)
Troy Kisky9519bc52012-10-22 16:40:43 +0000742{
743 u32 phy_id = 0xffffffff;
Pankaj Bansal3c43a482018-11-16 06:26:18 +0000744 bool is_c45;
Mario Six77577432018-01-15 11:08:27 +0100745
Troy Kisky9519bc52012-10-22 16:40:43 +0000746 while (phy_mask) {
747 int addr = ffs(phy_mask) - 1;
748 int r = get_phy_id(bus, addr, devad, &phy_id);
Alex Marginean920fe672019-07-05 12:28:55 +0300749
750 /*
751 * If the PHY ID is flat 0 we ignore it. There are C45 PHYs
752 * that return all 0s for C22 reads (like Aquantia AQR112) and
753 * there are C22 PHYs that return all 0s for C45 reads (like
754 * Atheros AR8035).
755 */
756 if (r == 0 && phy_id == 0)
757 goto next;
758
Troy Kisky9519bc52012-10-22 16:40:43 +0000759 /* If the PHY ID is mostly f's, we didn't find anything */
Pankaj Bansal3c43a482018-11-16 06:26:18 +0000760 if (r == 0 && (phy_id & 0x1fffffff) != 0x1fffffff) {
761 is_c45 = (devad == MDIO_DEVAD_NONE) ? false : true;
762 return phy_device_create(bus, addr, phy_id, is_c45,
763 interface);
764 }
Alex Marginean920fe672019-07-05 12:28:55 +0300765next:
Troy Kisky9519bc52012-10-22 16:40:43 +0000766 phy_mask &= ~(1 << addr);
767 }
768 return NULL;
769}
770
771static struct phy_device *search_for_existing_phy(struct mii_dev *bus,
Mario Six77577432018-01-15 11:08:27 +0100772 uint phy_mask,
773 phy_interface_t interface)
Troy Kisky9519bc52012-10-22 16:40:43 +0000774{
775 /* If we have one, return the existing device, with new interface */
776 while (phy_mask) {
777 int addr = ffs(phy_mask) - 1;
Mario Six77577432018-01-15 11:08:27 +0100778
Troy Kisky9519bc52012-10-22 16:40:43 +0000779 if (bus->phymap[addr]) {
780 bus->phymap[addr]->interface = interface;
781 return bus->phymap[addr];
782 }
783 phy_mask &= ~(1 << addr);
784 }
785 return NULL;
786}
787
788static struct phy_device *get_phy_device_by_mask(struct mii_dev *bus,
Mario Six77577432018-01-15 11:08:27 +0100789 uint phy_mask,
790 phy_interface_t interface)
Troy Kisky9519bc52012-10-22 16:40:43 +0000791{
Troy Kisky9519bc52012-10-22 16:40:43 +0000792 struct phy_device *phydev;
Florin Chiculita0439bee2020-04-29 14:25:48 +0300793 int devad[] = {
794 /* Clause-22 */
795 MDIO_DEVAD_NONE,
796 /* Clause-45 */
797 MDIO_MMD_PMAPMD,
798 MDIO_MMD_WIS,
799 MDIO_MMD_PCS,
800 MDIO_MMD_PHYXS,
801 MDIO_MMD_VEND1,
802 };
803 int i, devad_cnt;
Troy Kisky9519bc52012-10-22 16:40:43 +0000804
Florin Chiculita0439bee2020-04-29 14:25:48 +0300805 devad_cnt = sizeof(devad)/sizeof(int);
Troy Kisky9519bc52012-10-22 16:40:43 +0000806 phydev = search_for_existing_phy(bus, phy_mask, interface);
807 if (phydev)
808 return phydev;
Florin Chiculita0439bee2020-04-29 14:25:48 +0300809 /* try different access clauses */
810 for (i = 0; i < devad_cnt; i++) {
Troy Kisky9519bc52012-10-22 16:40:43 +0000811 phydev = create_phy_by_mask(bus, phy_mask,
Florin Chiculita0439bee2020-04-29 14:25:48 +0300812 devad[i], interface);
Troy Kisky9519bc52012-10-22 16:40:43 +0000813 if (IS_ERR(phydev))
814 return NULL;
815 if (phydev)
816 return phydev;
817 }
Bin Meng59c6d892015-10-07 21:19:30 -0700818
819 debug("\n%s PHY: ", bus->name);
820 while (phy_mask) {
821 int addr = ffs(phy_mask) - 1;
Mario Six77577432018-01-15 11:08:27 +0100822
Bin Meng59c6d892015-10-07 21:19:30 -0700823 debug("%d ", addr);
824 phy_mask &= ~(1 << addr);
825 }
826 debug("not found\n");
Bin Meng0776c572015-10-07 21:19:29 -0700827
828 return NULL;
Troy Kisky9519bc52012-10-22 16:40:43 +0000829}
830
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500831/**
Mario Six77577432018-01-15 11:08:27 +0100832 * get_phy_device - reads the specified PHY device and returns its
833 * @phy_device struct
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500834 * @bus: the target MII bus
835 * @addr: PHY address on the MII bus
836 *
837 * Description: Reads the ID registers of the PHY at @addr on the
838 * @bus, then allocates and returns the phy_device to represent it.
839 */
Kim Phillips914b0782012-10-29 13:34:34 +0000840static struct phy_device *get_phy_device(struct mii_dev *bus, int addr,
841 phy_interface_t interface)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500842{
Troy Kisky9519bc52012-10-22 16:40:43 +0000843 return get_phy_device_by_mask(bus, 1 << addr, interface);
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500844}
845
846int phy_reset(struct phy_device *phydev)
847{
848 int reg;
849 int timeout = 500;
850 int devad = MDIO_DEVAD_NONE;
851
Shaohui Xie62a7b922016-01-28 15:55:46 +0800852 if (phydev->flags & PHY_FLAG_BROKEN_RESET)
853 return 0;
854
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500855#ifdef CONFIG_PHYLIB_10G
856 /* If it's 10G, we need to issue reset through one of the MMDs */
857 if (is_10g_interface(phydev->interface)) {
858 if (!phydev->mmds)
859 gen10g_discover_mmds(phydev);
860
861 devad = ffs(phydev->mmds) - 1;
862 }
863#endif
864
Stefan Agnere64013d2015-12-09 11:21:25 -0800865 if (phy_write(phydev, devad, MII_BMCR, BMCR_RESET) < 0) {
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500866 debug("PHY reset failed\n");
867 return -1;
868 }
869
870#ifdef CONFIG_PHY_RESET_DELAY
871 udelay(CONFIG_PHY_RESET_DELAY); /* Intel LXT971A needs this */
872#endif
873 /*
874 * Poll the control register for the reset bit to go to 0 (it is
875 * auto-clearing). This should happen within 0.5 seconds per the
876 * IEEE spec.
877 */
Stefan Agnere64013d2015-12-09 11:21:25 -0800878 reg = phy_read(phydev, devad, MII_BMCR);
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500879 while ((reg & BMCR_RESET) && timeout--) {
880 reg = phy_read(phydev, devad, MII_BMCR);
881
882 if (reg < 0) {
883 debug("PHY status read failed\n");
884 return -1;
885 }
886 udelay(1000);
887 }
888
889 if (reg & BMCR_RESET) {
890 puts("PHY reset timed out\n");
891 return -1;
892 }
893
894 return 0;
895}
896
897int miiphy_reset(const char *devname, unsigned char addr)
898{
899 struct mii_dev *bus = miiphy_get_dev_by_name(devname);
900 struct phy_device *phydev;
901
902 /*
903 * miiphy_reset was only used on standard PHYs, so we'll fake it here.
904 * If later code tries to connect with the right interface, this will
905 * be corrected by get_phy_device in phy_connect()
906 */
907 phydev = get_phy_device(bus, addr, PHY_INTERFACE_MODE_MII);
908
909 return phy_reset(phydev);
910}
911
Mario Six77577432018-01-15 11:08:27 +0100912struct phy_device *phy_find_by_mask(struct mii_dev *bus, uint phy_mask,
913 phy_interface_t interface)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500914{
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500915 /* Reset the bus */
Jörg Krause71b1d862015-07-15 15:18:22 +0200916 if (bus->reset) {
Vladimir Zapolskiy46f10bb2011-09-05 07:24:07 +0000917 bus->reset(bus);
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500918
Jörg Krause71b1d862015-07-15 15:18:22 +0200919 /* Wait 15ms to make sure the PHY has come out of hard reset */
Mario Six77577432018-01-15 11:08:27 +0100920 mdelay(15);
Jörg Krause71b1d862015-07-15 15:18:22 +0200921 }
922
Troy Kisky9519bc52012-10-22 16:40:43 +0000923 return get_phy_device_by_mask(bus, phy_mask, interface);
924}
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500925
Simon Glassdbad3462015-04-05 16:07:39 -0600926#ifdef CONFIG_DM_ETH
927void phy_connect_dev(struct phy_device *phydev, struct udevice *dev)
928#else
Troy Kisky9519bc52012-10-22 16:40:43 +0000929void phy_connect_dev(struct phy_device *phydev, struct eth_device *dev)
Simon Glassdbad3462015-04-05 16:07:39 -0600930#endif
Troy Kisky9519bc52012-10-22 16:40:43 +0000931{
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500932 /* Soft Reset the PHY */
933 phy_reset(phydev);
Bin Mengf87a15c2015-10-07 21:19:31 -0700934 if (phydev->dev && phydev->dev != dev) {
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500935 printf("%s:%d is connected to %s. Reconnecting to %s\n",
Mario Six77577432018-01-15 11:08:27 +0100936 phydev->bus->name, phydev->addr,
937 phydev->dev->name, dev->name);
Troy Kisky9519bc52012-10-22 16:40:43 +0000938 }
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500939 phydev->dev = dev;
Wolfgang Denka71ebc42011-07-24 21:39:10 +0000940 debug("%s connected to %s\n", dev->name, phydev->drv->name);
Troy Kisky9519bc52012-10-22 16:40:43 +0000941}
Siva Durga Prasad Paladugud5c4e1e2018-11-27 11:49:11 +0530942
943#ifdef CONFIG_PHY_XILINX_GMII2RGMII
944#ifdef CONFIG_DM_ETH
945static struct phy_device *phy_connect_gmii2rgmii(struct mii_dev *bus,
946 struct udevice *dev,
947 phy_interface_t interface)
948#else
949static struct phy_device *phy_connect_gmii2rgmii(struct mii_dev *bus,
950 struct eth_device *dev,
951 phy_interface_t interface)
952#endif
953{
954 struct phy_device *phydev = NULL;
955 int sn = dev_of_offset(dev);
956 int off;
957
958 while (sn > 0) {
959 off = fdt_node_offset_by_compatible(gd->fdt_blob, sn,
960 "xlnx,gmii-to-rgmii-1.0");
961 if (off > 0) {
962 phydev = phy_device_create(bus, off,
963 PHY_GMII2RGMII_ID, false,
964 interface);
965 break;
966 }
967 if (off == -FDT_ERR_NOTFOUND)
968 sn = fdt_first_subnode(gd->fdt_blob, sn);
969 else
970 printf("%s: Error finding compat string:%d\n",
971 __func__, off);
972 }
973
974 return phydev;
975}
976#endif
Troy Kisky9519bc52012-10-22 16:40:43 +0000977
Siva Durga Prasad Paladugu03f937a2018-11-27 11:49:10 +0530978#ifdef CONFIG_PHY_FIXED
Simon Glassdbad3462015-04-05 16:07:39 -0600979#ifdef CONFIG_DM_ETH
Siva Durga Prasad Paladugu03f937a2018-11-27 11:49:10 +0530980static struct phy_device *phy_connect_fixed(struct mii_dev *bus,
981 struct udevice *dev,
982 phy_interface_t interface)
Simon Glassdbad3462015-04-05 16:07:39 -0600983#else
Siva Durga Prasad Paladugu03f937a2018-11-27 11:49:10 +0530984static struct phy_device *phy_connect_fixed(struct mii_dev *bus,
985 struct eth_device *dev,
986 phy_interface_t interface)
Simon Glassdbad3462015-04-05 16:07:39 -0600987#endif
Troy Kisky9519bc52012-10-22 16:40:43 +0000988{
Hannes Schmelzerda494602017-03-23 15:11:43 +0100989 struct phy_device *phydev = NULL;
Hannes Schmelzerda494602017-03-23 15:11:43 +0100990 int sn;
991 const char *name;
Mario Six77577432018-01-15 11:08:27 +0100992
Simon Glass7a494432017-05-17 17:18:09 -0600993 sn = fdt_first_subnode(gd->fdt_blob, dev_of_offset(dev));
Hannes Schmelzerda494602017-03-23 15:11:43 +0100994 while (sn > 0) {
995 name = fdt_get_name(gd->fdt_blob, sn, NULL);
Mario Six77577432018-01-15 11:08:27 +0100996 if (name && strcmp(name, "fixed-link") == 0) {
Pankaj Bansal3c43a482018-11-16 06:26:18 +0000997 phydev = phy_device_create(bus, sn, PHY_FIXED_ID, false,
998 interface);
Hannes Schmelzerda494602017-03-23 15:11:43 +0100999 break;
1000 }
1001 sn = fdt_next_subnode(gd->fdt_blob, sn);
1002 }
Siva Durga Prasad Paladugu03f937a2018-11-27 11:49:10 +05301003
1004 return phydev;
1005}
Hannes Schmelzerda494602017-03-23 15:11:43 +01001006#endif
Siva Durga Prasad Paladugu03f937a2018-11-27 11:49:10 +05301007
1008#ifdef CONFIG_DM_ETH
1009struct phy_device *phy_connect(struct mii_dev *bus, int addr,
1010 struct udevice *dev,
1011 phy_interface_t interface)
1012#else
1013struct phy_device *phy_connect(struct mii_dev *bus, int addr,
1014 struct eth_device *dev,
1015 phy_interface_t interface)
1016#endif
1017{
1018 struct phy_device *phydev = NULL;
Priyanka Jain11691fd2019-11-05 04:05:11 +00001019 uint mask = (addr >= 0) ? (1 << addr) : 0xffffffff;
Siva Durga Prasad Paladugu03f937a2018-11-27 11:49:10 +05301020
1021#ifdef CONFIG_PHY_FIXED
1022 phydev = phy_connect_fixed(bus, dev, interface);
1023#endif
Samuel Mendoza-Jonasb069c4a2019-06-18 11:37:18 +10001024
1025#ifdef CONFIG_PHY_NCSI
1026 if (!phydev)
1027 phydev = phy_device_create(bus, 0, PHY_NCSI_ID, false, interface);
1028#endif
1029
Siva Durga Prasad Paladugud5c4e1e2018-11-27 11:49:11 +05301030#ifdef CONFIG_PHY_XILINX_GMII2RGMII
1031 if (!phydev)
1032 phydev = phy_connect_gmii2rgmii(bus, dev, interface);
1033#endif
Siva Durga Prasad Paladugu03f937a2018-11-27 11:49:10 +05301034
Mario Six77577432018-01-15 11:08:27 +01001035 if (!phydev)
Hannes Schmelzer02505e92019-03-29 09:54:05 +01001036 phydev = phy_find_by_mask(bus, mask, interface);
Andy Flemingaecf6fc2011-04-08 02:10:27 -05001037
Troy Kisky9519bc52012-10-22 16:40:43 +00001038 if (phydev)
1039 phy_connect_dev(phydev, dev);
1040 else
1041 printf("Could not get PHY for %s: addr %d\n", bus->name, addr);
Andy Flemingaecf6fc2011-04-08 02:10:27 -05001042 return phydev;
1043}
1044
Timur Tabi251180b2012-07-05 10:33:18 +00001045/*
1046 * Start the PHY. Returns 0 on success, or a negative error code.
1047 */
Andy Flemingaecf6fc2011-04-08 02:10:27 -05001048int phy_startup(struct phy_device *phydev)
1049{
1050 if (phydev->drv->startup)
Timur Tabi251180b2012-07-05 10:33:18 +00001051 return phydev->drv->startup(phydev);
Andy Flemingaecf6fc2011-04-08 02:10:27 -05001052
1053 return 0;
1054}
1055
Jeroen Hofsteee4f89472014-10-08 22:57:26 +02001056__weak int board_phy_config(struct phy_device *phydev)
Andy Flemingaecf6fc2011-04-08 02:10:27 -05001057{
Troy Kisky85846412012-02-07 14:08:49 +00001058 if (phydev->drv->config)
1059 return phydev->drv->config(phydev);
Andy Flemingaecf6fc2011-04-08 02:10:27 -05001060 return 0;
1061}
1062
Andy Flemingaecf6fc2011-04-08 02:10:27 -05001063int phy_config(struct phy_device *phydev)
1064{
Andy Flemingaecf6fc2011-04-08 02:10:27 -05001065 /* Invoke an optional board-specific helper */
Michal Simek24ce2322016-05-18 14:37:23 +02001066 return board_phy_config(phydev);
Andy Flemingaecf6fc2011-04-08 02:10:27 -05001067}
1068
1069int phy_shutdown(struct phy_device *phydev)
1070{
1071 if (phydev->drv->shutdown)
1072 phydev->drv->shutdown(phydev);
1073
1074 return 0;
1075}
Simon Glassdbad3462015-04-05 16:07:39 -06001076
1077int phy_get_interface_by_name(const char *str)
1078{
1079 int i;
1080
1081 for (i = 0; i < PHY_INTERFACE_MODE_COUNT; i++) {
1082 if (!strcmp(str, phy_interface_strings[i]))
1083 return i;
1084 }
1085
1086 return -1;
1087}