blob: 6b6497c93a26a58fe3c0c60a18ae43fb3a7d6e2d [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 Glassdbd79542020-05-10 11:40:11 -060020#include <linux/delay.h>
Troy Kisky9519bc52012-10-22 16:40:43 +000021#include <linux/err.h>
Shengzhou Liufcfc7862014-04-11 16:14:17 +080022#include <linux/compiler.h>
Andy Flemingaecf6fc2011-04-08 02:10:27 -050023
Michal Simek5f676312015-05-13 13:40:40 +020024DECLARE_GLOBAL_DATA_PTR;
25
Andy Flemingaecf6fc2011-04-08 02:10:27 -050026/* Generic PHY support and helper functions */
27
28/**
Mario Six77577432018-01-15 11:08:27 +010029 * genphy_config_advert - sanitize and advertise auto-negotiation parameters
Andy Flemingaecf6fc2011-04-08 02:10:27 -050030 * @phydev: target phy_device struct
31 *
32 * Description: Writes MII_ADVERTISE with the appropriate values,
33 * after sanitizing the values to make sure we only advertise
34 * what is supported. Returns < 0 on error, 0 if the PHY's advertisement
35 * hasn't changed, and > 0 if it has changed.
36 */
Kim Phillips914b0782012-10-29 13:34:34 +000037static int genphy_config_advert(struct phy_device *phydev)
Andy Flemingaecf6fc2011-04-08 02:10:27 -050038{
39 u32 advertise;
Florian Fainelli6c8be842016-01-13 16:59:31 +030040 int oldadv, adv, bmsr;
Andy Flemingaecf6fc2011-04-08 02:10:27 -050041 int err, changed = 0;
42
Florian Fainelli6c8be842016-01-13 16:59:31 +030043 /* Only allow advertising what this PHY supports */
Andy Flemingaecf6fc2011-04-08 02:10:27 -050044 phydev->advertising &= phydev->supported;
45 advertise = phydev->advertising;
46
47 /* Setup standard advertisement */
Florian Fainelli6c8be842016-01-13 16:59:31 +030048 adv = phy_read(phydev, MDIO_DEVAD_NONE, MII_ADVERTISE);
49 oldadv = adv;
Andy Flemingaecf6fc2011-04-08 02:10:27 -050050
51 if (adv < 0)
52 return adv;
53
54 adv &= ~(ADVERTISE_ALL | ADVERTISE_100BASE4 | ADVERTISE_PAUSE_CAP |
55 ADVERTISE_PAUSE_ASYM);
56 if (advertise & ADVERTISED_10baseT_Half)
57 adv |= ADVERTISE_10HALF;
58 if (advertise & ADVERTISED_10baseT_Full)
59 adv |= ADVERTISE_10FULL;
60 if (advertise & ADVERTISED_100baseT_Half)
61 adv |= ADVERTISE_100HALF;
62 if (advertise & ADVERTISED_100baseT_Full)
63 adv |= ADVERTISE_100FULL;
64 if (advertise & ADVERTISED_Pause)
65 adv |= ADVERTISE_PAUSE_CAP;
66 if (advertise & ADVERTISED_Asym_Pause)
67 adv |= ADVERTISE_PAUSE_ASYM;
Charles Coldwell23329412013-02-21 08:25:52 -050068 if (advertise & ADVERTISED_1000baseX_Half)
69 adv |= ADVERTISE_1000XHALF;
70 if (advertise & ADVERTISED_1000baseX_Full)
71 adv |= ADVERTISE_1000XFULL;
Andy Flemingaecf6fc2011-04-08 02:10:27 -050072
73 if (adv != oldadv) {
74 err = phy_write(phydev, MDIO_DEVAD_NONE, MII_ADVERTISE, adv);
75
76 if (err < 0)
77 return err;
78 changed = 1;
79 }
80
Florian Fainelli6c8be842016-01-13 16:59:31 +030081 bmsr = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMSR);
82 if (bmsr < 0)
83 return bmsr;
84
85 /* Per 802.3-2008, Section 22.2.4.2.16 Extended status all
86 * 1000Mbits/sec capable PHYs shall have the BMSR_ESTATEN bit set to a
87 * logical 1.
88 */
89 if (!(bmsr & BMSR_ESTATEN))
90 return changed;
91
Andy Flemingaecf6fc2011-04-08 02:10:27 -050092 /* Configure gigabit if it's supported */
Florian Fainelli6c8be842016-01-13 16:59:31 +030093 adv = phy_read(phydev, MDIO_DEVAD_NONE, MII_CTRL1000);
94 oldadv = adv;
95
96 if (adv < 0)
97 return adv;
Andy Flemingaecf6fc2011-04-08 02:10:27 -050098
Florian Fainelli6c8be842016-01-13 16:59:31 +030099 adv &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500100
Florian Fainelli6c8be842016-01-13 16:59:31 +0300101 if (phydev->supported & (SUPPORTED_1000baseT_Half |
102 SUPPORTED_1000baseT_Full)) {
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500103 if (advertise & SUPPORTED_1000baseT_Half)
104 adv |= ADVERTISE_1000HALF;
105 if (advertise & SUPPORTED_1000baseT_Full)
106 adv |= ADVERTISE_1000FULL;
Florian Fainelli6c8be842016-01-13 16:59:31 +0300107 }
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500108
Florian Fainelli6c8be842016-01-13 16:59:31 +0300109 if (adv != oldadv)
110 changed = 1;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500111
Florian Fainelli6c8be842016-01-13 16:59:31 +0300112 err = phy_write(phydev, MDIO_DEVAD_NONE, MII_CTRL1000, adv);
113 if (err < 0)
114 return err;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500115
116 return changed;
117}
118
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500119/**
120 * genphy_setup_forced - configures/forces speed/duplex from @phydev
121 * @phydev: target phy_device struct
122 *
123 * Description: Configures MII_BMCR to force speed/duplex
124 * to the values in phydev. Assumes that the values are valid.
125 */
Kim Phillips914b0782012-10-29 13:34:34 +0000126static int genphy_setup_forced(struct phy_device *phydev)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500127{
128 int err;
Alexandre Messier103a8c42016-01-22 14:16:15 -0500129 int ctl = BMCR_ANRESTART;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500130
Mario Six77577432018-01-15 11:08:27 +0100131 phydev->pause = 0;
132 phydev->asym_pause = 0;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500133
Mario Six77577432018-01-15 11:08:27 +0100134 if (phydev->speed == SPEED_1000)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500135 ctl |= BMCR_SPEED1000;
Mario Six77577432018-01-15 11:08:27 +0100136 else if (phydev->speed == SPEED_100)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500137 ctl |= BMCR_SPEED100;
138
Mario Six77577432018-01-15 11:08:27 +0100139 if (phydev->duplex == DUPLEX_FULL)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500140 ctl |= BMCR_FULLDPLX;
141
142 err = phy_write(phydev, MDIO_DEVAD_NONE, MII_BMCR, ctl);
143
144 return err;
145}
146
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500147/**
148 * genphy_restart_aneg - Enable and Restart Autonegotiation
149 * @phydev: target phy_device struct
150 */
151int genphy_restart_aneg(struct phy_device *phydev)
152{
153 int ctl;
154
155 ctl = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMCR);
156
157 if (ctl < 0)
158 return ctl;
159
160 ctl |= (BMCR_ANENABLE | BMCR_ANRESTART);
161
162 /* Don't isolate the PHY if we're negotiating */
163 ctl &= ~(BMCR_ISOLATE);
164
165 ctl = phy_write(phydev, MDIO_DEVAD_NONE, MII_BMCR, ctl);
166
167 return ctl;
168}
169
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500170/**
171 * genphy_config_aneg - restart auto-negotiation or write BMCR
172 * @phydev: target phy_device struct
173 *
174 * Description: If auto-negotiation is enabled, we configure the
175 * advertising, and then restart auto-negotiation. If it is not
176 * enabled, then we write the BMCR.
177 */
178int genphy_config_aneg(struct phy_device *phydev)
179{
180 int result;
181
Mario Six77577432018-01-15 11:08:27 +0100182 if (phydev->autoneg != AUTONEG_ENABLE)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500183 return genphy_setup_forced(phydev);
184
185 result = genphy_config_advert(phydev);
186
187 if (result < 0) /* error */
188 return result;
189
190 if (result == 0) {
Mario Six77577432018-01-15 11:08:27 +0100191 /*
192 * Advertisment hasn't changed, but maybe aneg was never on to
193 * begin with? Or maybe phy was isolated?
194 */
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500195 int ctl = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMCR);
196
197 if (ctl < 0)
198 return ctl;
199
200 if (!(ctl & BMCR_ANENABLE) || (ctl & BMCR_ISOLATE))
201 result = 1; /* do restart aneg */
202 }
203
Mario Six77577432018-01-15 11:08:27 +0100204 /*
205 * Only restart aneg if we are advertising something different
206 * than we were before.
207 */
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500208 if (result > 0)
209 result = genphy_restart_aneg(phydev);
210
211 return result;
212}
213
214/**
215 * genphy_update_link - update link status in @phydev
216 * @phydev: target phy_device struct
217 *
218 * Description: Update the value in phydev->link to reflect the
219 * current link value. In order to do this, we need to read
220 * the status register twice, keeping the second value.
221 */
222int genphy_update_link(struct phy_device *phydev)
223{
224 unsigned int mii_reg;
225
226 /*
227 * Wait if the link is up, and autonegotiation is in progress
228 * (ie - we're capable and it's not done)
229 */
230 mii_reg = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMSR);
231
232 /*
233 * If we already saw the link up, and it hasn't gone down, then
234 * we don't need to wait for autoneg again
235 */
236 if (phydev->link && mii_reg & BMSR_LSTATUS)
237 return 0;
238
Alexandre Messier010c5ec2016-01-22 14:16:56 -0500239 if ((phydev->autoneg == AUTONEG_ENABLE) &&
240 !(mii_reg & BMSR_ANEGCOMPLETE)) {
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500241 int i = 0;
242
243 printf("%s Waiting for PHY auto negotiation to complete",
Mario Six77577432018-01-15 11:08:27 +0100244 phydev->dev->name);
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500245 while (!(mii_reg & BMSR_ANEGCOMPLETE)) {
246 /*
247 * Timeout reached ?
248 */
Andre Przywara71a6a602020-01-03 22:08:47 +0000249 if (i > (PHY_ANEG_TIMEOUT / 50)) {
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500250 printf(" TIMEOUT !\n");
251 phydev->link = 0;
Michal Simekcf6677b2016-05-18 12:48:57 +0200252 return -ETIMEDOUT;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500253 }
254
255 if (ctrlc()) {
256 puts("user interrupt!\n");
257 phydev->link = 0;
258 return -EINTR;
259 }
260
Stefan Roese5cf96d12019-09-30 10:26:42 +0200261 if ((i++ % 10) == 0)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500262 printf(".");
263
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500264 mii_reg = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMSR);
Stefan Roese5cf96d12019-09-30 10:26:42 +0200265 mdelay(50); /* 50 ms */
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500266 }
267 printf(" done\n");
268 phydev->link = 1;
269 } else {
270 /* Read the link a second time to clear the latched state */
271 mii_reg = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMSR);
272
273 if (mii_reg & BMSR_LSTATUS)
274 phydev->link = 1;
275 else
276 phydev->link = 0;
277 }
278
279 return 0;
280}
281
282/*
283 * Generic function which updates the speed and duplex. If
284 * autonegotiation is enabled, it uses the AND of the link
285 * partner's advertised capabilities and our advertised
286 * capabilities. If autonegotiation is disabled, we use the
287 * appropriate bits in the control register.
288 *
289 * Stolen from Linux's mii.c and phy_device.c
290 */
Yegor Yefremovc40f5d32012-11-28 11:15:17 +0100291int genphy_parse_link(struct phy_device *phydev)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500292{
293 int mii_reg = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMSR);
294
295 /* We're using autonegotiation */
Alexandre Messier010c5ec2016-01-22 14:16:56 -0500296 if (phydev->autoneg == AUTONEG_ENABLE) {
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500297 u32 lpa = 0;
Heiko Schocher94c35022013-07-23 15:32:36 +0200298 int gblpa = 0;
Charles Coldwell23329412013-02-21 08:25:52 -0500299 u32 estatus = 0;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500300
301 /* Check for gigabit capability */
David Duecked454232013-11-05 17:23:02 +0100302 if (phydev->supported & (SUPPORTED_1000baseT_Full |
303 SUPPORTED_1000baseT_Half)) {
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500304 /* We want a list of states supported by
305 * both PHYs in the link
306 */
307 gblpa = phy_read(phydev, MDIO_DEVAD_NONE, MII_STAT1000);
Heiko Schocher94c35022013-07-23 15:32:36 +0200308 if (gblpa < 0) {
Mario Six77577432018-01-15 11:08:27 +0100309 debug("Could not read MII_STAT1000. ");
310 debug("Ignoring gigabit capability\n");
Heiko Schocher94c35022013-07-23 15:32:36 +0200311 gblpa = 0;
312 }
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500313 gblpa &= phy_read(phydev,
314 MDIO_DEVAD_NONE, MII_CTRL1000) << 2;
315 }
316
317 /* Set the baseline so we only have to set them
318 * if they're different
319 */
320 phydev->speed = SPEED_10;
321 phydev->duplex = DUPLEX_HALF;
322
323 /* Check the gigabit fields */
324 if (gblpa & (PHY_1000BTSR_1000FD | PHY_1000BTSR_1000HD)) {
325 phydev->speed = SPEED_1000;
326
327 if (gblpa & PHY_1000BTSR_1000FD)
328 phydev->duplex = DUPLEX_FULL;
329
330 /* We're done! */
331 return 0;
332 }
333
334 lpa = phy_read(phydev, MDIO_DEVAD_NONE, MII_ADVERTISE);
335 lpa &= phy_read(phydev, MDIO_DEVAD_NONE, MII_LPA);
336
Wolfgang Denka7b06ce2011-09-28 21:02:43 +0200337 if (lpa & (LPA_100FULL | LPA_100HALF)) {
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500338 phydev->speed = SPEED_100;
339
Wolfgang Denka7b06ce2011-09-28 21:02:43 +0200340 if (lpa & LPA_100FULL)
341 phydev->duplex = DUPLEX_FULL;
342
Mario Six77577432018-01-15 11:08:27 +0100343 } else if (lpa & LPA_10FULL) {
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500344 phydev->duplex = DUPLEX_FULL;
Mario Six77577432018-01-15 11:08:27 +0100345 }
Charles Coldwell23329412013-02-21 08:25:52 -0500346
Sascha Silbe2ac8d302013-07-19 12:25:10 +0200347 /*
348 * Extended status may indicate that the PHY supports
349 * 1000BASE-T/X even though the 1000BASE-T registers
350 * are missing. In this case we can't tell whether the
351 * peer also supports it, so we only check extended
352 * status if the 1000BASE-T registers are actually
353 * missing.
354 */
355 if ((mii_reg & BMSR_ESTATEN) && !(mii_reg & BMSR_ERCAP))
Charles Coldwell23329412013-02-21 08:25:52 -0500356 estatus = phy_read(phydev, MDIO_DEVAD_NONE,
357 MII_ESTATUS);
358
359 if (estatus & (ESTATUS_1000_XFULL | ESTATUS_1000_XHALF |
360 ESTATUS_1000_TFULL | ESTATUS_1000_THALF)) {
361 phydev->speed = SPEED_1000;
362 if (estatus & (ESTATUS_1000_XFULL | ESTATUS_1000_TFULL))
363 phydev->duplex = DUPLEX_FULL;
364 }
365
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500366 } else {
367 u32 bmcr = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMCR);
368
369 phydev->speed = SPEED_10;
370 phydev->duplex = DUPLEX_HALF;
371
372 if (bmcr & BMCR_FULLDPLX)
373 phydev->duplex = DUPLEX_FULL;
374
375 if (bmcr & BMCR_SPEED1000)
376 phydev->speed = SPEED_1000;
377 else if (bmcr & BMCR_SPEED100)
378 phydev->speed = SPEED_100;
379 }
380
381 return 0;
382}
383
384int genphy_config(struct phy_device *phydev)
385{
386 int val;
387 u32 features;
388
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500389 features = (SUPPORTED_TP | SUPPORTED_MII
390 | SUPPORTED_AUI | SUPPORTED_FIBRE |
391 SUPPORTED_BNC);
392
393 /* Do we support autonegotiation? */
394 val = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMSR);
395
396 if (val < 0)
397 return val;
398
399 if (val & BMSR_ANEGCAPABLE)
400 features |= SUPPORTED_Autoneg;
401
402 if (val & BMSR_100FULL)
403 features |= SUPPORTED_100baseT_Full;
404 if (val & BMSR_100HALF)
405 features |= SUPPORTED_100baseT_Half;
406 if (val & BMSR_10FULL)
407 features |= SUPPORTED_10baseT_Full;
408 if (val & BMSR_10HALF)
409 features |= SUPPORTED_10baseT_Half;
410
411 if (val & BMSR_ESTATEN) {
412 val = phy_read(phydev, MDIO_DEVAD_NONE, MII_ESTATUS);
413
414 if (val < 0)
415 return val;
416
417 if (val & ESTATUS_1000_TFULL)
418 features |= SUPPORTED_1000baseT_Full;
419 if (val & ESTATUS_1000_THALF)
420 features |= SUPPORTED_1000baseT_Half;
Charles Coldwell23329412013-02-21 08:25:52 -0500421 if (val & ESTATUS_1000_XFULL)
422 features |= SUPPORTED_1000baseX_Full;
423 if (val & ESTATUS_1000_XHALF)
Fabio Estevam45d601e2013-07-19 10:01:34 -0300424 features |= SUPPORTED_1000baseX_Half;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500425 }
426
Sascha Hauer6cc1e7d2016-01-13 16:59:32 +0300427 phydev->supported &= features;
428 phydev->advertising &= features;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500429
430 genphy_config_aneg(phydev);
431
432 return 0;
433}
434
435int genphy_startup(struct phy_device *phydev)
436{
Michal Simek5ff89662016-05-18 12:46:12 +0200437 int ret;
438
439 ret = genphy_update_link(phydev);
440 if (ret)
441 return ret;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500442
Michal Simek5ff89662016-05-18 12:46:12 +0200443 return genphy_parse_link(phydev);
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500444}
445
446int genphy_shutdown(struct phy_device *phydev)
447{
448 return 0;
449}
450
451static struct phy_driver genphy_driver = {
452 .uid = 0xffffffff,
453 .mask = 0xffffffff,
454 .name = "Generic PHY",
Sascha Hauer6cc1e7d2016-01-13 16:59:32 +0300455 .features = PHY_GBIT_FEATURES | SUPPORTED_MII |
456 SUPPORTED_AUI | SUPPORTED_FIBRE |
457 SUPPORTED_BNC,
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500458 .config = genphy_config,
459 .startup = genphy_startup,
460 .shutdown = genphy_shutdown,
461};
462
Siva Durga Prasad Paladugu1daad9e2019-03-15 17:46:47 +0530463int genphy_init(void)
464{
465 return phy_register(&genphy_driver);
466}
467
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500468static LIST_HEAD(phy_drivers);
469
470int phy_init(void)
471{
Siva Durga Prasad Paladuguf1137542019-03-04 16:01:30 +0100472#ifdef CONFIG_NEEDS_MANUAL_RELOC
473 /*
474 * The pointers inside phy_drivers also needs to be updated incase of
475 * manual reloc, without which these points to some invalid
476 * pre reloc address and leads to invalid accesses, hangs.
477 */
478 struct list_head *head = &phy_drivers;
479
480 head->next = (void *)head->next + gd->reloc_off;
481 head->prev = (void *)head->prev + gd->reloc_off;
482#endif
483
Florian Fainelli01b4ade2017-12-09 14:59:54 -0800484#ifdef CONFIG_B53_SWITCH
485 phy_b53_init();
486#endif
Kevin Smith87b2c4e2016-03-31 19:33:12 +0000487#ifdef CONFIG_MV88E61XX_SWITCH
488 phy_mv88e61xx_init();
489#endif
Shaohui Xie0e548d72014-12-30 18:32:04 +0800490#ifdef CONFIG_PHY_AQUANTIA
491 phy_aquantia_init();
492#endif
Andy Fleming60ca78b2011-04-07 21:56:05 -0500493#ifdef CONFIG_PHY_ATHEROS
494 phy_atheros_init();
495#endif
496#ifdef CONFIG_PHY_BROADCOM
497 phy_broadcom_init();
498#endif
Shengzhou Liuc878bdb2014-11-10 18:32:29 +0800499#ifdef CONFIG_PHY_CORTINA
500 phy_cortina_init();
501#endif
Andy Fleming60ca78b2011-04-07 21:56:05 -0500502#ifdef CONFIG_PHY_DAVICOM
503 phy_davicom_init();
504#endif
Matt Porter3bbeb792013-03-20 05:38:13 +0000505#ifdef CONFIG_PHY_ET1011C
506 phy_et1011c_init();
507#endif
Andy Fleming60ca78b2011-04-07 21:56:05 -0500508#ifdef CONFIG_PHY_LXT
509 phy_lxt_init();
510#endif
511#ifdef CONFIG_PHY_MARVELL
512 phy_marvell_init();
513#endif
Alexandru Gagniuc757bb672017-07-07 11:36:57 -0700514#ifdef CONFIG_PHY_MICREL_KSZ8XXX
515 phy_micrel_ksz8xxx_init();
516#endif
517#ifdef CONFIG_PHY_MICREL_KSZ90X1
518 phy_micrel_ksz90x1_init();
Andy Fleming60ca78b2011-04-07 21:56:05 -0500519#endif
Neil Armstrong7a4c90d2017-10-18 10:02:10 +0200520#ifdef CONFIG_PHY_MESON_GXL
521 phy_meson_gxl_init();
522#endif
Andy Fleming60ca78b2011-04-07 21:56:05 -0500523#ifdef CONFIG_PHY_NATSEMI
524 phy_natsemi_init();
525#endif
526#ifdef CONFIG_PHY_REALTEK
527 phy_realtek_init();
528#endif
Nobuhiro Iwamatsu61134dc2011-11-23 21:24:15 +0000529#ifdef CONFIG_PHY_SMSC
530 phy_smsc_init();
531#endif
Andy Fleming60ca78b2011-04-07 21:56:05 -0500532#ifdef CONFIG_PHY_TERANETICS
533 phy_teranetics_init();
534#endif
Edgar E. Iglesias8d3ce682015-09-25 23:46:08 -0700535#ifdef CONFIG_PHY_TI
536 phy_ti_init();
537#endif
Andy Fleming60ca78b2011-04-07 21:56:05 -0500538#ifdef CONFIG_PHY_VITESSE
539 phy_vitesse_init();
540#endif
Siva Durga Prasad Paladugudd6cbd32016-02-05 13:22:10 +0530541#ifdef CONFIG_PHY_XILINX
542 phy_xilinx_init();
543#endif
John Haechtenee253f92016-12-09 22:15:17 +0000544#ifdef CONFIG_PHY_MSCC
545 phy_mscc_init();
546#endif
Hannes Schmelzerda494602017-03-23 15:11:43 +0100547#ifdef CONFIG_PHY_FIXED
548 phy_fixed_init();
549#endif
Samuel Mendoza-Jonasb069c4a2019-06-18 11:37:18 +1000550#ifdef CONFIG_PHY_NCSI
551 phy_ncsi_init();
552#endif
Siva Durga Prasad Paladugud5c4e1e2018-11-27 11:49:11 +0530553#ifdef CONFIG_PHY_XILINX_GMII2RGMII
554 phy_xilinx_gmii2rgmii_init();
555#endif
Siva Durga Prasad Paladugu1daad9e2019-03-15 17:46:47 +0530556 genphy_init();
557
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500558 return 0;
559}
560
561int phy_register(struct phy_driver *drv)
562{
563 INIT_LIST_HEAD(&drv->list);
564 list_add_tail(&drv->list, &phy_drivers);
565
Michal Simek5f676312015-05-13 13:40:40 +0200566#ifdef CONFIG_NEEDS_MANUAL_RELOC
567 if (drv->probe)
568 drv->probe += gd->reloc_off;
569 if (drv->config)
570 drv->config += gd->reloc_off;
571 if (drv->startup)
572 drv->startup += gd->reloc_off;
573 if (drv->shutdown)
574 drv->shutdown += gd->reloc_off;
575 if (drv->readext)
576 drv->readext += gd->reloc_off;
577 if (drv->writeext)
578 drv->writeext += gd->reloc_off;
Carlo Caione4de87e22019-02-08 17:25:06 +0000579 if (drv->read_mmd)
580 drv->read_mmd += gd->reloc_off;
581 if (drv->write_mmd)
582 drv->write_mmd += gd->reloc_off;
Michal Simek5f676312015-05-13 13:40:40 +0200583#endif
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500584 return 0;
585}
586
Alexey Brodkine476bb22016-01-13 16:59:34 +0300587int phy_set_supported(struct phy_device *phydev, u32 max_speed)
588{
589 /* The default values for phydev->supported are provided by the PHY
590 * driver "features" member, we want to reset to sane defaults first
591 * before supporting higher speeds.
592 */
593 phydev->supported &= PHY_DEFAULT_FEATURES;
594
595 switch (max_speed) {
596 default:
597 return -ENOTSUPP;
598 case SPEED_1000:
599 phydev->supported |= PHY_1000BT_FEATURES;
600 /* fall through */
601 case SPEED_100:
602 phydev->supported |= PHY_100BT_FEATURES;
603 /* fall through */
604 case SPEED_10:
605 phydev->supported |= PHY_10BT_FEATURES;
606 }
607
608 return 0;
609}
610
Kim Phillips914b0782012-10-29 13:34:34 +0000611static int phy_probe(struct phy_device *phydev)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500612{
613 int err = 0;
614
Mario Six77577432018-01-15 11:08:27 +0100615 phydev->advertising = phydev->drv->features;
616 phydev->supported = phydev->drv->features;
617
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500618 phydev->mmds = phydev->drv->mmds;
619
620 if (phydev->drv->probe)
621 err = phydev->drv->probe(phydev);
622
623 return err;
624}
625
626static struct phy_driver *generic_for_interface(phy_interface_t interface)
627{
628#ifdef CONFIG_PHYLIB_10G
629 if (is_10g_interface(interface))
630 return &gen10g_driver;
631#endif
632
633 return &genphy_driver;
634}
635
Kim Phillips914b0782012-10-29 13:34:34 +0000636static struct phy_driver *get_phy_driver(struct phy_device *phydev,
Mario Six77577432018-01-15 11:08:27 +0100637 phy_interface_t interface)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500638{
639 struct list_head *entry;
640 int phy_id = phydev->phy_id;
641 struct phy_driver *drv = NULL;
642
643 list_for_each(entry, &phy_drivers) {
644 drv = list_entry(entry, struct phy_driver, list);
645 if ((drv->uid & drv->mask) == (phy_id & drv->mask))
646 return drv;
647 }
648
649 /* If we made it here, there's no driver for this PHY */
650 return generic_for_interface(interface);
651}
652
Kim Phillips914b0782012-10-29 13:34:34 +0000653static struct phy_device *phy_device_create(struct mii_dev *bus, int addr,
Pankaj Bansal3c43a482018-11-16 06:26:18 +0000654 u32 phy_id, bool is_c45,
Kim Phillips914b0782012-10-29 13:34:34 +0000655 phy_interface_t interface)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500656{
657 struct phy_device *dev;
658
Mario Six77577432018-01-15 11:08:27 +0100659 /*
660 * We allocate the device, and initialize the
661 * default values
662 */
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500663 dev = malloc(sizeof(*dev));
664 if (!dev) {
665 printf("Failed to allocate PHY device for %s:%d\n",
Mario Six77577432018-01-15 11:08:27 +0100666 bus->name, addr);
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500667 return NULL;
668 }
669
670 memset(dev, 0, sizeof(*dev));
671
672 dev->duplex = -1;
Mugunthan V Nbbc97ba2015-09-03 15:50:21 +0530673 dev->link = 0;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500674 dev->interface = interface;
675
Grygorii Strashko6189c062018-07-05 12:02:48 -0500676#ifdef CONFIG_DM_ETH
677 dev->node = ofnode_null();
678#endif
679
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500680 dev->autoneg = AUTONEG_ENABLE;
681
682 dev->addr = addr;
683 dev->phy_id = phy_id;
Pankaj Bansal3c43a482018-11-16 06:26:18 +0000684 dev->is_c45 = is_c45;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500685 dev->bus = bus;
686
687 dev->drv = get_phy_driver(dev, interface);
688
Siva Durga Prasad Paladugua7228482019-03-04 16:02:11 +0100689 if (phy_probe(dev)) {
690 printf("%s, PHY probe failed\n", __func__);
691 return NULL;
692 }
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500693
Michal Simek02a99d72018-12-19 16:57:38 +0100694 if (addr >= 0 && addr < PHY_MAX_ADDR)
695 bus->phymap[addr] = dev;
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500696
697 return dev;
698}
699
700/**
701 * get_phy_id - reads the specified addr for its ID.
702 * @bus: the target MII bus
703 * @addr: PHY address on the MII bus
704 * @phy_id: where to store the ID retrieved.
705 *
706 * Description: Reads the ID registers of the PHY at @addr on the
707 * @bus, stores it in @phy_id and returns zero on success.
708 */
Shengzhou Liu072b0fa2015-04-07 18:46:32 +0800709int __weak get_phy_id(struct mii_dev *bus, int addr, int devad, u32 *phy_id)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500710{
711 int phy_reg;
712
Mario Six77577432018-01-15 11:08:27 +0100713 /*
714 * Grab the bits from PHYIR1, and put them
715 * in the upper half
716 */
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500717 phy_reg = bus->read(bus, addr, devad, MII_PHYSID1);
718
719 if (phy_reg < 0)
720 return -EIO;
721
722 *phy_id = (phy_reg & 0xffff) << 16;
723
724 /* Grab the bits from PHYIR2, and put them in the lower half */
725 phy_reg = bus->read(bus, addr, devad, MII_PHYSID2);
726
727 if (phy_reg < 0)
728 return -EIO;
729
730 *phy_id |= (phy_reg & 0xffff);
731
732 return 0;
733}
734
Troy Kisky9519bc52012-10-22 16:40:43 +0000735static struct phy_device *create_phy_by_mask(struct mii_dev *bus,
Mario Six77577432018-01-15 11:08:27 +0100736 uint phy_mask, int devad,
737 phy_interface_t interface)
Troy Kisky9519bc52012-10-22 16:40:43 +0000738{
739 u32 phy_id = 0xffffffff;
Pankaj Bansal3c43a482018-11-16 06:26:18 +0000740 bool is_c45;
Mario Six77577432018-01-15 11:08:27 +0100741
Troy Kisky9519bc52012-10-22 16:40:43 +0000742 while (phy_mask) {
743 int addr = ffs(phy_mask) - 1;
744 int r = get_phy_id(bus, addr, devad, &phy_id);
Alex Marginean920fe672019-07-05 12:28:55 +0300745
746 /*
747 * If the PHY ID is flat 0 we ignore it. There are C45 PHYs
748 * that return all 0s for C22 reads (like Aquantia AQR112) and
749 * there are C22 PHYs that return all 0s for C45 reads (like
750 * Atheros AR8035).
751 */
752 if (r == 0 && phy_id == 0)
753 goto next;
754
Troy Kisky9519bc52012-10-22 16:40:43 +0000755 /* If the PHY ID is mostly f's, we didn't find anything */
Pankaj Bansal3c43a482018-11-16 06:26:18 +0000756 if (r == 0 && (phy_id & 0x1fffffff) != 0x1fffffff) {
757 is_c45 = (devad == MDIO_DEVAD_NONE) ? false : true;
758 return phy_device_create(bus, addr, phy_id, is_c45,
759 interface);
760 }
Alex Marginean920fe672019-07-05 12:28:55 +0300761next:
Troy Kisky9519bc52012-10-22 16:40:43 +0000762 phy_mask &= ~(1 << addr);
763 }
764 return NULL;
765}
766
767static struct phy_device *search_for_existing_phy(struct mii_dev *bus,
Mario Six77577432018-01-15 11:08:27 +0100768 uint phy_mask,
769 phy_interface_t interface)
Troy Kisky9519bc52012-10-22 16:40:43 +0000770{
771 /* If we have one, return the existing device, with new interface */
772 while (phy_mask) {
773 int addr = ffs(phy_mask) - 1;
Mario Six77577432018-01-15 11:08:27 +0100774
Troy Kisky9519bc52012-10-22 16:40:43 +0000775 if (bus->phymap[addr]) {
776 bus->phymap[addr]->interface = interface;
777 return bus->phymap[addr];
778 }
779 phy_mask &= ~(1 << addr);
780 }
781 return NULL;
782}
783
784static struct phy_device *get_phy_device_by_mask(struct mii_dev *bus,
Mario Six77577432018-01-15 11:08:27 +0100785 uint phy_mask,
786 phy_interface_t interface)
Troy Kisky9519bc52012-10-22 16:40:43 +0000787{
788 int i;
789 struct phy_device *phydev;
790
791 phydev = search_for_existing_phy(bus, phy_mask, interface);
792 if (phydev)
793 return phydev;
794 /* Try Standard (ie Clause 22) access */
795 /* Otherwise we have to try Clause 45 */
796 for (i = 0; i < 5; i++) {
797 phydev = create_phy_by_mask(bus, phy_mask,
Mario Six77577432018-01-15 11:08:27 +0100798 i ? i : MDIO_DEVAD_NONE, interface);
Troy Kisky9519bc52012-10-22 16:40:43 +0000799 if (IS_ERR(phydev))
800 return NULL;
801 if (phydev)
802 return phydev;
803 }
Bin Meng59c6d892015-10-07 21:19:30 -0700804
805 debug("\n%s PHY: ", bus->name);
806 while (phy_mask) {
807 int addr = ffs(phy_mask) - 1;
Mario Six77577432018-01-15 11:08:27 +0100808
Bin Meng59c6d892015-10-07 21:19:30 -0700809 debug("%d ", addr);
810 phy_mask &= ~(1 << addr);
811 }
812 debug("not found\n");
Bin Meng0776c572015-10-07 21:19:29 -0700813
814 return NULL;
Troy Kisky9519bc52012-10-22 16:40:43 +0000815}
816
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500817/**
Mario Six77577432018-01-15 11:08:27 +0100818 * get_phy_device - reads the specified PHY device and returns its
819 * @phy_device struct
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500820 * @bus: the target MII bus
821 * @addr: PHY address on the MII bus
822 *
823 * Description: Reads the ID registers of the PHY at @addr on the
824 * @bus, then allocates and returns the phy_device to represent it.
825 */
Kim Phillips914b0782012-10-29 13:34:34 +0000826static struct phy_device *get_phy_device(struct mii_dev *bus, int addr,
827 phy_interface_t interface)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500828{
Troy Kisky9519bc52012-10-22 16:40:43 +0000829 return get_phy_device_by_mask(bus, 1 << addr, interface);
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500830}
831
832int phy_reset(struct phy_device *phydev)
833{
834 int reg;
835 int timeout = 500;
836 int devad = MDIO_DEVAD_NONE;
837
Shaohui Xie62a7b922016-01-28 15:55:46 +0800838 if (phydev->flags & PHY_FLAG_BROKEN_RESET)
839 return 0;
840
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500841#ifdef CONFIG_PHYLIB_10G
842 /* If it's 10G, we need to issue reset through one of the MMDs */
843 if (is_10g_interface(phydev->interface)) {
844 if (!phydev->mmds)
845 gen10g_discover_mmds(phydev);
846
847 devad = ffs(phydev->mmds) - 1;
848 }
849#endif
850
Stefan Agnere64013d2015-12-09 11:21:25 -0800851 if (phy_write(phydev, devad, MII_BMCR, BMCR_RESET) < 0) {
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500852 debug("PHY reset failed\n");
853 return -1;
854 }
855
856#ifdef CONFIG_PHY_RESET_DELAY
857 udelay(CONFIG_PHY_RESET_DELAY); /* Intel LXT971A needs this */
858#endif
859 /*
860 * Poll the control register for the reset bit to go to 0 (it is
861 * auto-clearing). This should happen within 0.5 seconds per the
862 * IEEE spec.
863 */
Stefan Agnere64013d2015-12-09 11:21:25 -0800864 reg = phy_read(phydev, devad, MII_BMCR);
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500865 while ((reg & BMCR_RESET) && timeout--) {
866 reg = phy_read(phydev, devad, MII_BMCR);
867
868 if (reg < 0) {
869 debug("PHY status read failed\n");
870 return -1;
871 }
872 udelay(1000);
873 }
874
875 if (reg & BMCR_RESET) {
876 puts("PHY reset timed out\n");
877 return -1;
878 }
879
880 return 0;
881}
882
883int miiphy_reset(const char *devname, unsigned char addr)
884{
885 struct mii_dev *bus = miiphy_get_dev_by_name(devname);
886 struct phy_device *phydev;
887
888 /*
889 * miiphy_reset was only used on standard PHYs, so we'll fake it here.
890 * If later code tries to connect with the right interface, this will
891 * be corrected by get_phy_device in phy_connect()
892 */
893 phydev = get_phy_device(bus, addr, PHY_INTERFACE_MODE_MII);
894
895 return phy_reset(phydev);
896}
897
Mario Six77577432018-01-15 11:08:27 +0100898struct phy_device *phy_find_by_mask(struct mii_dev *bus, uint phy_mask,
899 phy_interface_t interface)
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500900{
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500901 /* Reset the bus */
Jörg Krause71b1d862015-07-15 15:18:22 +0200902 if (bus->reset) {
Vladimir Zapolskiy46f10bb2011-09-05 07:24:07 +0000903 bus->reset(bus);
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500904
Jörg Krause71b1d862015-07-15 15:18:22 +0200905 /* Wait 15ms to make sure the PHY has come out of hard reset */
Mario Six77577432018-01-15 11:08:27 +0100906 mdelay(15);
Jörg Krause71b1d862015-07-15 15:18:22 +0200907 }
908
Troy Kisky9519bc52012-10-22 16:40:43 +0000909 return get_phy_device_by_mask(bus, phy_mask, interface);
910}
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500911
Simon Glassdbad3462015-04-05 16:07:39 -0600912#ifdef CONFIG_DM_ETH
913void phy_connect_dev(struct phy_device *phydev, struct udevice *dev)
914#else
Troy Kisky9519bc52012-10-22 16:40:43 +0000915void phy_connect_dev(struct phy_device *phydev, struct eth_device *dev)
Simon Glassdbad3462015-04-05 16:07:39 -0600916#endif
Troy Kisky9519bc52012-10-22 16:40:43 +0000917{
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500918 /* Soft Reset the PHY */
919 phy_reset(phydev);
Bin Mengf87a15c2015-10-07 21:19:31 -0700920 if (phydev->dev && phydev->dev != dev) {
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500921 printf("%s:%d is connected to %s. Reconnecting to %s\n",
Mario Six77577432018-01-15 11:08:27 +0100922 phydev->bus->name, phydev->addr,
923 phydev->dev->name, dev->name);
Troy Kisky9519bc52012-10-22 16:40:43 +0000924 }
Andy Flemingaecf6fc2011-04-08 02:10:27 -0500925 phydev->dev = dev;
Wolfgang Denka71ebc42011-07-24 21:39:10 +0000926 debug("%s connected to %s\n", dev->name, phydev->drv->name);
Troy Kisky9519bc52012-10-22 16:40:43 +0000927}
Siva Durga Prasad Paladugud5c4e1e2018-11-27 11:49:11 +0530928
929#ifdef CONFIG_PHY_XILINX_GMII2RGMII
930#ifdef CONFIG_DM_ETH
931static struct phy_device *phy_connect_gmii2rgmii(struct mii_dev *bus,
932 struct udevice *dev,
933 phy_interface_t interface)
934#else
935static struct phy_device *phy_connect_gmii2rgmii(struct mii_dev *bus,
936 struct eth_device *dev,
937 phy_interface_t interface)
938#endif
939{
940 struct phy_device *phydev = NULL;
941 int sn = dev_of_offset(dev);
942 int off;
943
944 while (sn > 0) {
945 off = fdt_node_offset_by_compatible(gd->fdt_blob, sn,
946 "xlnx,gmii-to-rgmii-1.0");
947 if (off > 0) {
948 phydev = phy_device_create(bus, off,
949 PHY_GMII2RGMII_ID, false,
950 interface);
951 break;
952 }
953 if (off == -FDT_ERR_NOTFOUND)
954 sn = fdt_first_subnode(gd->fdt_blob, sn);
955 else
956 printf("%s: Error finding compat string:%d\n",
957 __func__, off);
958 }
959
960 return phydev;
961}
962#endif
Troy Kisky9519bc52012-10-22 16:40:43 +0000963
Siva Durga Prasad Paladugu03f937a2018-11-27 11:49:10 +0530964#ifdef CONFIG_PHY_FIXED
Simon Glassdbad3462015-04-05 16:07:39 -0600965#ifdef CONFIG_DM_ETH
Siva Durga Prasad Paladugu03f937a2018-11-27 11:49:10 +0530966static struct phy_device *phy_connect_fixed(struct mii_dev *bus,
967 struct udevice *dev,
968 phy_interface_t interface)
Simon Glassdbad3462015-04-05 16:07:39 -0600969#else
Siva Durga Prasad Paladugu03f937a2018-11-27 11:49:10 +0530970static struct phy_device *phy_connect_fixed(struct mii_dev *bus,
971 struct eth_device *dev,
972 phy_interface_t interface)
Simon Glassdbad3462015-04-05 16:07:39 -0600973#endif
Troy Kisky9519bc52012-10-22 16:40:43 +0000974{
Hannes Schmelzerda494602017-03-23 15:11:43 +0100975 struct phy_device *phydev = NULL;
Hannes Schmelzerda494602017-03-23 15:11:43 +0100976 int sn;
977 const char *name;
Mario Six77577432018-01-15 11:08:27 +0100978
Simon Glass7a494432017-05-17 17:18:09 -0600979 sn = fdt_first_subnode(gd->fdt_blob, dev_of_offset(dev));
Hannes Schmelzerda494602017-03-23 15:11:43 +0100980 while (sn > 0) {
981 name = fdt_get_name(gd->fdt_blob, sn, NULL);
Mario Six77577432018-01-15 11:08:27 +0100982 if (name && strcmp(name, "fixed-link") == 0) {
Pankaj Bansal3c43a482018-11-16 06:26:18 +0000983 phydev = phy_device_create(bus, sn, PHY_FIXED_ID, false,
984 interface);
Hannes Schmelzerda494602017-03-23 15:11:43 +0100985 break;
986 }
987 sn = fdt_next_subnode(gd->fdt_blob, sn);
988 }
Siva Durga Prasad Paladugu03f937a2018-11-27 11:49:10 +0530989
990 return phydev;
991}
Hannes Schmelzerda494602017-03-23 15:11:43 +0100992#endif
Siva Durga Prasad Paladugu03f937a2018-11-27 11:49:10 +0530993
994#ifdef CONFIG_DM_ETH
995struct phy_device *phy_connect(struct mii_dev *bus, int addr,
996 struct udevice *dev,
997 phy_interface_t interface)
998#else
999struct phy_device *phy_connect(struct mii_dev *bus, int addr,
1000 struct eth_device *dev,
1001 phy_interface_t interface)
1002#endif
1003{
1004 struct phy_device *phydev = NULL;
Priyanka Jain11691fd2019-11-05 04:05:11 +00001005 uint mask = (addr >= 0) ? (1 << addr) : 0xffffffff;
Siva Durga Prasad Paladugu03f937a2018-11-27 11:49:10 +05301006
1007#ifdef CONFIG_PHY_FIXED
1008 phydev = phy_connect_fixed(bus, dev, interface);
1009#endif
Samuel Mendoza-Jonasb069c4a2019-06-18 11:37:18 +10001010
1011#ifdef CONFIG_PHY_NCSI
1012 if (!phydev)
1013 phydev = phy_device_create(bus, 0, PHY_NCSI_ID, false, interface);
1014#endif
1015
Siva Durga Prasad Paladugud5c4e1e2018-11-27 11:49:11 +05301016#ifdef CONFIG_PHY_XILINX_GMII2RGMII
1017 if (!phydev)
1018 phydev = phy_connect_gmii2rgmii(bus, dev, interface);
1019#endif
Siva Durga Prasad Paladugu03f937a2018-11-27 11:49:10 +05301020
Mario Six77577432018-01-15 11:08:27 +01001021 if (!phydev)
Hannes Schmelzer02505e92019-03-29 09:54:05 +01001022 phydev = phy_find_by_mask(bus, mask, interface);
Andy Flemingaecf6fc2011-04-08 02:10:27 -05001023
Troy Kisky9519bc52012-10-22 16:40:43 +00001024 if (phydev)
1025 phy_connect_dev(phydev, dev);
1026 else
1027 printf("Could not get PHY for %s: addr %d\n", bus->name, addr);
Andy Flemingaecf6fc2011-04-08 02:10:27 -05001028 return phydev;
1029}
1030
Timur Tabi251180b2012-07-05 10:33:18 +00001031/*
1032 * Start the PHY. Returns 0 on success, or a negative error code.
1033 */
Andy Flemingaecf6fc2011-04-08 02:10:27 -05001034int phy_startup(struct phy_device *phydev)
1035{
1036 if (phydev->drv->startup)
Timur Tabi251180b2012-07-05 10:33:18 +00001037 return phydev->drv->startup(phydev);
Andy Flemingaecf6fc2011-04-08 02:10:27 -05001038
1039 return 0;
1040}
1041
Jeroen Hofsteee4f89472014-10-08 22:57:26 +02001042__weak int board_phy_config(struct phy_device *phydev)
Andy Flemingaecf6fc2011-04-08 02:10:27 -05001043{
Troy Kisky85846412012-02-07 14:08:49 +00001044 if (phydev->drv->config)
1045 return phydev->drv->config(phydev);
Andy Flemingaecf6fc2011-04-08 02:10:27 -05001046 return 0;
1047}
1048
Andy Flemingaecf6fc2011-04-08 02:10:27 -05001049int phy_config(struct phy_device *phydev)
1050{
Andy Flemingaecf6fc2011-04-08 02:10:27 -05001051 /* Invoke an optional board-specific helper */
Michal Simek24ce2322016-05-18 14:37:23 +02001052 return board_phy_config(phydev);
Andy Flemingaecf6fc2011-04-08 02:10:27 -05001053}
1054
1055int phy_shutdown(struct phy_device *phydev)
1056{
1057 if (phydev->drv->shutdown)
1058 phydev->drv->shutdown(phydev);
1059
1060 return 0;
1061}
Simon Glassdbad3462015-04-05 16:07:39 -06001062
1063int phy_get_interface_by_name(const char *str)
1064{
1065 int i;
1066
1067 for (i = 0; i < PHY_INTERFACE_MODE_COUNT; i++) {
1068 if (!strcmp(str, phy_interface_strings[i]))
1069 return i;
1070 }
1071
1072 return -1;
1073}