blob: e837eb7688cc0e70623971bcb9bec2c7572c2a8d [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Andy Fleming5f184712011-04-08 02:10:27 -05002/*
3 * Generic PHY Management code
4 *
Andy Fleming5f184712011-04-08 02:10:27 -05005 * Copyright 2011 Freescale Semiconductor, Inc.
6 * author Andy Fleming
7 *
8 * Based loosely off of Linux's PHY Lib
9 */
Andy Fleming5f184712011-04-08 02:10:27 -050010#include <common.h>
Simon Glass24b852a2015-11-08 23:47:45 -070011#include <console.h>
Simon Glassc74c8e62015-04-05 16:07:39 -060012#include <dm.h>
Andy Fleming5f184712011-04-08 02:10:27 -050013#include <malloc.h>
14#include <net.h>
15#include <command.h>
16#include <miiphy.h>
17#include <phy.h>
18#include <errno.h>
Troy Kisky1adb4062012-10-22 16:40:43 +000019#include <linux/err.h>
Shengzhou Liu597fe042014-04-11 16:14:17 +080020#include <linux/compiler.h>
Andy Fleming5f184712011-04-08 02:10:27 -050021
Michal Simekabbfcbe2015-05-13 13:40:40 +020022DECLARE_GLOBAL_DATA_PTR;
23
Andy Fleming5f184712011-04-08 02:10:27 -050024/* Generic PHY support and helper functions */
25
26/**
Mario Six8d631202018-01-15 11:08:27 +010027 * genphy_config_advert - sanitize and advertise auto-negotiation parameters
Andy Fleming5f184712011-04-08 02:10:27 -050028 * @phydev: target phy_device struct
29 *
30 * Description: Writes MII_ADVERTISE with the appropriate values,
31 * after sanitizing the values to make sure we only advertise
32 * what is supported. Returns < 0 on error, 0 if the PHY's advertisement
33 * hasn't changed, and > 0 if it has changed.
34 */
Kim Phillips960d70c2012-10-29 13:34:34 +000035static int genphy_config_advert(struct phy_device *phydev)
Andy Fleming5f184712011-04-08 02:10:27 -050036{
37 u32 advertise;
Florian Fainellibbdcaff2016-01-13 16:59:31 +030038 int oldadv, adv, bmsr;
Andy Fleming5f184712011-04-08 02:10:27 -050039 int err, changed = 0;
40
Florian Fainellibbdcaff2016-01-13 16:59:31 +030041 /* Only allow advertising what this PHY supports */
Andy Fleming5f184712011-04-08 02:10:27 -050042 phydev->advertising &= phydev->supported;
43 advertise = phydev->advertising;
44
45 /* Setup standard advertisement */
Florian Fainellibbdcaff2016-01-13 16:59:31 +030046 adv = phy_read(phydev, MDIO_DEVAD_NONE, MII_ADVERTISE);
47 oldadv = adv;
Andy Fleming5f184712011-04-08 02:10:27 -050048
49 if (adv < 0)
50 return adv;
51
52 adv &= ~(ADVERTISE_ALL | ADVERTISE_100BASE4 | ADVERTISE_PAUSE_CAP |
53 ADVERTISE_PAUSE_ASYM);
54 if (advertise & ADVERTISED_10baseT_Half)
55 adv |= ADVERTISE_10HALF;
56 if (advertise & ADVERTISED_10baseT_Full)
57 adv |= ADVERTISE_10FULL;
58 if (advertise & ADVERTISED_100baseT_Half)
59 adv |= ADVERTISE_100HALF;
60 if (advertise & ADVERTISED_100baseT_Full)
61 adv |= ADVERTISE_100FULL;
62 if (advertise & ADVERTISED_Pause)
63 adv |= ADVERTISE_PAUSE_CAP;
64 if (advertise & ADVERTISED_Asym_Pause)
65 adv |= ADVERTISE_PAUSE_ASYM;
Charles Coldwellde1d7862013-02-21 08:25:52 -050066 if (advertise & ADVERTISED_1000baseX_Half)
67 adv |= ADVERTISE_1000XHALF;
68 if (advertise & ADVERTISED_1000baseX_Full)
69 adv |= ADVERTISE_1000XFULL;
Andy Fleming5f184712011-04-08 02:10:27 -050070
71 if (adv != oldadv) {
72 err = phy_write(phydev, MDIO_DEVAD_NONE, MII_ADVERTISE, adv);
73
74 if (err < 0)
75 return err;
76 changed = 1;
77 }
78
Florian Fainellibbdcaff2016-01-13 16:59:31 +030079 bmsr = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMSR);
80 if (bmsr < 0)
81 return bmsr;
82
83 /* Per 802.3-2008, Section 22.2.4.2.16 Extended status all
84 * 1000Mbits/sec capable PHYs shall have the BMSR_ESTATEN bit set to a
85 * logical 1.
86 */
87 if (!(bmsr & BMSR_ESTATEN))
88 return changed;
89
Andy Fleming5f184712011-04-08 02:10:27 -050090 /* Configure gigabit if it's supported */
Florian Fainellibbdcaff2016-01-13 16:59:31 +030091 adv = phy_read(phydev, MDIO_DEVAD_NONE, MII_CTRL1000);
92 oldadv = adv;
93
94 if (adv < 0)
95 return adv;
96
97 adv &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF);
98
Andy Fleming5f184712011-04-08 02:10:27 -050099 if (phydev->supported & (SUPPORTED_1000baseT_Half |
100 SUPPORTED_1000baseT_Full)) {
Andy Fleming5f184712011-04-08 02:10:27 -0500101 if (advertise & SUPPORTED_1000baseT_Half)
102 adv |= ADVERTISE_1000HALF;
103 if (advertise & SUPPORTED_1000baseT_Full)
104 adv |= ADVERTISE_1000FULL;
Andy Fleming5f184712011-04-08 02:10:27 -0500105 }
106
Florian Fainellibbdcaff2016-01-13 16:59:31 +0300107 if (adv != oldadv)
108 changed = 1;
109
110 err = phy_write(phydev, MDIO_DEVAD_NONE, MII_CTRL1000, adv);
111 if (err < 0)
112 return err;
113
Andy Fleming5f184712011-04-08 02:10:27 -0500114 return changed;
115}
116
Andy Fleming5f184712011-04-08 02:10:27 -0500117/**
118 * genphy_setup_forced - configures/forces speed/duplex from @phydev
119 * @phydev: target phy_device struct
120 *
121 * Description: Configures MII_BMCR to force speed/duplex
122 * to the values in phydev. Assumes that the values are valid.
123 */
Kim Phillips960d70c2012-10-29 13:34:34 +0000124static int genphy_setup_forced(struct phy_device *phydev)
Andy Fleming5f184712011-04-08 02:10:27 -0500125{
126 int err;
Alexandre Messier53b0c382016-01-22 14:16:15 -0500127 int ctl = BMCR_ANRESTART;
Andy Fleming5f184712011-04-08 02:10:27 -0500128
Mario Six8d631202018-01-15 11:08:27 +0100129 phydev->pause = 0;
130 phydev->asym_pause = 0;
Andy Fleming5f184712011-04-08 02:10:27 -0500131
Mario Six8d631202018-01-15 11:08:27 +0100132 if (phydev->speed == SPEED_1000)
Andy Fleming5f184712011-04-08 02:10:27 -0500133 ctl |= BMCR_SPEED1000;
Mario Six8d631202018-01-15 11:08:27 +0100134 else if (phydev->speed == SPEED_100)
Andy Fleming5f184712011-04-08 02:10:27 -0500135 ctl |= BMCR_SPEED100;
136
Mario Six8d631202018-01-15 11:08:27 +0100137 if (phydev->duplex == DUPLEX_FULL)
Andy Fleming5f184712011-04-08 02:10:27 -0500138 ctl |= BMCR_FULLDPLX;
139
140 err = phy_write(phydev, MDIO_DEVAD_NONE, MII_BMCR, ctl);
141
142 return err;
143}
144
Andy Fleming5f184712011-04-08 02:10:27 -0500145/**
146 * genphy_restart_aneg - Enable and Restart Autonegotiation
147 * @phydev: target phy_device struct
148 */
149int genphy_restart_aneg(struct phy_device *phydev)
150{
151 int ctl;
152
153 ctl = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMCR);
154
155 if (ctl < 0)
156 return ctl;
157
158 ctl |= (BMCR_ANENABLE | BMCR_ANRESTART);
159
160 /* Don't isolate the PHY if we're negotiating */
161 ctl &= ~(BMCR_ISOLATE);
162
163 ctl = phy_write(phydev, MDIO_DEVAD_NONE, MII_BMCR, ctl);
164
165 return ctl;
166}
167
Andy Fleming5f184712011-04-08 02:10:27 -0500168/**
169 * genphy_config_aneg - restart auto-negotiation or write BMCR
170 * @phydev: target phy_device struct
171 *
172 * Description: If auto-negotiation is enabled, we configure the
173 * advertising, and then restart auto-negotiation. If it is not
174 * enabled, then we write the BMCR.
175 */
176int genphy_config_aneg(struct phy_device *phydev)
177{
178 int result;
179
Mario Six8d631202018-01-15 11:08:27 +0100180 if (phydev->autoneg != AUTONEG_ENABLE)
Andy Fleming5f184712011-04-08 02:10:27 -0500181 return genphy_setup_forced(phydev);
182
183 result = genphy_config_advert(phydev);
184
185 if (result < 0) /* error */
186 return result;
187
188 if (result == 0) {
Mario Six8d631202018-01-15 11:08:27 +0100189 /*
190 * Advertisment hasn't changed, but maybe aneg was never on to
191 * begin with? Or maybe phy was isolated?
192 */
Andy Fleming5f184712011-04-08 02:10:27 -0500193 int ctl = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMCR);
194
195 if (ctl < 0)
196 return ctl;
197
198 if (!(ctl & BMCR_ANENABLE) || (ctl & BMCR_ISOLATE))
199 result = 1; /* do restart aneg */
200 }
201
Mario Six8d631202018-01-15 11:08:27 +0100202 /*
203 * Only restart aneg if we are advertising something different
204 * than we were before.
205 */
Andy Fleming5f184712011-04-08 02:10:27 -0500206 if (result > 0)
207 result = genphy_restart_aneg(phydev);
208
209 return result;
210}
211
212/**
213 * genphy_update_link - update link status in @phydev
214 * @phydev: target phy_device struct
215 *
216 * Description: Update the value in phydev->link to reflect the
217 * current link value. In order to do this, we need to read
218 * the status register twice, keeping the second value.
219 */
220int genphy_update_link(struct phy_device *phydev)
221{
222 unsigned int mii_reg;
223
224 /*
225 * Wait if the link is up, and autonegotiation is in progress
226 * (ie - we're capable and it's not done)
227 */
228 mii_reg = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMSR);
229
230 /*
231 * If we already saw the link up, and it hasn't gone down, then
232 * we don't need to wait for autoneg again
233 */
234 if (phydev->link && mii_reg & BMSR_LSTATUS)
235 return 0;
236
Alexandre Messier1f9e6722016-01-22 14:16:56 -0500237 if ((phydev->autoneg == AUTONEG_ENABLE) &&
238 !(mii_reg & BMSR_ANEGCOMPLETE)) {
Andy Fleming5f184712011-04-08 02:10:27 -0500239 int i = 0;
240
241 printf("%s Waiting for PHY auto negotiation to complete",
Mario Six8d631202018-01-15 11:08:27 +0100242 phydev->dev->name);
Andy Fleming5f184712011-04-08 02:10:27 -0500243 while (!(mii_reg & BMSR_ANEGCOMPLETE)) {
244 /*
245 * Timeout reached ?
246 */
247 if (i > PHY_ANEG_TIMEOUT) {
248 printf(" TIMEOUT !\n");
249 phydev->link = 0;
Michal Simekef5e8212016-05-18 12:48:57 +0200250 return -ETIMEDOUT;
Andy Fleming5f184712011-04-08 02:10:27 -0500251 }
252
253 if (ctrlc()) {
254 puts("user interrupt!\n");
255 phydev->link = 0;
256 return -EINTR;
257 }
258
259 if ((i++ % 500) == 0)
260 printf(".");
261
262 udelay(1000); /* 1 ms */
263 mii_reg = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMSR);
264 }
265 printf(" done\n");
266 phydev->link = 1;
267 } else {
268 /* Read the link a second time to clear the latched state */
269 mii_reg = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMSR);
270
271 if (mii_reg & BMSR_LSTATUS)
272 phydev->link = 1;
273 else
274 phydev->link = 0;
275 }
276
277 return 0;
278}
279
280/*
281 * Generic function which updates the speed and duplex. If
282 * autonegotiation is enabled, it uses the AND of the link
283 * partner's advertised capabilities and our advertised
284 * capabilities. If autonegotiation is disabled, we use the
285 * appropriate bits in the control register.
286 *
287 * Stolen from Linux's mii.c and phy_device.c
288 */
Yegor Yefremove2043f52012-11-28 11:15:17 +0100289int genphy_parse_link(struct phy_device *phydev)
Andy Fleming5f184712011-04-08 02:10:27 -0500290{
291 int mii_reg = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMSR);
292
293 /* We're using autonegotiation */
Alexandre Messier1f9e6722016-01-22 14:16:56 -0500294 if (phydev->autoneg == AUTONEG_ENABLE) {
Andy Fleming5f184712011-04-08 02:10:27 -0500295 u32 lpa = 0;
Heiko Schocherf6d1f6e2013-07-23 15:32:36 +0200296 int gblpa = 0;
Charles Coldwellde1d7862013-02-21 08:25:52 -0500297 u32 estatus = 0;
Andy Fleming5f184712011-04-08 02:10:27 -0500298
299 /* Check for gigabit capability */
David Dueck3a530d12013-11-05 17:23:02 +0100300 if (phydev->supported & (SUPPORTED_1000baseT_Full |
301 SUPPORTED_1000baseT_Half)) {
Andy Fleming5f184712011-04-08 02:10:27 -0500302 /* We want a list of states supported by
303 * both PHYs in the link
304 */
305 gblpa = phy_read(phydev, MDIO_DEVAD_NONE, MII_STAT1000);
Heiko Schocherf6d1f6e2013-07-23 15:32:36 +0200306 if (gblpa < 0) {
Mario Six8d631202018-01-15 11:08:27 +0100307 debug("Could not read MII_STAT1000. ");
308 debug("Ignoring gigabit capability\n");
Heiko Schocherf6d1f6e2013-07-23 15:32:36 +0200309 gblpa = 0;
310 }
Andy Fleming5f184712011-04-08 02:10:27 -0500311 gblpa &= phy_read(phydev,
312 MDIO_DEVAD_NONE, MII_CTRL1000) << 2;
313 }
314
315 /* Set the baseline so we only have to set them
316 * if they're different
317 */
318 phydev->speed = SPEED_10;
319 phydev->duplex = DUPLEX_HALF;
320
321 /* Check the gigabit fields */
322 if (gblpa & (PHY_1000BTSR_1000FD | PHY_1000BTSR_1000HD)) {
323 phydev->speed = SPEED_1000;
324
325 if (gblpa & PHY_1000BTSR_1000FD)
326 phydev->duplex = DUPLEX_FULL;
327
328 /* We're done! */
329 return 0;
330 }
331
332 lpa = phy_read(phydev, MDIO_DEVAD_NONE, MII_ADVERTISE);
333 lpa &= phy_read(phydev, MDIO_DEVAD_NONE, MII_LPA);
334
Wolfgang Denk0dcfb0f2011-09-28 21:02:43 +0200335 if (lpa & (LPA_100FULL | LPA_100HALF)) {
Andy Fleming5f184712011-04-08 02:10:27 -0500336 phydev->speed = SPEED_100;
337
Wolfgang Denk0dcfb0f2011-09-28 21:02:43 +0200338 if (lpa & LPA_100FULL)
339 phydev->duplex = DUPLEX_FULL;
340
Mario Six8d631202018-01-15 11:08:27 +0100341 } else if (lpa & LPA_10FULL) {
Andy Fleming5f184712011-04-08 02:10:27 -0500342 phydev->duplex = DUPLEX_FULL;
Mario Six8d631202018-01-15 11:08:27 +0100343 }
Charles Coldwellde1d7862013-02-21 08:25:52 -0500344
Sascha Silbe9ba30f62013-07-19 12:25:10 +0200345 /*
346 * Extended status may indicate that the PHY supports
347 * 1000BASE-T/X even though the 1000BASE-T registers
348 * are missing. In this case we can't tell whether the
349 * peer also supports it, so we only check extended
350 * status if the 1000BASE-T registers are actually
351 * missing.
352 */
353 if ((mii_reg & BMSR_ESTATEN) && !(mii_reg & BMSR_ERCAP))
Charles Coldwellde1d7862013-02-21 08:25:52 -0500354 estatus = phy_read(phydev, MDIO_DEVAD_NONE,
355 MII_ESTATUS);
356
357 if (estatus & (ESTATUS_1000_XFULL | ESTATUS_1000_XHALF |
358 ESTATUS_1000_TFULL | ESTATUS_1000_THALF)) {
359 phydev->speed = SPEED_1000;
360 if (estatus & (ESTATUS_1000_XFULL | ESTATUS_1000_TFULL))
361 phydev->duplex = DUPLEX_FULL;
362 }
363
Andy Fleming5f184712011-04-08 02:10:27 -0500364 } else {
365 u32 bmcr = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMCR);
366
367 phydev->speed = SPEED_10;
368 phydev->duplex = DUPLEX_HALF;
369
370 if (bmcr & BMCR_FULLDPLX)
371 phydev->duplex = DUPLEX_FULL;
372
373 if (bmcr & BMCR_SPEED1000)
374 phydev->speed = SPEED_1000;
375 else if (bmcr & BMCR_SPEED100)
376 phydev->speed = SPEED_100;
377 }
378
379 return 0;
380}
381
382int genphy_config(struct phy_device *phydev)
383{
384 int val;
385 u32 features;
386
Andy Fleming5f184712011-04-08 02:10:27 -0500387 features = (SUPPORTED_TP | SUPPORTED_MII
388 | SUPPORTED_AUI | SUPPORTED_FIBRE |
389 SUPPORTED_BNC);
390
391 /* Do we support autonegotiation? */
392 val = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMSR);
393
394 if (val < 0)
395 return val;
396
397 if (val & BMSR_ANEGCAPABLE)
398 features |= SUPPORTED_Autoneg;
399
400 if (val & BMSR_100FULL)
401 features |= SUPPORTED_100baseT_Full;
402 if (val & BMSR_100HALF)
403 features |= SUPPORTED_100baseT_Half;
404 if (val & BMSR_10FULL)
405 features |= SUPPORTED_10baseT_Full;
406 if (val & BMSR_10HALF)
407 features |= SUPPORTED_10baseT_Half;
408
409 if (val & BMSR_ESTATEN) {
410 val = phy_read(phydev, MDIO_DEVAD_NONE, MII_ESTATUS);
411
412 if (val < 0)
413 return val;
414
415 if (val & ESTATUS_1000_TFULL)
416 features |= SUPPORTED_1000baseT_Full;
417 if (val & ESTATUS_1000_THALF)
418 features |= SUPPORTED_1000baseT_Half;
Charles Coldwellde1d7862013-02-21 08:25:52 -0500419 if (val & ESTATUS_1000_XFULL)
420 features |= SUPPORTED_1000baseX_Full;
421 if (val & ESTATUS_1000_XHALF)
Fabio Estevam9a5dad22013-07-19 10:01:34 -0300422 features |= SUPPORTED_1000baseX_Half;
Andy Fleming5f184712011-04-08 02:10:27 -0500423 }
424
Sascha Hauer44bc3172016-01-13 16:59:32 +0300425 phydev->supported &= features;
426 phydev->advertising &= features;
Andy Fleming5f184712011-04-08 02:10:27 -0500427
428 genphy_config_aneg(phydev);
429
430 return 0;
431}
432
433int genphy_startup(struct phy_device *phydev)
434{
Michal Simekb733c272016-05-18 12:46:12 +0200435 int ret;
Andy Fleming5f184712011-04-08 02:10:27 -0500436
Michal Simekb733c272016-05-18 12:46:12 +0200437 ret = genphy_update_link(phydev);
438 if (ret)
439 return ret;
440
441 return genphy_parse_link(phydev);
Andy Fleming5f184712011-04-08 02:10:27 -0500442}
443
444int genphy_shutdown(struct phy_device *phydev)
445{
446 return 0;
447}
448
449static struct phy_driver genphy_driver = {
450 .uid = 0xffffffff,
451 .mask = 0xffffffff,
452 .name = "Generic PHY",
Sascha Hauer44bc3172016-01-13 16:59:32 +0300453 .features = PHY_GBIT_FEATURES | SUPPORTED_MII |
454 SUPPORTED_AUI | SUPPORTED_FIBRE |
455 SUPPORTED_BNC,
Andy Fleming5f184712011-04-08 02:10:27 -0500456 .config = genphy_config,
457 .startup = genphy_startup,
458 .shutdown = genphy_shutdown,
459};
460
461static LIST_HEAD(phy_drivers);
462
463int phy_init(void)
464{
Florian Fainelli137963d2017-12-09 14:59:54 -0800465#ifdef CONFIG_B53_SWITCH
466 phy_b53_init();
467#endif
Kevin Smith24ae3962016-03-31 19:33:12 +0000468#ifdef CONFIG_MV88E61XX_SWITCH
469 phy_mv88e61xx_init();
470#endif
Shaohui Xief7c38cf2014-12-30 18:32:04 +0800471#ifdef CONFIG_PHY_AQUANTIA
472 phy_aquantia_init();
473#endif
Andy Fleming9082eea2011-04-07 21:56:05 -0500474#ifdef CONFIG_PHY_ATHEROS
475 phy_atheros_init();
476#endif
477#ifdef CONFIG_PHY_BROADCOM
478 phy_broadcom_init();
479#endif
Shengzhou Liu9b18e512014-11-10 18:32:29 +0800480#ifdef CONFIG_PHY_CORTINA
481 phy_cortina_init();
482#endif
Andy Fleming9082eea2011-04-07 21:56:05 -0500483#ifdef CONFIG_PHY_DAVICOM
484 phy_davicom_init();
485#endif
Matt Porterf485c8a2013-03-20 05:38:13 +0000486#ifdef CONFIG_PHY_ET1011C
487 phy_et1011c_init();
488#endif
Andy Fleming9082eea2011-04-07 21:56:05 -0500489#ifdef CONFIG_PHY_LXT
490 phy_lxt_init();
491#endif
492#ifdef CONFIG_PHY_MARVELL
493 phy_marvell_init();
494#endif
Alexandru Gagniucd397f7c2017-07-07 11:36:57 -0700495#ifdef CONFIG_PHY_MICREL_KSZ8XXX
496 phy_micrel_ksz8xxx_init();
497#endif
498#ifdef CONFIG_PHY_MICREL_KSZ90X1
499 phy_micrel_ksz90x1_init();
Andy Fleming9082eea2011-04-07 21:56:05 -0500500#endif
Neil Armstrong8995a962017-10-18 10:02:10 +0200501#ifdef CONFIG_PHY_MESON_GXL
502 phy_meson_gxl_init();
503#endif
Andy Fleming9082eea2011-04-07 21:56:05 -0500504#ifdef CONFIG_PHY_NATSEMI
505 phy_natsemi_init();
506#endif
507#ifdef CONFIG_PHY_REALTEK
508 phy_realtek_init();
509#endif
Nobuhiro Iwamatsu5751aa22011-11-23 21:24:15 +0000510#ifdef CONFIG_PHY_SMSC
511 phy_smsc_init();
512#endif
Andy Fleming9082eea2011-04-07 21:56:05 -0500513#ifdef CONFIG_PHY_TERANETICS
514 phy_teranetics_init();
515#endif
Edgar E. Iglesias721aed72015-09-25 23:46:08 -0700516#ifdef CONFIG_PHY_TI
517 phy_ti_init();
518#endif
Andy Fleming9082eea2011-04-07 21:56:05 -0500519#ifdef CONFIG_PHY_VITESSE
520 phy_vitesse_init();
521#endif
Siva Durga Prasad Paladugued6fad32016-02-05 13:22:10 +0530522#ifdef CONFIG_PHY_XILINX
523 phy_xilinx_init();
524#endif
John Haechtena5fd13a2016-12-09 22:15:17 +0000525#ifdef CONFIG_PHY_MSCC
526 phy_mscc_init();
527#endif
Hannes Schmelzerdb40c1a2017-03-23 15:11:43 +0100528#ifdef CONFIG_PHY_FIXED
529 phy_fixed_init();
530#endif
Andy Fleming5f184712011-04-08 02:10:27 -0500531 return 0;
532}
533
534int phy_register(struct phy_driver *drv)
535{
536 INIT_LIST_HEAD(&drv->list);
537 list_add_tail(&drv->list, &phy_drivers);
538
Michal Simekabbfcbe2015-05-13 13:40:40 +0200539#ifdef CONFIG_NEEDS_MANUAL_RELOC
540 if (drv->probe)
541 drv->probe += gd->reloc_off;
542 if (drv->config)
543 drv->config += gd->reloc_off;
544 if (drv->startup)
545 drv->startup += gd->reloc_off;
546 if (drv->shutdown)
547 drv->shutdown += gd->reloc_off;
548 if (drv->readext)
549 drv->readext += gd->reloc_off;
550 if (drv->writeext)
551 drv->writeext += gd->reloc_off;
552#endif
Andy Fleming5f184712011-04-08 02:10:27 -0500553 return 0;
554}
555
Alexey Brodkinb18acb02016-01-13 16:59:34 +0300556int phy_set_supported(struct phy_device *phydev, u32 max_speed)
557{
558 /* The default values for phydev->supported are provided by the PHY
559 * driver "features" member, we want to reset to sane defaults first
560 * before supporting higher speeds.
561 */
562 phydev->supported &= PHY_DEFAULT_FEATURES;
563
564 switch (max_speed) {
565 default:
566 return -ENOTSUPP;
567 case SPEED_1000:
568 phydev->supported |= PHY_1000BT_FEATURES;
569 /* fall through */
570 case SPEED_100:
571 phydev->supported |= PHY_100BT_FEATURES;
572 /* fall through */
573 case SPEED_10:
574 phydev->supported |= PHY_10BT_FEATURES;
575 }
576
577 return 0;
578}
579
Kim Phillips960d70c2012-10-29 13:34:34 +0000580static int phy_probe(struct phy_device *phydev)
Andy Fleming5f184712011-04-08 02:10:27 -0500581{
582 int err = 0;
583
Mario Six8d631202018-01-15 11:08:27 +0100584 phydev->advertising = phydev->drv->features;
585 phydev->supported = phydev->drv->features;
586
Andy Fleming5f184712011-04-08 02:10:27 -0500587 phydev->mmds = phydev->drv->mmds;
588
589 if (phydev->drv->probe)
590 err = phydev->drv->probe(phydev);
591
592 return err;
593}
594
595static struct phy_driver *generic_for_interface(phy_interface_t interface)
596{
597#ifdef CONFIG_PHYLIB_10G
598 if (is_10g_interface(interface))
599 return &gen10g_driver;
600#endif
601
602 return &genphy_driver;
603}
604
Kim Phillips960d70c2012-10-29 13:34:34 +0000605static struct phy_driver *get_phy_driver(struct phy_device *phydev,
Mario Six8d631202018-01-15 11:08:27 +0100606 phy_interface_t interface)
Andy Fleming5f184712011-04-08 02:10:27 -0500607{
608 struct list_head *entry;
609 int phy_id = phydev->phy_id;
610 struct phy_driver *drv = NULL;
611
612 list_for_each(entry, &phy_drivers) {
613 drv = list_entry(entry, struct phy_driver, list);
614 if ((drv->uid & drv->mask) == (phy_id & drv->mask))
615 return drv;
616 }
617
618 /* If we made it here, there's no driver for this PHY */
619 return generic_for_interface(interface);
620}
621
Kim Phillips960d70c2012-10-29 13:34:34 +0000622static struct phy_device *phy_device_create(struct mii_dev *bus, int addr,
Jörg Krause2c171a22015-07-15 14:58:49 +0200623 u32 phy_id,
Kim Phillips960d70c2012-10-29 13:34:34 +0000624 phy_interface_t interface)
Andy Fleming5f184712011-04-08 02:10:27 -0500625{
626 struct phy_device *dev;
627
Mario Six8d631202018-01-15 11:08:27 +0100628 /*
629 * We allocate the device, and initialize the
630 * default values
631 */
Andy Fleming5f184712011-04-08 02:10:27 -0500632 dev = malloc(sizeof(*dev));
633 if (!dev) {
634 printf("Failed to allocate PHY device for %s:%d\n",
Mario Six8d631202018-01-15 11:08:27 +0100635 bus->name, addr);
Andy Fleming5f184712011-04-08 02:10:27 -0500636 return NULL;
637 }
638
639 memset(dev, 0, sizeof(*dev));
640
641 dev->duplex = -1;
Mugunthan V N26d3acd2015-09-03 15:50:21 +0530642 dev->link = 0;
Andy Fleming5f184712011-04-08 02:10:27 -0500643 dev->interface = interface;
644
Grygorii Strashkoeef0b8a2018-07-05 12:02:48 -0500645#ifdef CONFIG_DM_ETH
646 dev->node = ofnode_null();
647#endif
648
Andy Fleming5f184712011-04-08 02:10:27 -0500649 dev->autoneg = AUTONEG_ENABLE;
650
651 dev->addr = addr;
652 dev->phy_id = phy_id;
653 dev->bus = bus;
654
655 dev->drv = get_phy_driver(dev, interface);
656
657 phy_probe(dev);
658
659 bus->phymap[addr] = dev;
660
661 return dev;
662}
663
664/**
665 * get_phy_id - reads the specified addr for its ID.
666 * @bus: the target MII bus
667 * @addr: PHY address on the MII bus
668 * @phy_id: where to store the ID retrieved.
669 *
670 * Description: Reads the ID registers of the PHY at @addr on the
671 * @bus, stores it in @phy_id and returns zero on success.
672 */
Shengzhou Liu5707d5f2015-04-07 18:46:32 +0800673int __weak get_phy_id(struct mii_dev *bus, int addr, int devad, u32 *phy_id)
Andy Fleming5f184712011-04-08 02:10:27 -0500674{
675 int phy_reg;
676
Mario Six8d631202018-01-15 11:08:27 +0100677 /*
678 * Grab the bits from PHYIR1, and put them
679 * in the upper half
680 */
Andy Fleming5f184712011-04-08 02:10:27 -0500681 phy_reg = bus->read(bus, addr, devad, MII_PHYSID1);
682
683 if (phy_reg < 0)
684 return -EIO;
685
686 *phy_id = (phy_reg & 0xffff) << 16;
687
688 /* Grab the bits from PHYIR2, and put them in the lower half */
689 phy_reg = bus->read(bus, addr, devad, MII_PHYSID2);
690
691 if (phy_reg < 0)
692 return -EIO;
693
694 *phy_id |= (phy_reg & 0xffff);
695
696 return 0;
697}
698
Troy Kisky1adb4062012-10-22 16:40:43 +0000699static struct phy_device *create_phy_by_mask(struct mii_dev *bus,
Mario Six8d631202018-01-15 11:08:27 +0100700 uint phy_mask, int devad,
701 phy_interface_t interface)
Troy Kisky1adb4062012-10-22 16:40:43 +0000702{
703 u32 phy_id = 0xffffffff;
Mario Six8d631202018-01-15 11:08:27 +0100704
Troy Kisky1adb4062012-10-22 16:40:43 +0000705 while (phy_mask) {
706 int addr = ffs(phy_mask) - 1;
707 int r = get_phy_id(bus, addr, devad, &phy_id);
Troy Kisky1adb4062012-10-22 16:40:43 +0000708 /* If the PHY ID is mostly f's, we didn't find anything */
Cormier, Jonathan08be2832014-05-21 13:08:52 -0400709 if (r == 0 && (phy_id & 0x1fffffff) != 0x1fffffff)
Troy Kisky1adb4062012-10-22 16:40:43 +0000710 return phy_device_create(bus, addr, phy_id, interface);
711 phy_mask &= ~(1 << addr);
712 }
713 return NULL;
714}
715
716static struct phy_device *search_for_existing_phy(struct mii_dev *bus,
Mario Six8d631202018-01-15 11:08:27 +0100717 uint phy_mask,
718 phy_interface_t interface)
Troy Kisky1adb4062012-10-22 16:40:43 +0000719{
720 /* If we have one, return the existing device, with new interface */
721 while (phy_mask) {
722 int addr = ffs(phy_mask) - 1;
Mario Six8d631202018-01-15 11:08:27 +0100723
Troy Kisky1adb4062012-10-22 16:40:43 +0000724 if (bus->phymap[addr]) {
725 bus->phymap[addr]->interface = interface;
726 return bus->phymap[addr];
727 }
728 phy_mask &= ~(1 << addr);
729 }
730 return NULL;
731}
732
733static struct phy_device *get_phy_device_by_mask(struct mii_dev *bus,
Mario Six8d631202018-01-15 11:08:27 +0100734 uint phy_mask,
735 phy_interface_t interface)
Troy Kisky1adb4062012-10-22 16:40:43 +0000736{
737 int i;
738 struct phy_device *phydev;
739
740 phydev = search_for_existing_phy(bus, phy_mask, interface);
741 if (phydev)
742 return phydev;
743 /* Try Standard (ie Clause 22) access */
744 /* Otherwise we have to try Clause 45 */
745 for (i = 0; i < 5; i++) {
746 phydev = create_phy_by_mask(bus, phy_mask,
Mario Six8d631202018-01-15 11:08:27 +0100747 i ? i : MDIO_DEVAD_NONE, interface);
Troy Kisky1adb4062012-10-22 16:40:43 +0000748 if (IS_ERR(phydev))
749 return NULL;
750 if (phydev)
751 return phydev;
752 }
Bin Meng3e1949d2015-10-07 21:19:30 -0700753
754 debug("\n%s PHY: ", bus->name);
755 while (phy_mask) {
756 int addr = ffs(phy_mask) - 1;
Mario Six8d631202018-01-15 11:08:27 +0100757
Bin Meng3e1949d2015-10-07 21:19:30 -0700758 debug("%d ", addr);
759 phy_mask &= ~(1 << addr);
760 }
761 debug("not found\n");
Bin Meng0132b9a2015-10-07 21:19:29 -0700762
763 return NULL;
Troy Kisky1adb4062012-10-22 16:40:43 +0000764}
765
Andy Fleming5f184712011-04-08 02:10:27 -0500766/**
Mario Six8d631202018-01-15 11:08:27 +0100767 * get_phy_device - reads the specified PHY device and returns its
768 * @phy_device struct
Andy Fleming5f184712011-04-08 02:10:27 -0500769 * @bus: the target MII bus
770 * @addr: PHY address on the MII bus
771 *
772 * Description: Reads the ID registers of the PHY at @addr on the
773 * @bus, then allocates and returns the phy_device to represent it.
774 */
Kim Phillips960d70c2012-10-29 13:34:34 +0000775static struct phy_device *get_phy_device(struct mii_dev *bus, int addr,
776 phy_interface_t interface)
Andy Fleming5f184712011-04-08 02:10:27 -0500777{
Troy Kisky1adb4062012-10-22 16:40:43 +0000778 return get_phy_device_by_mask(bus, 1 << addr, interface);
Andy Fleming5f184712011-04-08 02:10:27 -0500779}
780
781int phy_reset(struct phy_device *phydev)
782{
783 int reg;
784 int timeout = 500;
785 int devad = MDIO_DEVAD_NONE;
786
Shaohui Xieddcd1f32016-01-28 15:55:46 +0800787 if (phydev->flags & PHY_FLAG_BROKEN_RESET)
788 return 0;
789
Andy Fleming5f184712011-04-08 02:10:27 -0500790#ifdef CONFIG_PHYLIB_10G
791 /* If it's 10G, we need to issue reset through one of the MMDs */
792 if (is_10g_interface(phydev->interface)) {
793 if (!phydev->mmds)
794 gen10g_discover_mmds(phydev);
795
796 devad = ffs(phydev->mmds) - 1;
797 }
798#endif
799
Stefan Agnera0580522015-12-09 11:21:25 -0800800 if (phy_write(phydev, devad, MII_BMCR, BMCR_RESET) < 0) {
Andy Fleming5f184712011-04-08 02:10:27 -0500801 debug("PHY reset failed\n");
802 return -1;
803 }
804
805#ifdef CONFIG_PHY_RESET_DELAY
806 udelay(CONFIG_PHY_RESET_DELAY); /* Intel LXT971A needs this */
807#endif
808 /*
809 * Poll the control register for the reset bit to go to 0 (it is
810 * auto-clearing). This should happen within 0.5 seconds per the
811 * IEEE spec.
812 */
Stefan Agnera0580522015-12-09 11:21:25 -0800813 reg = phy_read(phydev, devad, MII_BMCR);
Andy Fleming5f184712011-04-08 02:10:27 -0500814 while ((reg & BMCR_RESET) && timeout--) {
815 reg = phy_read(phydev, devad, MII_BMCR);
816
817 if (reg < 0) {
818 debug("PHY status read failed\n");
819 return -1;
820 }
821 udelay(1000);
822 }
823
824 if (reg & BMCR_RESET) {
825 puts("PHY reset timed out\n");
826 return -1;
827 }
828
829 return 0;
830}
831
832int miiphy_reset(const char *devname, unsigned char addr)
833{
834 struct mii_dev *bus = miiphy_get_dev_by_name(devname);
835 struct phy_device *phydev;
836
837 /*
838 * miiphy_reset was only used on standard PHYs, so we'll fake it here.
839 * If later code tries to connect with the right interface, this will
840 * be corrected by get_phy_device in phy_connect()
841 */
842 phydev = get_phy_device(bus, addr, PHY_INTERFACE_MODE_MII);
843
844 return phy_reset(phydev);
845}
846
Mario Six8d631202018-01-15 11:08:27 +0100847struct phy_device *phy_find_by_mask(struct mii_dev *bus, uint phy_mask,
848 phy_interface_t interface)
Andy Fleming5f184712011-04-08 02:10:27 -0500849{
Andy Fleming5f184712011-04-08 02:10:27 -0500850 /* Reset the bus */
Jörg Krause59370f32015-07-15 15:18:22 +0200851 if (bus->reset) {
Vladimir Zapolskiye3a77212011-09-05 07:24:07 +0000852 bus->reset(bus);
Andy Fleming5f184712011-04-08 02:10:27 -0500853
Jörg Krause59370f32015-07-15 15:18:22 +0200854 /* Wait 15ms to make sure the PHY has come out of hard reset */
Mario Six8d631202018-01-15 11:08:27 +0100855 mdelay(15);
Jörg Krause59370f32015-07-15 15:18:22 +0200856 }
857
Troy Kisky1adb4062012-10-22 16:40:43 +0000858 return get_phy_device_by_mask(bus, phy_mask, interface);
859}
Andy Fleming5f184712011-04-08 02:10:27 -0500860
Simon Glassc74c8e62015-04-05 16:07:39 -0600861#ifdef CONFIG_DM_ETH
862void phy_connect_dev(struct phy_device *phydev, struct udevice *dev)
863#else
Troy Kisky1adb4062012-10-22 16:40:43 +0000864void phy_connect_dev(struct phy_device *phydev, struct eth_device *dev)
Simon Glassc74c8e62015-04-05 16:07:39 -0600865#endif
Troy Kisky1adb4062012-10-22 16:40:43 +0000866{
Andy Fleming5f184712011-04-08 02:10:27 -0500867 /* Soft Reset the PHY */
868 phy_reset(phydev);
Bin Meng17ecfa92015-10-07 21:19:31 -0700869 if (phydev->dev && phydev->dev != dev) {
Andy Fleming5f184712011-04-08 02:10:27 -0500870 printf("%s:%d is connected to %s. Reconnecting to %s\n",
Mario Six8d631202018-01-15 11:08:27 +0100871 phydev->bus->name, phydev->addr,
872 phydev->dev->name, dev->name);
Troy Kisky1adb4062012-10-22 16:40:43 +0000873 }
Andy Fleming5f184712011-04-08 02:10:27 -0500874 phydev->dev = dev;
Wolfgang Denkb91a9d92011-07-24 21:39:10 +0000875 debug("%s connected to %s\n", dev->name, phydev->drv->name);
Troy Kisky1adb4062012-10-22 16:40:43 +0000876}
Andy Fleming5f184712011-04-08 02:10:27 -0500877
Simon Glassc74c8e62015-04-05 16:07:39 -0600878#ifdef CONFIG_DM_ETH
879struct phy_device *phy_connect(struct mii_dev *bus, int addr,
Mario Six8d631202018-01-15 11:08:27 +0100880 struct udevice *dev,
881 phy_interface_t interface)
Simon Glassc74c8e62015-04-05 16:07:39 -0600882#else
Troy Kisky1adb4062012-10-22 16:40:43 +0000883struct phy_device *phy_connect(struct mii_dev *bus, int addr,
Mario Six8d631202018-01-15 11:08:27 +0100884 struct eth_device *dev,
885 phy_interface_t interface)
Simon Glassc74c8e62015-04-05 16:07:39 -0600886#endif
Troy Kisky1adb4062012-10-22 16:40:43 +0000887{
Hannes Schmelzerdb40c1a2017-03-23 15:11:43 +0100888 struct phy_device *phydev = NULL;
889#ifdef CONFIG_PHY_FIXED
890 int sn;
891 const char *name;
Mario Six8d631202018-01-15 11:08:27 +0100892
Simon Glassda409cc2017-05-17 17:18:09 -0600893 sn = fdt_first_subnode(gd->fdt_blob, dev_of_offset(dev));
Hannes Schmelzerdb40c1a2017-03-23 15:11:43 +0100894 while (sn > 0) {
895 name = fdt_get_name(gd->fdt_blob, sn, NULL);
Mario Six8d631202018-01-15 11:08:27 +0100896 if (name && strcmp(name, "fixed-link") == 0) {
Hannes Schmelzerdb40c1a2017-03-23 15:11:43 +0100897 phydev = phy_device_create(bus,
898 sn, PHY_FIXED_ID, interface);
899 break;
900 }
901 sn = fdt_next_subnode(gd->fdt_blob, sn);
902 }
903#endif
Mario Six8d631202018-01-15 11:08:27 +0100904 if (!phydev)
Hannes Schmelzerdb40c1a2017-03-23 15:11:43 +0100905 phydev = phy_find_by_mask(bus, 1 << addr, interface);
Troy Kisky1adb4062012-10-22 16:40:43 +0000906
Troy Kisky1adb4062012-10-22 16:40:43 +0000907 if (phydev)
908 phy_connect_dev(phydev, dev);
909 else
910 printf("Could not get PHY for %s: addr %d\n", bus->name, addr);
Andy Fleming5f184712011-04-08 02:10:27 -0500911 return phydev;
912}
913
Timur Tabi6e5b9ac2012-07-05 10:33:18 +0000914/*
915 * Start the PHY. Returns 0 on success, or a negative error code.
916 */
Andy Fleming5f184712011-04-08 02:10:27 -0500917int phy_startup(struct phy_device *phydev)
918{
919 if (phydev->drv->startup)
Timur Tabi6e5b9ac2012-07-05 10:33:18 +0000920 return phydev->drv->startup(phydev);
Andy Fleming5f184712011-04-08 02:10:27 -0500921
922 return 0;
923}
924
Jeroen Hofstee3c6928f2014-10-08 22:57:26 +0200925__weak int board_phy_config(struct phy_device *phydev)
Andy Fleming5f184712011-04-08 02:10:27 -0500926{
Troy Kisky9fafe7d2012-02-07 14:08:49 +0000927 if (phydev->drv->config)
928 return phydev->drv->config(phydev);
Andy Fleming5f184712011-04-08 02:10:27 -0500929 return 0;
930}
931
Andy Fleming5f184712011-04-08 02:10:27 -0500932int phy_config(struct phy_device *phydev)
933{
Andy Fleming5f184712011-04-08 02:10:27 -0500934 /* Invoke an optional board-specific helper */
Michal Simek7a673f02016-05-18 14:37:23 +0200935 return board_phy_config(phydev);
Andy Fleming5f184712011-04-08 02:10:27 -0500936}
937
938int phy_shutdown(struct phy_device *phydev)
939{
940 if (phydev->drv->shutdown)
941 phydev->drv->shutdown(phydev);
942
943 return 0;
944}
Simon Glassc74c8e62015-04-05 16:07:39 -0600945
946int phy_get_interface_by_name(const char *str)
947{
948 int i;
949
950 for (i = 0; i < PHY_INTERFACE_MODE_COUNT; i++) {
951 if (!strcmp(str, phy_interface_strings[i]))
952 return i;
953 }
954
955 return -1;
956}