]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
5f184715 AF |
2 | /* |
3 | * Generic PHY Management code | |
4 | * | |
5f184715 AF |
5 | * Copyright 2011 Freescale Semiconductor, Inc. |
6 | * author Andy Fleming | |
7 | * | |
8 | * Based loosely off of Linux's PHY Lib | |
9 | */ | |
5f184715 | 10 | #include <common.h> |
24b852a7 | 11 | #include <console.h> |
c74c8e66 | 12 | #include <dm.h> |
f7ae49fc | 13 | #include <log.h> |
5f184715 AF |
14 | #include <malloc.h> |
15 | #include <net.h> | |
16 | #include <command.h> | |
17 | #include <miiphy.h> | |
18 | #include <phy.h> | |
19 | #include <errno.h> | |
401d1c4f | 20 | #include <asm/global_data.h> |
676fbd3d | 21 | #include <dm/of_extra.h> |
cd93d625 | 22 | #include <linux/bitops.h> |
c05ed00a | 23 | #include <linux/delay.h> |
1adb406b | 24 | #include <linux/err.h> |
597fe041 | 25 | #include <linux/compiler.h> |
5f184715 | 26 | |
abbfcbe5 MS |
27 | DECLARE_GLOBAL_DATA_PTR; |
28 | ||
5f184715 AF |
29 | /* Generic PHY support and helper functions */ |
30 | ||
31 | /** | |
8d631203 | 32 | * genphy_config_advert - sanitize and advertise auto-negotiation parameters |
5f184715 AF |
33 | * @phydev: target phy_device struct |
34 | * | |
35 | * Description: Writes MII_ADVERTISE with the appropriate values, | |
36 | * after sanitizing the values to make sure we only advertise | |
37 | * what is supported. Returns < 0 on error, 0 if the PHY's advertisement | |
38 | * hasn't changed, and > 0 if it has changed. | |
39 | */ | |
960d70c6 | 40 | static int genphy_config_advert(struct phy_device *phydev) |
5f184715 AF |
41 | { |
42 | u32 advertise; | |
bbdcaff1 | 43 | int oldadv, adv, bmsr; |
5f184715 AF |
44 | int err, changed = 0; |
45 | ||
bbdcaff1 | 46 | /* Only allow advertising what this PHY supports */ |
5f184715 AF |
47 | phydev->advertising &= phydev->supported; |
48 | advertise = phydev->advertising; | |
49 | ||
50 | /* Setup standard advertisement */ | |
bbdcaff1 FF |
51 | adv = phy_read(phydev, MDIO_DEVAD_NONE, MII_ADVERTISE); |
52 | oldadv = adv; | |
5f184715 AF |
53 | |
54 | if (adv < 0) | |
55 | return adv; | |
56 | ||
57 | adv &= ~(ADVERTISE_ALL | ADVERTISE_100BASE4 | ADVERTISE_PAUSE_CAP | | |
58 | ADVERTISE_PAUSE_ASYM); | |
59 | if (advertise & ADVERTISED_10baseT_Half) | |
60 | adv |= ADVERTISE_10HALF; | |
61 | if (advertise & ADVERTISED_10baseT_Full) | |
62 | adv |= ADVERTISE_10FULL; | |
63 | if (advertise & ADVERTISED_100baseT_Half) | |
64 | adv |= ADVERTISE_100HALF; | |
65 | if (advertise & ADVERTISED_100baseT_Full) | |
66 | adv |= ADVERTISE_100FULL; | |
67 | if (advertise & ADVERTISED_Pause) | |
68 | adv |= ADVERTISE_PAUSE_CAP; | |
69 | if (advertise & ADVERTISED_Asym_Pause) | |
70 | adv |= ADVERTISE_PAUSE_ASYM; | |
de1d786e CC |
71 | if (advertise & ADVERTISED_1000baseX_Half) |
72 | adv |= ADVERTISE_1000XHALF; | |
73 | if (advertise & ADVERTISED_1000baseX_Full) | |
74 | adv |= ADVERTISE_1000XFULL; | |
5f184715 AF |
75 | |
76 | if (adv != oldadv) { | |
77 | err = phy_write(phydev, MDIO_DEVAD_NONE, MII_ADVERTISE, adv); | |
78 | ||
79 | if (err < 0) | |
80 | return err; | |
81 | changed = 1; | |
82 | } | |
83 | ||
bbdcaff1 FF |
84 | bmsr = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMSR); |
85 | if (bmsr < 0) | |
86 | return bmsr; | |
87 | ||
88 | /* Per 802.3-2008, Section 22.2.4.2.16 Extended status all | |
89 | * 1000Mbits/sec capable PHYs shall have the BMSR_ESTATEN bit set to a | |
90 | * logical 1. | |
91 | */ | |
92 | if (!(bmsr & BMSR_ESTATEN)) | |
93 | return changed; | |
94 | ||
5f184715 | 95 | /* Configure gigabit if it's supported */ |
bbdcaff1 FF |
96 | adv = phy_read(phydev, MDIO_DEVAD_NONE, MII_CTRL1000); |
97 | oldadv = adv; | |
98 | ||
99 | if (adv < 0) | |
100 | return adv; | |
5f184715 | 101 | |
bbdcaff1 | 102 | adv &= ~(ADVERTISE_1000FULL | ADVERTISE_1000HALF); |
5f184715 | 103 | |
bbdcaff1 FF |
104 | if (phydev->supported & (SUPPORTED_1000baseT_Half | |
105 | SUPPORTED_1000baseT_Full)) { | |
5f184715 AF |
106 | if (advertise & SUPPORTED_1000baseT_Half) |
107 | adv |= ADVERTISE_1000HALF; | |
108 | if (advertise & SUPPORTED_1000baseT_Full) | |
109 | adv |= ADVERTISE_1000FULL; | |
bbdcaff1 | 110 | } |
5f184715 | 111 | |
bbdcaff1 FF |
112 | if (adv != oldadv) |
113 | changed = 1; | |
5f184715 | 114 | |
bbdcaff1 FF |
115 | err = phy_write(phydev, MDIO_DEVAD_NONE, MII_CTRL1000, adv); |
116 | if (err < 0) | |
117 | return err; | |
5f184715 AF |
118 | |
119 | return changed; | |
120 | } | |
121 | ||
5f184715 AF |
122 | /** |
123 | * genphy_setup_forced - configures/forces speed/duplex from @phydev | |
124 | * @phydev: target phy_device struct | |
125 | * | |
126 | * Description: Configures MII_BMCR to force speed/duplex | |
127 | * to the values in phydev. Assumes that the values are valid. | |
128 | */ | |
960d70c6 | 129 | static int genphy_setup_forced(struct phy_device *phydev) |
5f184715 AF |
130 | { |
131 | int err; | |
53b0c38c | 132 | int ctl = BMCR_ANRESTART; |
5f184715 | 133 | |
8d631203 MS |
134 | phydev->pause = 0; |
135 | phydev->asym_pause = 0; | |
5f184715 | 136 | |
8d631203 | 137 | if (phydev->speed == SPEED_1000) |
5f184715 | 138 | ctl |= BMCR_SPEED1000; |
8d631203 | 139 | else if (phydev->speed == SPEED_100) |
5f184715 AF |
140 | ctl |= BMCR_SPEED100; |
141 | ||
8d631203 | 142 | if (phydev->duplex == DUPLEX_FULL) |
5f184715 AF |
143 | ctl |= BMCR_FULLDPLX; |
144 | ||
145 | err = phy_write(phydev, MDIO_DEVAD_NONE, MII_BMCR, ctl); | |
146 | ||
147 | return err; | |
148 | } | |
149 | ||
5f184715 AF |
150 | /** |
151 | * genphy_restart_aneg - Enable and Restart Autonegotiation | |
152 | * @phydev: target phy_device struct | |
153 | */ | |
154 | int genphy_restart_aneg(struct phy_device *phydev) | |
155 | { | |
156 | int ctl; | |
157 | ||
158 | ctl = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMCR); | |
159 | ||
160 | if (ctl < 0) | |
161 | return ctl; | |
162 | ||
163 | ctl |= (BMCR_ANENABLE | BMCR_ANRESTART); | |
164 | ||
165 | /* Don't isolate the PHY if we're negotiating */ | |
166 | ctl &= ~(BMCR_ISOLATE); | |
167 | ||
168 | ctl = phy_write(phydev, MDIO_DEVAD_NONE, MII_BMCR, ctl); | |
169 | ||
170 | return ctl; | |
171 | } | |
172 | ||
5f184715 AF |
173 | /** |
174 | * genphy_config_aneg - restart auto-negotiation or write BMCR | |
175 | * @phydev: target phy_device struct | |
176 | * | |
177 | * Description: If auto-negotiation is enabled, we configure the | |
178 | * advertising, and then restart auto-negotiation. If it is not | |
179 | * enabled, then we write the BMCR. | |
180 | */ | |
181 | int genphy_config_aneg(struct phy_device *phydev) | |
182 | { | |
183 | int result; | |
184 | ||
8d631203 | 185 | if (phydev->autoneg != AUTONEG_ENABLE) |
5f184715 AF |
186 | return genphy_setup_forced(phydev); |
187 | ||
188 | result = genphy_config_advert(phydev); | |
189 | ||
190 | if (result < 0) /* error */ | |
191 | return result; | |
192 | ||
193 | if (result == 0) { | |
8d631203 MS |
194 | /* |
195 | * Advertisment hasn't changed, but maybe aneg was never on to | |
196 | * begin with? Or maybe phy was isolated? | |
197 | */ | |
5f184715 AF |
198 | int ctl = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMCR); |
199 | ||
200 | if (ctl < 0) | |
201 | return ctl; | |
202 | ||
203 | if (!(ctl & BMCR_ANENABLE) || (ctl & BMCR_ISOLATE)) | |
204 | result = 1; /* do restart aneg */ | |
205 | } | |
206 | ||
8d631203 MS |
207 | /* |
208 | * Only restart aneg if we are advertising something different | |
209 | * than we were before. | |
210 | */ | |
5f184715 AF |
211 | if (result > 0) |
212 | result = genphy_restart_aneg(phydev); | |
213 | ||
214 | return result; | |
215 | } | |
216 | ||
217 | /** | |
218 | * genphy_update_link - update link status in @phydev | |
219 | * @phydev: target phy_device struct | |
220 | * | |
221 | * Description: Update the value in phydev->link to reflect the | |
222 | * current link value. In order to do this, we need to read | |
223 | * the status register twice, keeping the second value. | |
224 | */ | |
225 | int genphy_update_link(struct phy_device *phydev) | |
226 | { | |
227 | unsigned int mii_reg; | |
228 | ||
229 | /* | |
230 | * Wait if the link is up, and autonegotiation is in progress | |
231 | * (ie - we're capable and it's not done) | |
232 | */ | |
233 | mii_reg = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMSR); | |
234 | ||
235 | /* | |
236 | * If we already saw the link up, and it hasn't gone down, then | |
237 | * we don't need to wait for autoneg again | |
238 | */ | |
239 | if (phydev->link && mii_reg & BMSR_LSTATUS) | |
240 | return 0; | |
241 | ||
1f9e672c AM |
242 | if ((phydev->autoneg == AUTONEG_ENABLE) && |
243 | !(mii_reg & BMSR_ANEGCOMPLETE)) { | |
5f184715 AF |
244 | int i = 0; |
245 | ||
246 | printf("%s Waiting for PHY auto negotiation to complete", | |
8d631203 | 247 | phydev->dev->name); |
5f184715 AF |
248 | while (!(mii_reg & BMSR_ANEGCOMPLETE)) { |
249 | /* | |
250 | * Timeout reached ? | |
251 | */ | |
a44ee246 | 252 | if (i > (PHY_ANEG_TIMEOUT / 50)) { |
5f184715 AF |
253 | printf(" TIMEOUT !\n"); |
254 | phydev->link = 0; | |
ef5e821b | 255 | return -ETIMEDOUT; |
5f184715 AF |
256 | } |
257 | ||
258 | if (ctrlc()) { | |
259 | puts("user interrupt!\n"); | |
260 | phydev->link = 0; | |
261 | return -EINTR; | |
262 | } | |
263 | ||
27c3f70f | 264 | if ((i++ % 10) == 0) |
5f184715 AF |
265 | printf("."); |
266 | ||
5f184715 | 267 | mii_reg = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMSR); |
27c3f70f | 268 | mdelay(50); /* 50 ms */ |
5f184715 AF |
269 | } |
270 | printf(" done\n"); | |
271 | phydev->link = 1; | |
272 | } else { | |
273 | /* Read the link a second time to clear the latched state */ | |
274 | mii_reg = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMSR); | |
275 | ||
276 | if (mii_reg & BMSR_LSTATUS) | |
277 | phydev->link = 1; | |
278 | else | |
279 | phydev->link = 0; | |
280 | } | |
281 | ||
282 | return 0; | |
283 | } | |
284 | ||
285 | /* | |
286 | * Generic function which updates the speed and duplex. If | |
287 | * autonegotiation is enabled, it uses the AND of the link | |
288 | * partner's advertised capabilities and our advertised | |
289 | * capabilities. If autonegotiation is disabled, we use the | |
290 | * appropriate bits in the control register. | |
291 | * | |
292 | * Stolen from Linux's mii.c and phy_device.c | |
293 | */ | |
e2043f5c | 294 | int genphy_parse_link(struct phy_device *phydev) |
5f184715 AF |
295 | { |
296 | int mii_reg = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMSR); | |
297 | ||
298 | /* We're using autonegotiation */ | |
1f9e672c | 299 | if (phydev->autoneg == AUTONEG_ENABLE) { |
5f184715 | 300 | u32 lpa = 0; |
f6d1f6e4 | 301 | int gblpa = 0; |
de1d786e | 302 | u32 estatus = 0; |
5f184715 AF |
303 | |
304 | /* Check for gigabit capability */ | |
3a530d1b DD |
305 | if (phydev->supported & (SUPPORTED_1000baseT_Full | |
306 | SUPPORTED_1000baseT_Half)) { | |
5f184715 AF |
307 | /* We want a list of states supported by |
308 | * both PHYs in the link | |
309 | */ | |
310 | gblpa = phy_read(phydev, MDIO_DEVAD_NONE, MII_STAT1000); | |
f6d1f6e4 | 311 | if (gblpa < 0) { |
8d631203 MS |
312 | debug("Could not read MII_STAT1000. "); |
313 | debug("Ignoring gigabit capability\n"); | |
f6d1f6e4 HS |
314 | gblpa = 0; |
315 | } | |
5f184715 AF |
316 | gblpa &= phy_read(phydev, |
317 | MDIO_DEVAD_NONE, MII_CTRL1000) << 2; | |
318 | } | |
319 | ||
320 | /* Set the baseline so we only have to set them | |
321 | * if they're different | |
322 | */ | |
323 | phydev->speed = SPEED_10; | |
324 | phydev->duplex = DUPLEX_HALF; | |
325 | ||
326 | /* Check the gigabit fields */ | |
327 | if (gblpa & (PHY_1000BTSR_1000FD | PHY_1000BTSR_1000HD)) { | |
328 | phydev->speed = SPEED_1000; | |
329 | ||
330 | if (gblpa & PHY_1000BTSR_1000FD) | |
331 | phydev->duplex = DUPLEX_FULL; | |
332 | ||
333 | /* We're done! */ | |
334 | return 0; | |
335 | } | |
336 | ||
337 | lpa = phy_read(phydev, MDIO_DEVAD_NONE, MII_ADVERTISE); | |
338 | lpa &= phy_read(phydev, MDIO_DEVAD_NONE, MII_LPA); | |
339 | ||
0dcfb0fc | 340 | if (lpa & (LPA_100FULL | LPA_100HALF)) { |
5f184715 AF |
341 | phydev->speed = SPEED_100; |
342 | ||
0dcfb0fc WD |
343 | if (lpa & LPA_100FULL) |
344 | phydev->duplex = DUPLEX_FULL; | |
345 | ||
8d631203 | 346 | } else if (lpa & LPA_10FULL) { |
5f184715 | 347 | phydev->duplex = DUPLEX_FULL; |
8d631203 | 348 | } |
de1d786e | 349 | |
9ba30f6b SS |
350 | /* |
351 | * Extended status may indicate that the PHY supports | |
352 | * 1000BASE-T/X even though the 1000BASE-T registers | |
353 | * are missing. In this case we can't tell whether the | |
354 | * peer also supports it, so we only check extended | |
355 | * status if the 1000BASE-T registers are actually | |
356 | * missing. | |
357 | */ | |
358 | if ((mii_reg & BMSR_ESTATEN) && !(mii_reg & BMSR_ERCAP)) | |
de1d786e CC |
359 | estatus = phy_read(phydev, MDIO_DEVAD_NONE, |
360 | MII_ESTATUS); | |
361 | ||
362 | if (estatus & (ESTATUS_1000_XFULL | ESTATUS_1000_XHALF | | |
363 | ESTATUS_1000_TFULL | ESTATUS_1000_THALF)) { | |
364 | phydev->speed = SPEED_1000; | |
365 | if (estatus & (ESTATUS_1000_XFULL | ESTATUS_1000_TFULL)) | |
366 | phydev->duplex = DUPLEX_FULL; | |
367 | } | |
368 | ||
5f184715 AF |
369 | } else { |
370 | u32 bmcr = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMCR); | |
371 | ||
372 | phydev->speed = SPEED_10; | |
373 | phydev->duplex = DUPLEX_HALF; | |
374 | ||
375 | if (bmcr & BMCR_FULLDPLX) | |
376 | phydev->duplex = DUPLEX_FULL; | |
377 | ||
378 | if (bmcr & BMCR_SPEED1000) | |
379 | phydev->speed = SPEED_1000; | |
380 | else if (bmcr & BMCR_SPEED100) | |
381 | phydev->speed = SPEED_100; | |
382 | } | |
383 | ||
384 | return 0; | |
385 | } | |
386 | ||
387 | int genphy_config(struct phy_device *phydev) | |
388 | { | |
389 | int val; | |
390 | u32 features; | |
391 | ||
5f184715 AF |
392 | features = (SUPPORTED_TP | SUPPORTED_MII |
393 | | SUPPORTED_AUI | SUPPORTED_FIBRE | | |
394 | SUPPORTED_BNC); | |
395 | ||
396 | /* Do we support autonegotiation? */ | |
397 | val = phy_read(phydev, MDIO_DEVAD_NONE, MII_BMSR); | |
398 | ||
399 | if (val < 0) | |
400 | return val; | |
401 | ||
402 | if (val & BMSR_ANEGCAPABLE) | |
403 | features |= SUPPORTED_Autoneg; | |
404 | ||
405 | if (val & BMSR_100FULL) | |
406 | features |= SUPPORTED_100baseT_Full; | |
407 | if (val & BMSR_100HALF) | |
408 | features |= SUPPORTED_100baseT_Half; | |
409 | if (val & BMSR_10FULL) | |
410 | features |= SUPPORTED_10baseT_Full; | |
411 | if (val & BMSR_10HALF) | |
412 | features |= SUPPORTED_10baseT_Half; | |
413 | ||
414 | if (val & BMSR_ESTATEN) { | |
415 | val = phy_read(phydev, MDIO_DEVAD_NONE, MII_ESTATUS); | |
416 | ||
417 | if (val < 0) | |
418 | return val; | |
419 | ||
420 | if (val & ESTATUS_1000_TFULL) | |
421 | features |= SUPPORTED_1000baseT_Full; | |
422 | if (val & ESTATUS_1000_THALF) | |
423 | features |= SUPPORTED_1000baseT_Half; | |
de1d786e CC |
424 | if (val & ESTATUS_1000_XFULL) |
425 | features |= SUPPORTED_1000baseX_Full; | |
426 | if (val & ESTATUS_1000_XHALF) | |
9a5dad23 | 427 | features |= SUPPORTED_1000baseX_Half; |
5f184715 AF |
428 | } |
429 | ||
44bc3174 SH |
430 | phydev->supported &= features; |
431 | phydev->advertising &= features; | |
5f184715 AF |
432 | |
433 | genphy_config_aneg(phydev); | |
434 | ||
435 | return 0; | |
436 | } | |
437 | ||
438 | int genphy_startup(struct phy_device *phydev) | |
439 | { | |
b733c278 | 440 | int ret; |
5f184715 | 441 | |
b733c278 MS |
442 | ret = genphy_update_link(phydev); |
443 | if (ret) | |
444 | return ret; | |
445 | ||
446 | return genphy_parse_link(phydev); | |
5f184715 AF |
447 | } |
448 | ||
449 | int genphy_shutdown(struct phy_device *phydev) | |
450 | { | |
451 | return 0; | |
452 | } | |
453 | ||
454 | static struct phy_driver genphy_driver = { | |
455 | .uid = 0xffffffff, | |
456 | .mask = 0xffffffff, | |
457 | .name = "Generic PHY", | |
44bc3174 SH |
458 | .features = PHY_GBIT_FEATURES | SUPPORTED_MII | |
459 | SUPPORTED_AUI | SUPPORTED_FIBRE | | |
460 | SUPPORTED_BNC, | |
5f184715 AF |
461 | .config = genphy_config, |
462 | .startup = genphy_startup, | |
463 | .shutdown = genphy_shutdown, | |
464 | }; | |
465 | ||
a17776be | 466 | static int genphy_init(void) |
be49508a SDPP |
467 | { |
468 | return phy_register(&genphy_driver); | |
469 | } | |
470 | ||
5f184715 AF |
471 | static LIST_HEAD(phy_drivers); |
472 | ||
473 | int phy_init(void) | |
474 | { | |
c689c486 SDPP |
475 | #ifdef CONFIG_NEEDS_MANUAL_RELOC |
476 | /* | |
477 | * The pointers inside phy_drivers also needs to be updated incase of | |
478 | * manual reloc, without which these points to some invalid | |
479 | * pre reloc address and leads to invalid accesses, hangs. | |
480 | */ | |
481 | struct list_head *head = &phy_drivers; | |
482 | ||
483 | head->next = (void *)head->next + gd->reloc_off; | |
484 | head->prev = (void *)head->prev + gd->reloc_off; | |
485 | #endif | |
486 | ||
137963d7 FF |
487 | #ifdef CONFIG_B53_SWITCH |
488 | phy_b53_init(); | |
489 | #endif | |
24ae3961 KS |
490 | #ifdef CONFIG_MV88E61XX_SWITCH |
491 | phy_mv88e61xx_init(); | |
492 | #endif | |
d79f1a85 ND |
493 | #ifdef CONFIG_PHY_ADIN |
494 | phy_adin_init(); | |
495 | #endif | |
f7c38cf8 SX |
496 | #ifdef CONFIG_PHY_AQUANTIA |
497 | phy_aquantia_init(); | |
498 | #endif | |
9082eeac AF |
499 | #ifdef CONFIG_PHY_ATHEROS |
500 | phy_atheros_init(); | |
501 | #endif | |
502 | #ifdef CONFIG_PHY_BROADCOM | |
503 | phy_broadcom_init(); | |
504 | #endif | |
9b18e519 SL |
505 | #ifdef CONFIG_PHY_CORTINA |
506 | phy_cortina_init(); | |
507 | #endif | |
a70d7b01 AC |
508 | #ifdef CONFIG_PHY_CORTINA_ACCESS |
509 | phy_cortina_access_init(); | |
510 | #endif | |
9082eeac AF |
511 | #ifdef CONFIG_PHY_DAVICOM |
512 | phy_davicom_init(); | |
513 | #endif | |
f485c8a3 MP |
514 | #ifdef CONFIG_PHY_ET1011C |
515 | phy_et1011c_init(); | |
516 | #endif | |
9082eeac AF |
517 | #ifdef CONFIG_PHY_LXT |
518 | phy_lxt_init(); | |
519 | #endif | |
520 | #ifdef CONFIG_PHY_MARVELL | |
521 | phy_marvell_init(); | |
522 | #endif | |
d397f7c4 AG |
523 | #ifdef CONFIG_PHY_MICREL_KSZ8XXX |
524 | phy_micrel_ksz8xxx_init(); | |
525 | #endif | |
526 | #ifdef CONFIG_PHY_MICREL_KSZ90X1 | |
527 | phy_micrel_ksz90x1_init(); | |
9082eeac | 528 | #endif |
8995a96d NA |
529 | #ifdef CONFIG_PHY_MESON_GXL |
530 | phy_meson_gxl_init(); | |
531 | #endif | |
9082eeac AF |
532 | #ifdef CONFIG_PHY_NATSEMI |
533 | phy_natsemi_init(); | |
534 | #endif | |
3ef2050a | 535 | #ifdef CONFIG_NXP_C45_TJA11XX_PHY |
01c67a38 | 536 | phy_nxp_c45_tja11xx_init(); |
3ef2050a | 537 | #endif |
a2f5c936 MT |
538 | #ifdef CONFIG_PHY_NXP_TJA11XX |
539 | phy_nxp_tja11xx_init(); | |
540 | #endif | |
9082eeac AF |
541 | #ifdef CONFIG_PHY_REALTEK |
542 | phy_realtek_init(); | |
543 | #endif | |
5751aa2f NI |
544 | #ifdef CONFIG_PHY_SMSC |
545 | phy_smsc_init(); | |
546 | #endif | |
9082eeac AF |
547 | #ifdef CONFIG_PHY_TERANETICS |
548 | phy_teranetics_init(); | |
549 | #endif | |
721aed79 EI |
550 | #ifdef CONFIG_PHY_TI |
551 | phy_ti_init(); | |
552 | #endif | |
9082eeac AF |
553 | #ifdef CONFIG_PHY_VITESSE |
554 | phy_vitesse_init(); | |
555 | #endif | |
ed6fad3e SDPP |
556 | #ifdef CONFIG_PHY_XILINX |
557 | phy_xilinx_init(); | |
558 | #endif | |
5e6c069b TH |
559 | #ifdef CONFIG_PHY_XWAY |
560 | phy_xway_init(); | |
561 | #endif | |
a5fd13ad JH |
562 | #ifdef CONFIG_PHY_MSCC |
563 | phy_mscc_init(); | |
564 | #endif | |
db40c1aa HS |
565 | #ifdef CONFIG_PHY_FIXED |
566 | phy_fixed_init(); | |
f41e588c | 567 | #endif |
e2ffeaa1 SMJ |
568 | #ifdef CONFIG_PHY_NCSI |
569 | phy_ncsi_init(); | |
570 | #endif | |
f41e588c SDPP |
571 | #ifdef CONFIG_PHY_XILINX_GMII2RGMII |
572 | phy_xilinx_gmii2rgmii_init(); | |
db40c1aa | 573 | #endif |
be49508a SDPP |
574 | genphy_init(); |
575 | ||
5f184715 AF |
576 | return 0; |
577 | } | |
578 | ||
579 | int phy_register(struct phy_driver *drv) | |
580 | { | |
581 | INIT_LIST_HEAD(&drv->list); | |
582 | list_add_tail(&drv->list, &phy_drivers); | |
583 | ||
abbfcbe5 MS |
584 | #ifdef CONFIG_NEEDS_MANUAL_RELOC |
585 | if (drv->probe) | |
586 | drv->probe += gd->reloc_off; | |
587 | if (drv->config) | |
588 | drv->config += gd->reloc_off; | |
589 | if (drv->startup) | |
590 | drv->startup += gd->reloc_off; | |
591 | if (drv->shutdown) | |
592 | drv->shutdown += gd->reloc_off; | |
593 | if (drv->readext) | |
594 | drv->readext += gd->reloc_off; | |
595 | if (drv->writeext) | |
596 | drv->writeext += gd->reloc_off; | |
4f6746dc CC |
597 | if (drv->read_mmd) |
598 | drv->read_mmd += gd->reloc_off; | |
599 | if (drv->write_mmd) | |
600 | drv->write_mmd += gd->reloc_off; | |
abbfcbe5 | 601 | #endif |
5f184715 AF |
602 | return 0; |
603 | } | |
604 | ||
b18acb0a AB |
605 | int phy_set_supported(struct phy_device *phydev, u32 max_speed) |
606 | { | |
607 | /* The default values for phydev->supported are provided by the PHY | |
608 | * driver "features" member, we want to reset to sane defaults first | |
609 | * before supporting higher speeds. | |
610 | */ | |
611 | phydev->supported &= PHY_DEFAULT_FEATURES; | |
612 | ||
613 | switch (max_speed) { | |
614 | default: | |
615 | return -ENOTSUPP; | |
616 | case SPEED_1000: | |
617 | phydev->supported |= PHY_1000BT_FEATURES; | |
618 | /* fall through */ | |
619 | case SPEED_100: | |
620 | phydev->supported |= PHY_100BT_FEATURES; | |
621 | /* fall through */ | |
622 | case SPEED_10: | |
623 | phydev->supported |= PHY_10BT_FEATURES; | |
624 | } | |
625 | ||
626 | return 0; | |
627 | } | |
628 | ||
960d70c6 | 629 | static int phy_probe(struct phy_device *phydev) |
5f184715 AF |
630 | { |
631 | int err = 0; | |
632 | ||
8d631203 MS |
633 | phydev->advertising = phydev->drv->features; |
634 | phydev->supported = phydev->drv->features; | |
635 | ||
5f184715 AF |
636 | phydev->mmds = phydev->drv->mmds; |
637 | ||
638 | if (phydev->drv->probe) | |
639 | err = phydev->drv->probe(phydev); | |
640 | ||
641 | return err; | |
642 | } | |
643 | ||
79bef5fb | 644 | static struct phy_driver *generic_for_phy(struct phy_device *phydev) |
5f184715 AF |
645 | { |
646 | #ifdef CONFIG_PHYLIB_10G | |
79bef5fb | 647 | if (phydev->is_c45) |
5f184715 AF |
648 | return &gen10g_driver; |
649 | #endif | |
650 | ||
651 | return &genphy_driver; | |
652 | } | |
653 | ||
e24b58f5 | 654 | static struct phy_driver *get_phy_driver(struct phy_device *phydev) |
5f184715 AF |
655 | { |
656 | struct list_head *entry; | |
657 | int phy_id = phydev->phy_id; | |
658 | struct phy_driver *drv = NULL; | |
659 | ||
660 | list_for_each(entry, &phy_drivers) { | |
661 | drv = list_entry(entry, struct phy_driver, list); | |
662 | if ((drv->uid & drv->mask) == (phy_id & drv->mask)) | |
663 | return drv; | |
664 | } | |
665 | ||
666 | /* If we made it here, there's no driver for this PHY */ | |
79bef5fb | 667 | return generic_for_phy(phydev); |
5f184715 AF |
668 | } |
669 | ||
3249116d | 670 | struct phy_device *phy_device_create(struct mii_dev *bus, int addr, |
e24b58f5 | 671 | u32 phy_id, bool is_c45) |
5f184715 AF |
672 | { |
673 | struct phy_device *dev; | |
674 | ||
8d631203 MS |
675 | /* |
676 | * We allocate the device, and initialize the | |
677 | * default values | |
678 | */ | |
5f184715 AF |
679 | dev = malloc(sizeof(*dev)); |
680 | if (!dev) { | |
681 | printf("Failed to allocate PHY device for %s:%d\n", | |
15c49df8 | 682 | bus ? bus->name : "(null bus)", addr); |
5f184715 AF |
683 | return NULL; |
684 | } | |
685 | ||
686 | memset(dev, 0, sizeof(*dev)); | |
687 | ||
688 | dev->duplex = -1; | |
26d3acda | 689 | dev->link = 0; |
e24b58f5 | 690 | dev->interface = PHY_INTERFACE_MODE_NA; |
5f184715 | 691 | |
eef0b8a9 | 692 | dev->node = ofnode_null(); |
eef0b8a9 | 693 | |
5f184715 AF |
694 | dev->autoneg = AUTONEG_ENABLE; |
695 | ||
696 | dev->addr = addr; | |
697 | dev->phy_id = phy_id; | |
b3eabd82 | 698 | dev->is_c45 = is_c45; |
5f184715 AF |
699 | dev->bus = bus; |
700 | ||
e24b58f5 | 701 | dev->drv = get_phy_driver(dev); |
5f184715 | 702 | |
05eb6a69 SDPP |
703 | if (phy_probe(dev)) { |
704 | printf("%s, PHY probe failed\n", __func__); | |
705 | return NULL; | |
706 | } | |
5f184715 | 707 | |
15c49df8 | 708 | if (addr >= 0 && addr < PHY_MAX_ADDR && phy_id != PHY_FIXED_ID) |
7b4ea2d8 | 709 | bus->phymap[addr] = dev; |
5f184715 AF |
710 | |
711 | return dev; | |
712 | } | |
713 | ||
714 | /** | |
715 | * get_phy_id - reads the specified addr for its ID. | |
716 | * @bus: the target MII bus | |
717 | * @addr: PHY address on the MII bus | |
718 | * @phy_id: where to store the ID retrieved. | |
719 | * | |
720 | * Description: Reads the ID registers of the PHY at @addr on the | |
721 | * @bus, stores it in @phy_id and returns zero on success. | |
722 | */ | |
5707d5ff | 723 | int __weak get_phy_id(struct mii_dev *bus, int addr, int devad, u32 *phy_id) |
5f184715 AF |
724 | { |
725 | int phy_reg; | |
726 | ||
8d631203 MS |
727 | /* |
728 | * Grab the bits from PHYIR1, and put them | |
729 | * in the upper half | |
730 | */ | |
5f184715 AF |
731 | phy_reg = bus->read(bus, addr, devad, MII_PHYSID1); |
732 | ||
733 | if (phy_reg < 0) | |
734 | return -EIO; | |
735 | ||
736 | *phy_id = (phy_reg & 0xffff) << 16; | |
737 | ||
738 | /* Grab the bits from PHYIR2, and put them in the lower half */ | |
739 | phy_reg = bus->read(bus, addr, devad, MII_PHYSID2); | |
740 | ||
741 | if (phy_reg < 0) | |
742 | return -EIO; | |
743 | ||
744 | *phy_id |= (phy_reg & 0xffff); | |
745 | ||
746 | return 0; | |
747 | } | |
748 | ||
1adb406b | 749 | static struct phy_device *create_phy_by_mask(struct mii_dev *bus, |
e24b58f5 | 750 | uint phy_mask, int devad) |
1adb406b TK |
751 | { |
752 | u32 phy_id = 0xffffffff; | |
b3eabd82 | 753 | bool is_c45; |
8d631203 | 754 | |
1adb406b TK |
755 | while (phy_mask) { |
756 | int addr = ffs(phy_mask) - 1; | |
757 | int r = get_phy_id(bus, addr, devad, &phy_id); | |
3bf135b6 AM |
758 | |
759 | /* | |
760 | * If the PHY ID is flat 0 we ignore it. There are C45 PHYs | |
761 | * that return all 0s for C22 reads (like Aquantia AQR112) and | |
762 | * there are C22 PHYs that return all 0s for C45 reads (like | |
763 | * Atheros AR8035). | |
764 | */ | |
765 | if (r == 0 && phy_id == 0) | |
766 | goto next; | |
767 | ||
1adb406b | 768 | /* If the PHY ID is mostly f's, we didn't find anything */ |
b3eabd82 PB |
769 | if (r == 0 && (phy_id & 0x1fffffff) != 0x1fffffff) { |
770 | is_c45 = (devad == MDIO_DEVAD_NONE) ? false : true; | |
e24b58f5 | 771 | return phy_device_create(bus, addr, phy_id, is_c45); |
b3eabd82 | 772 | } |
3bf135b6 | 773 | next: |
1adb406b TK |
774 | phy_mask &= ~(1 << addr); |
775 | } | |
776 | return NULL; | |
777 | } | |
778 | ||
779 | static struct phy_device *search_for_existing_phy(struct mii_dev *bus, | |
e24b58f5 | 780 | uint phy_mask) |
1adb406b TK |
781 | { |
782 | /* If we have one, return the existing device, with new interface */ | |
783 | while (phy_mask) { | |
784 | int addr = ffs(phy_mask) - 1; | |
8d631203 | 785 | |
e24b58f5 | 786 | if (bus->phymap[addr]) |
1adb406b | 787 | return bus->phymap[addr]; |
e24b58f5 | 788 | |
1adb406b TK |
789 | phy_mask &= ~(1 << addr); |
790 | } | |
791 | return NULL; | |
792 | } | |
793 | ||
794 | static struct phy_device *get_phy_device_by_mask(struct mii_dev *bus, | |
e24b58f5 | 795 | uint phy_mask) |
1adb406b | 796 | { |
1adb406b | 797 | struct phy_device *phydev; |
9c6de508 FC |
798 | int devad[] = { |
799 | /* Clause-22 */ | |
800 | MDIO_DEVAD_NONE, | |
801 | /* Clause-45 */ | |
802 | MDIO_MMD_PMAPMD, | |
803 | MDIO_MMD_WIS, | |
804 | MDIO_MMD_PCS, | |
805 | MDIO_MMD_PHYXS, | |
806 | MDIO_MMD_VEND1, | |
807 | }; | |
808 | int i, devad_cnt; | |
809 | ||
810 | devad_cnt = sizeof(devad)/sizeof(int); | |
e24b58f5 | 811 | phydev = search_for_existing_phy(bus, phy_mask); |
1adb406b TK |
812 | if (phydev) |
813 | return phydev; | |
9c6de508 FC |
814 | /* try different access clauses */ |
815 | for (i = 0; i < devad_cnt; i++) { | |
e24b58f5 | 816 | phydev = create_phy_by_mask(bus, phy_mask, devad[i]); |
1adb406b TK |
817 | if (IS_ERR(phydev)) |
818 | return NULL; | |
819 | if (phydev) | |
820 | return phydev; | |
821 | } | |
3e1949d7 BM |
822 | |
823 | debug("\n%s PHY: ", bus->name); | |
824 | while (phy_mask) { | |
825 | int addr = ffs(phy_mask) - 1; | |
8d631203 | 826 | |
3e1949d7 BM |
827 | debug("%d ", addr); |
828 | phy_mask &= ~(1 << addr); | |
829 | } | |
830 | debug("not found\n"); | |
0132b9ab BM |
831 | |
832 | return NULL; | |
1adb406b TK |
833 | } |
834 | ||
5f184715 | 835 | /** |
8d631203 MS |
836 | * get_phy_device - reads the specified PHY device and returns its |
837 | * @phy_device struct | |
5f184715 AF |
838 | * @bus: the target MII bus |
839 | * @addr: PHY address on the MII bus | |
840 | * | |
841 | * Description: Reads the ID registers of the PHY at @addr on the | |
842 | * @bus, then allocates and returns the phy_device to represent it. | |
843 | */ | |
e24b58f5 | 844 | static struct phy_device *get_phy_device(struct mii_dev *bus, int addr) |
5f184715 | 845 | { |
e24b58f5 | 846 | return get_phy_device_by_mask(bus, 1 << addr); |
5f184715 AF |
847 | } |
848 | ||
849 | int phy_reset(struct phy_device *phydev) | |
850 | { | |
851 | int reg; | |
852 | int timeout = 500; | |
853 | int devad = MDIO_DEVAD_NONE; | |
854 | ||
ddcd1f30 SX |
855 | if (phydev->flags & PHY_FLAG_BROKEN_RESET) |
856 | return 0; | |
857 | ||
5f184715 AF |
858 | #ifdef CONFIG_PHYLIB_10G |
859 | /* If it's 10G, we need to issue reset through one of the MMDs */ | |
79bef5fb | 860 | if (phydev->is_c45) { |
5f184715 AF |
861 | if (!phydev->mmds) |
862 | gen10g_discover_mmds(phydev); | |
863 | ||
864 | devad = ffs(phydev->mmds) - 1; | |
865 | } | |
866 | #endif | |
867 | ||
a058052c | 868 | if (phy_write(phydev, devad, MII_BMCR, BMCR_RESET) < 0) { |
5f184715 AF |
869 | debug("PHY reset failed\n"); |
870 | return -1; | |
871 | } | |
872 | ||
16199a8b | 873 | #if CONFIG_PHY_RESET_DELAY > 0 |
5f184715 AF |
874 | udelay(CONFIG_PHY_RESET_DELAY); /* Intel LXT971A needs this */ |
875 | #endif | |
876 | /* | |
877 | * Poll the control register for the reset bit to go to 0 (it is | |
878 | * auto-clearing). This should happen within 0.5 seconds per the | |
879 | * IEEE spec. | |
880 | */ | |
a058052c | 881 | reg = phy_read(phydev, devad, MII_BMCR); |
5f184715 AF |
882 | while ((reg & BMCR_RESET) && timeout--) { |
883 | reg = phy_read(phydev, devad, MII_BMCR); | |
884 | ||
885 | if (reg < 0) { | |
886 | debug("PHY status read failed\n"); | |
887 | return -1; | |
888 | } | |
889 | udelay(1000); | |
890 | } | |
891 | ||
892 | if (reg & BMCR_RESET) { | |
893 | puts("PHY reset timed out\n"); | |
894 | return -1; | |
895 | } | |
896 | ||
897 | return 0; | |
898 | } | |
899 | ||
900 | int miiphy_reset(const char *devname, unsigned char addr) | |
901 | { | |
902 | struct mii_dev *bus = miiphy_get_dev_by_name(devname); | |
903 | struct phy_device *phydev; | |
904 | ||
e24b58f5 | 905 | phydev = get_phy_device(bus, addr); |
5f184715 AF |
906 | |
907 | return phy_reset(phydev); | |
908 | } | |
909 | ||
e24b58f5 | 910 | struct phy_device *phy_find_by_mask(struct mii_dev *bus, uint phy_mask) |
5f184715 | 911 | { |
5f184715 | 912 | /* Reset the bus */ |
59370f3f | 913 | if (bus->reset) { |
e3a77218 | 914 | bus->reset(bus); |
5f184715 | 915 | |
59370f3f | 916 | /* Wait 15ms to make sure the PHY has come out of hard reset */ |
8d631203 | 917 | mdelay(15); |
59370f3f JK |
918 | } |
919 | ||
e24b58f5 | 920 | return get_phy_device_by_mask(bus, phy_mask); |
1adb406b | 921 | } |
5f184715 | 922 | |
e24b58f5 MB |
923 | void phy_connect_dev(struct phy_device *phydev, struct udevice *dev, |
924 | phy_interface_t interface) | |
1adb406b | 925 | { |
5f184715 AF |
926 | /* Soft Reset the PHY */ |
927 | phy_reset(phydev); | |
17ecfa9b | 928 | if (phydev->dev && phydev->dev != dev) { |
5f184715 | 929 | printf("%s:%d is connected to %s. Reconnecting to %s\n", |
8d631203 MS |
930 | phydev->bus->name, phydev->addr, |
931 | phydev->dev->name, dev->name); | |
1adb406b | 932 | } |
5f184715 | 933 | phydev->dev = dev; |
e24b58f5 MB |
934 | phydev->interface = interface; |
935 | debug("%s connected to %s mode %s\n", dev->name, phydev->drv->name, | |
936 | phy_string_for_interface(interface)); | |
1adb406b TK |
937 | } |
938 | ||
f41e588c | 939 | #ifdef CONFIG_PHY_XILINX_GMII2RGMII |
f41e588c | 940 | static struct phy_device *phy_connect_gmii2rgmii(struct mii_dev *bus, |
e24b58f5 | 941 | struct udevice *dev) |
f41e588c SDPP |
942 | { |
943 | struct phy_device *phydev = NULL; | |
0a9f0e0d | 944 | ofnode node; |
6c993815 | 945 | |
0a9f0e0d | 946 | ofnode_for_each_subnode(node, dev_ofnode(dev)) { |
6c993815 BM |
947 | node = ofnode_by_compatible(node, "xlnx,gmii-to-rgmii-1.0"); |
948 | if (ofnode_valid(node)) { | |
949 | phydev = phy_device_create(bus, 0, | |
e24b58f5 | 950 | PHY_GMII2RGMII_ID, false); |
6c993815 BM |
951 | if (phydev) |
952 | phydev->node = node; | |
f41e588c SDPP |
953 | break; |
954 | } | |
6c993815 BM |
955 | |
956 | node = ofnode_first_subnode(node); | |
f41e588c SDPP |
957 | } |
958 | ||
959 | return phydev; | |
960 | } | |
961 | #endif | |
962 | ||
c256d3f7 | 963 | #ifdef CONFIG_PHY_FIXED |
d0781c95 VO |
964 | /** |
965 | * fixed_phy_create() - create an unconnected fixed-link pseudo-PHY device | |
966 | * @node: OF node for the container of the fixed-link node | |
967 | * | |
968 | * Description: Creates a struct phy_device based on a fixed-link of_node | |
969 | * description. Can be used without phy_connect by drivers which do not expose | |
970 | * a UCLASS_ETH udevice. | |
971 | */ | |
972 | struct phy_device *fixed_phy_create(ofnode node) | |
973 | { | |
f27bc8af | 974 | struct phy_device *phydev; |
d0781c95 VO |
975 | ofnode subnode; |
976 | ||
d0781c95 VO |
977 | subnode = ofnode_find_subnode(node, "fixed-link"); |
978 | if (!ofnode_valid(subnode)) { | |
979 | return NULL; | |
980 | } | |
981 | ||
e24b58f5 | 982 | phydev = phy_device_create(NULL, 0, PHY_FIXED_ID, false); |
ebb8ff61 | 983 | if (phydev) { |
f27bc8af | 984 | phydev->node = subnode; |
ebb8ff61 HS |
985 | phydev->interface = ofnode_read_phy_mode(node); |
986 | } | |
e24b58f5 | 987 | |
f27bc8af | 988 | return phydev; |
d0781c95 VO |
989 | } |
990 | ||
c256d3f7 | 991 | static struct phy_device *phy_connect_fixed(struct mii_dev *bus, |
e24b58f5 | 992 | struct udevice *dev) |
1adb406b | 993 | { |
f27bc8af | 994 | ofnode node = dev_ofnode(dev), subnode; |
676fbd3d | 995 | struct phy_device *phydev = NULL; |
f27bc8af | 996 | |
676fbd3d | 997 | if (ofnode_phy_is_fixed_link(node, &subnode)) { |
e24b58f5 | 998 | phydev = phy_device_create(bus, 0, PHY_FIXED_ID, false); |
676fbd3d BM |
999 | if (phydev) |
1000 | phydev->node = subnode; | |
1001 | } | |
c256d3f7 SDPP |
1002 | |
1003 | return phydev; | |
1004 | } | |
db40c1aa | 1005 | #endif |
c256d3f7 | 1006 | |
c256d3f7 SDPP |
1007 | struct phy_device *phy_connect(struct mii_dev *bus, int addr, |
1008 | struct udevice *dev, | |
1009 | phy_interface_t interface) | |
c256d3f7 SDPP |
1010 | { |
1011 | struct phy_device *phydev = NULL; | |
1f607896 | 1012 | uint mask = (addr >= 0) ? (1 << addr) : 0xffffffff; |
c256d3f7 SDPP |
1013 | |
1014 | #ifdef CONFIG_PHY_FIXED | |
e24b58f5 | 1015 | phydev = phy_connect_fixed(bus, dev); |
c256d3f7 | 1016 | #endif |
e2ffeaa1 SMJ |
1017 | |
1018 | #ifdef CONFIG_PHY_NCSI | |
09bd3d0b | 1019 | if (!phydev && interface == PHY_INTERFACE_MODE_NCSI) |
e24b58f5 | 1020 | phydev = phy_device_create(bus, 0, PHY_NCSI_ID, false); |
e2ffeaa1 SMJ |
1021 | #endif |
1022 | ||
a744a284 MS |
1023 | #ifdef CONFIG_PHY_ETHERNET_ID |
1024 | if (!phydev) | |
7f418ea5 | 1025 | phydev = phy_connect_phy_id(bus, dev, addr); |
a744a284 MS |
1026 | #endif |
1027 | ||
f41e588c SDPP |
1028 | #ifdef CONFIG_PHY_XILINX_GMII2RGMII |
1029 | if (!phydev) | |
e24b58f5 | 1030 | phydev = phy_connect_gmii2rgmii(bus, dev); |
f41e588c | 1031 | #endif |
c256d3f7 | 1032 | |
8d631203 | 1033 | if (!phydev) |
e24b58f5 | 1034 | phydev = phy_find_by_mask(bus, mask); |
5f184715 | 1035 | |
1adb406b | 1036 | if (phydev) |
e24b58f5 | 1037 | phy_connect_dev(phydev, dev, interface); |
1adb406b TK |
1038 | else |
1039 | printf("Could not get PHY for %s: addr %d\n", bus->name, addr); | |
5f184715 AF |
1040 | return phydev; |
1041 | } | |
1042 | ||
6e5b9ac0 TT |
1043 | /* |
1044 | * Start the PHY. Returns 0 on success, or a negative error code. | |
1045 | */ | |
5f184715 AF |
1046 | int phy_startup(struct phy_device *phydev) |
1047 | { | |
1048 | if (phydev->drv->startup) | |
6e5b9ac0 | 1049 | return phydev->drv->startup(phydev); |
5f184715 AF |
1050 | |
1051 | return 0; | |
1052 | } | |
1053 | ||
3c6928fd | 1054 | __weak int board_phy_config(struct phy_device *phydev) |
5f184715 | 1055 | { |
9fafe7da TK |
1056 | if (phydev->drv->config) |
1057 | return phydev->drv->config(phydev); | |
5f184715 AF |
1058 | return 0; |
1059 | } | |
1060 | ||
5f184715 AF |
1061 | int phy_config(struct phy_device *phydev) |
1062 | { | |
5f184715 | 1063 | /* Invoke an optional board-specific helper */ |
7a673f0b | 1064 | return board_phy_config(phydev); |
5f184715 AF |
1065 | } |
1066 | ||
1067 | int phy_shutdown(struct phy_device *phydev) | |
1068 | { | |
1069 | if (phydev->drv->shutdown) | |
1070 | phydev->drv->shutdown(phydev); | |
1071 | ||
1072 | return 0; | |
1073 | } | |
c74c8e66 | 1074 | |
087baf80 AA |
1075 | /** |
1076 | * phy_modify - Convenience function for modifying a given PHY register | |
1077 | * @phydev: the phy_device struct | |
1078 | * @devad: The MMD to read from | |
1079 | * @regnum: register number to write | |
1080 | * @mask: bit mask of bits to clear | |
1081 | * @set: new value of bits set in mask to write to @regnum | |
1082 | */ | |
1083 | int phy_modify(struct phy_device *phydev, int devad, int regnum, u16 mask, | |
1084 | u16 set) | |
1085 | { | |
1086 | int ret; | |
1087 | ||
1088 | ret = phy_read(phydev, devad, regnum); | |
1089 | if (ret < 0) | |
1090 | return ret; | |
1091 | ||
1092 | return phy_write(phydev, devad, regnum, (ret & ~mask) | set); | |
1093 | } | |
65f2266e RF |
1094 | |
1095 | /** | |
1096 | * phy_read - Convenience function for reading a given PHY register | |
1097 | * @phydev: the phy_device struct | |
1098 | * @devad: The MMD to read from | |
1099 | * @regnum: register number to read | |
1100 | * @return: value for success or negative errno for failure | |
1101 | */ | |
1102 | int phy_read(struct phy_device *phydev, int devad, int regnum) | |
1103 | { | |
1104 | struct mii_dev *bus = phydev->bus; | |
1105 | ||
1106 | if (!bus || !bus->read) { | |
1107 | debug("%s: No bus configured\n", __func__); | |
1108 | return -1; | |
1109 | } | |
1110 | ||
1111 | return bus->read(bus, phydev->addr, devad, regnum); | |
1112 | } | |
1113 | ||
1114 | /** | |
1115 | * phy_write - Convenience function for writing a given PHY register | |
1116 | * @phydev: the phy_device struct | |
1117 | * @devad: The MMD to read from | |
1118 | * @regnum: register number to write | |
1119 | * @val: value to write to @regnum | |
1120 | * @return: 0 for success or negative errno for failure | |
1121 | */ | |
1122 | int phy_write(struct phy_device *phydev, int devad, int regnum, u16 val) | |
1123 | { | |
1124 | struct mii_dev *bus = phydev->bus; | |
1125 | ||
1126 | if (!bus || !bus->write) { | |
1127 | debug("%s: No bus configured\n", __func__); | |
1128 | return -1; | |
1129 | } | |
1130 | ||
1131 | return bus->write(bus, phydev->addr, devad, regnum, val); | |
1132 | } | |
1133 | ||
1134 | /** | |
1135 | * phy_mmd_start_indirect - Convenience function for writing MMD registers | |
1136 | * @phydev: the phy_device struct | |
1137 | * @devad: The MMD to read from | |
1138 | * @regnum: register number to write | |
1139 | * @return: None | |
1140 | */ | |
1141 | void phy_mmd_start_indirect(struct phy_device *phydev, int devad, int regnum) | |
1142 | { | |
1143 | /* Write the desired MMD Devad */ | |
1144 | phy_write(phydev, MDIO_DEVAD_NONE, MII_MMD_CTRL, devad); | |
1145 | ||
1146 | /* Write the desired MMD register address */ | |
1147 | phy_write(phydev, MDIO_DEVAD_NONE, MII_MMD_DATA, regnum); | |
1148 | ||
1149 | /* Select the Function : DATA with no post increment */ | |
1150 | phy_write(phydev, MDIO_DEVAD_NONE, MII_MMD_CTRL, | |
1151 | (devad | MII_MMD_CTRL_NOINCR)); | |
1152 | } | |
1153 | ||
1154 | /** | |
1155 | * phy_read_mmd - Convenience function for reading a register | |
1156 | * from an MMD on a given PHY. | |
1157 | * @phydev: The phy_device struct | |
1158 | * @devad: The MMD to read from | |
1159 | * @regnum: The register on the MMD to read | |
1160 | * @return: Value for success or negative errno for failure | |
1161 | */ | |
1162 | int phy_read_mmd(struct phy_device *phydev, int devad, int regnum) | |
1163 | { | |
1164 | struct phy_driver *drv = phydev->drv; | |
1165 | ||
1166 | if (regnum > (u16)~0 || devad > 32) | |
1167 | return -EINVAL; | |
1168 | ||
1169 | /* driver-specific access */ | |
1170 | if (drv->read_mmd) | |
1171 | return drv->read_mmd(phydev, devad, regnum); | |
1172 | ||
1173 | /* direct C45 / C22 access */ | |
1174 | if ((drv->features & PHY_10G_FEATURES) == PHY_10G_FEATURES || | |
1175 | devad == MDIO_DEVAD_NONE || !devad) | |
1176 | return phy_read(phydev, devad, regnum); | |
1177 | ||
1178 | /* indirect C22 access */ | |
1179 | phy_mmd_start_indirect(phydev, devad, regnum); | |
1180 | ||
1181 | /* Read the content of the MMD's selected register */ | |
1182 | return phy_read(phydev, MDIO_DEVAD_NONE, MII_MMD_DATA); | |
1183 | } | |
1184 | ||
1185 | /** | |
1186 | * phy_write_mmd - Convenience function for writing a register | |
1187 | * on an MMD on a given PHY. | |
1188 | * @phydev: The phy_device struct | |
1189 | * @devad: The MMD to read from | |
1190 | * @regnum: The register on the MMD to read | |
1191 | * @val: value to write to @regnum | |
1192 | * @return: 0 for success or negative errno for failure | |
1193 | */ | |
1194 | int phy_write_mmd(struct phy_device *phydev, int devad, int regnum, u16 val) | |
1195 | { | |
1196 | struct phy_driver *drv = phydev->drv; | |
1197 | ||
1198 | if (regnum > (u16)~0 || devad > 32) | |
1199 | return -EINVAL; | |
1200 | ||
1201 | /* driver-specific access */ | |
1202 | if (drv->write_mmd) | |
1203 | return drv->write_mmd(phydev, devad, regnum, val); | |
1204 | ||
1205 | /* direct C45 / C22 access */ | |
1206 | if ((drv->features & PHY_10G_FEATURES) == PHY_10G_FEATURES || | |
1207 | devad == MDIO_DEVAD_NONE || !devad) | |
1208 | return phy_write(phydev, devad, regnum, val); | |
1209 | ||
1210 | /* indirect C22 access */ | |
1211 | phy_mmd_start_indirect(phydev, devad, regnum); | |
1212 | ||
1213 | /* Write the data into MMD's selected register */ | |
1214 | return phy_write(phydev, MDIO_DEVAD_NONE, MII_MMD_DATA, val); | |
1215 | } | |
1216 | ||
1217 | /** | |
1218 | * phy_set_bits_mmd - Convenience function for setting bits in a register | |
1219 | * on MMD | |
1220 | * @phydev: the phy_device struct | |
1221 | * @devad: the MMD containing register to modify | |
1222 | * @regnum: register number to modify | |
1223 | * @val: bits to set | |
1224 | * @return: 0 for success or negative errno for failure | |
1225 | */ | |
1226 | int phy_set_bits_mmd(struct phy_device *phydev, int devad, u32 regnum, u16 val) | |
1227 | { | |
1228 | int value, ret; | |
1229 | ||
1230 | value = phy_read_mmd(phydev, devad, regnum); | |
1231 | if (value < 0) | |
1232 | return value; | |
1233 | ||
1234 | value |= val; | |
1235 | ||
1236 | ret = phy_write_mmd(phydev, devad, regnum, value); | |
1237 | if (ret < 0) | |
1238 | return ret; | |
1239 | ||
1240 | return 0; | |
1241 | } | |
1242 | ||
1243 | /** | |
1244 | * phy_clear_bits_mmd - Convenience function for clearing bits in a register | |
1245 | * on MMD | |
1246 | * @phydev: the phy_device struct | |
1247 | * @devad: the MMD containing register to modify | |
1248 | * @regnum: register number to modify | |
1249 | * @val: bits to clear | |
1250 | * @return: 0 for success or negative errno for failure | |
1251 | */ | |
1252 | int phy_clear_bits_mmd(struct phy_device *phydev, int devad, u32 regnum, u16 val) | |
1253 | { | |
1254 | int value, ret; | |
1255 | ||
1256 | value = phy_read_mmd(phydev, devad, regnum); | |
1257 | if (value < 0) | |
1258 | return value; | |
1259 | ||
1260 | value &= ~val; | |
1261 | ||
1262 | ret = phy_write_mmd(phydev, devad, regnum, value); | |
1263 | if (ret < 0) | |
1264 | return ret; | |
1265 | ||
1266 | return 0; | |
1267 | } | |
09bd3d0b SMJ |
1268 | |
1269 | bool phy_interface_is_ncsi(void) | |
1270 | { | |
1271 | struct eth_pdata *pdata = dev_get_plat(eth_get_dev()); | |
1272 | ||
1273 | return pdata->phy_interface == PHY_INTERFACE_MODE_NCSI; | |
1274 | } |