]>
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 | ||
9d5a38c2 MV |
473 | #ifdef CONFIG_NEEDS_MANUAL_RELOC |
474 | static void phy_drv_reloc(struct phy_driver *drv) | |
475 | { | |
476 | if (drv->probe) | |
477 | drv->probe += gd->reloc_off; | |
478 | if (drv->config) | |
479 | drv->config += gd->reloc_off; | |
480 | if (drv->startup) | |
481 | drv->startup += gd->reloc_off; | |
482 | if (drv->shutdown) | |
483 | drv->shutdown += gd->reloc_off; | |
484 | if (drv->readext) | |
485 | drv->readext += gd->reloc_off; | |
486 | if (drv->writeext) | |
487 | drv->writeext += gd->reloc_off; | |
488 | if (drv->read_mmd) | |
489 | drv->read_mmd += gd->reloc_off; | |
490 | if (drv->write_mmd) | |
491 | drv->write_mmd += gd->reloc_off; | |
492 | } | |
493 | #endif | |
494 | ||
5f184715 AF |
495 | int phy_init(void) |
496 | { | |
c689c486 | 497 | #ifdef CONFIG_NEEDS_MANUAL_RELOC |
7940a93e MV |
498 | const int ll_n_ents = ll_entry_count(struct phy_driver, phy_driver); |
499 | struct phy_driver *drv, *ll_entry; | |
500 | ||
c689c486 SDPP |
501 | /* |
502 | * The pointers inside phy_drivers also needs to be updated incase of | |
503 | * manual reloc, without which these points to some invalid | |
504 | * pre reloc address and leads to invalid accesses, hangs. | |
505 | */ | |
506 | struct list_head *head = &phy_drivers; | |
507 | ||
508 | head->next = (void *)head->next + gd->reloc_off; | |
509 | head->prev = (void *)head->prev + gd->reloc_off; | |
7940a93e MV |
510 | |
511 | /* Perform manual relocation on linker list based PHY drivers */ | |
512 | ll_entry = ll_entry_start(struct phy_driver, phy_driver); | |
513 | for (drv = ll_entry; drv != ll_entry + ll_n_ents; drv++) | |
514 | phy_drv_reloc(drv); | |
c689c486 SDPP |
515 | #endif |
516 | ||
db40c1aa HS |
517 | #ifdef CONFIG_PHY_FIXED |
518 | phy_fixed_init(); | |
f41e588c | 519 | #endif |
e2ffeaa1 SMJ |
520 | #ifdef CONFIG_PHY_NCSI |
521 | phy_ncsi_init(); | |
522 | #endif | |
f41e588c SDPP |
523 | #ifdef CONFIG_PHY_XILINX_GMII2RGMII |
524 | phy_xilinx_gmii2rgmii_init(); | |
db40c1aa | 525 | #endif |
be49508a SDPP |
526 | genphy_init(); |
527 | ||
5f184715 AF |
528 | return 0; |
529 | } | |
530 | ||
531 | int phy_register(struct phy_driver *drv) | |
532 | { | |
533 | INIT_LIST_HEAD(&drv->list); | |
534 | list_add_tail(&drv->list, &phy_drivers); | |
535 | ||
abbfcbe5 | 536 | #ifdef CONFIG_NEEDS_MANUAL_RELOC |
9d5a38c2 | 537 | phy_drv_reloc(drv); |
abbfcbe5 | 538 | #endif |
5f184715 AF |
539 | return 0; |
540 | } | |
541 | ||
b18acb0a AB |
542 | int phy_set_supported(struct phy_device *phydev, u32 max_speed) |
543 | { | |
544 | /* The default values for phydev->supported are provided by the PHY | |
545 | * driver "features" member, we want to reset to sane defaults first | |
546 | * before supporting higher speeds. | |
547 | */ | |
548 | phydev->supported &= PHY_DEFAULT_FEATURES; | |
549 | ||
550 | switch (max_speed) { | |
551 | default: | |
552 | return -ENOTSUPP; | |
553 | case SPEED_1000: | |
554 | phydev->supported |= PHY_1000BT_FEATURES; | |
555 | /* fall through */ | |
556 | case SPEED_100: | |
557 | phydev->supported |= PHY_100BT_FEATURES; | |
558 | /* fall through */ | |
559 | case SPEED_10: | |
560 | phydev->supported |= PHY_10BT_FEATURES; | |
561 | } | |
562 | ||
563 | return 0; | |
564 | } | |
565 | ||
960d70c6 | 566 | static int phy_probe(struct phy_device *phydev) |
5f184715 AF |
567 | { |
568 | int err = 0; | |
569 | ||
8d631203 MS |
570 | phydev->advertising = phydev->drv->features; |
571 | phydev->supported = phydev->drv->features; | |
572 | ||
5f184715 AF |
573 | phydev->mmds = phydev->drv->mmds; |
574 | ||
575 | if (phydev->drv->probe) | |
576 | err = phydev->drv->probe(phydev); | |
577 | ||
578 | return err; | |
579 | } | |
580 | ||
79bef5fb | 581 | static struct phy_driver *generic_for_phy(struct phy_device *phydev) |
5f184715 AF |
582 | { |
583 | #ifdef CONFIG_PHYLIB_10G | |
79bef5fb | 584 | if (phydev->is_c45) |
5f184715 AF |
585 | return &gen10g_driver; |
586 | #endif | |
587 | ||
588 | return &genphy_driver; | |
589 | } | |
590 | ||
e24b58f5 | 591 | static struct phy_driver *get_phy_driver(struct phy_device *phydev) |
5f184715 | 592 | { |
7940a93e MV |
593 | const int ll_n_ents = ll_entry_count(struct phy_driver, phy_driver); |
594 | struct phy_driver *ll_entry; | |
5f184715 AF |
595 | struct list_head *entry; |
596 | int phy_id = phydev->phy_id; | |
597 | struct phy_driver *drv = NULL; | |
598 | ||
599 | list_for_each(entry, &phy_drivers) { | |
600 | drv = list_entry(entry, struct phy_driver, list); | |
601 | if ((drv->uid & drv->mask) == (phy_id & drv->mask)) | |
602 | return drv; | |
603 | } | |
604 | ||
7940a93e MV |
605 | ll_entry = ll_entry_start(struct phy_driver, phy_driver); |
606 | for (drv = ll_entry; drv != ll_entry + ll_n_ents; drv++) | |
607 | if ((drv->uid & drv->mask) == (phy_id & drv->mask)) | |
608 | return drv; | |
609 | ||
5f184715 | 610 | /* If we made it here, there's no driver for this PHY */ |
79bef5fb | 611 | return generic_for_phy(phydev); |
5f184715 AF |
612 | } |
613 | ||
3249116d | 614 | struct phy_device *phy_device_create(struct mii_dev *bus, int addr, |
e24b58f5 | 615 | u32 phy_id, bool is_c45) |
5f184715 AF |
616 | { |
617 | struct phy_device *dev; | |
618 | ||
8d631203 MS |
619 | /* |
620 | * We allocate the device, and initialize the | |
621 | * default values | |
622 | */ | |
5f184715 AF |
623 | dev = malloc(sizeof(*dev)); |
624 | if (!dev) { | |
625 | printf("Failed to allocate PHY device for %s:%d\n", | |
15c49df8 | 626 | bus ? bus->name : "(null bus)", addr); |
5f184715 AF |
627 | return NULL; |
628 | } | |
629 | ||
630 | memset(dev, 0, sizeof(*dev)); | |
631 | ||
632 | dev->duplex = -1; | |
26d3acda | 633 | dev->link = 0; |
e24b58f5 | 634 | dev->interface = PHY_INTERFACE_MODE_NA; |
5f184715 | 635 | |
eef0b8a9 | 636 | dev->node = ofnode_null(); |
eef0b8a9 | 637 | |
5f184715 AF |
638 | dev->autoneg = AUTONEG_ENABLE; |
639 | ||
640 | dev->addr = addr; | |
641 | dev->phy_id = phy_id; | |
b3eabd82 | 642 | dev->is_c45 = is_c45; |
5f184715 AF |
643 | dev->bus = bus; |
644 | ||
e24b58f5 | 645 | dev->drv = get_phy_driver(dev); |
5f184715 | 646 | |
05eb6a69 SDPP |
647 | if (phy_probe(dev)) { |
648 | printf("%s, PHY probe failed\n", __func__); | |
649 | return NULL; | |
650 | } | |
5f184715 | 651 | |
15c49df8 | 652 | if (addr >= 0 && addr < PHY_MAX_ADDR && phy_id != PHY_FIXED_ID) |
7b4ea2d8 | 653 | bus->phymap[addr] = dev; |
5f184715 AF |
654 | |
655 | return dev; | |
656 | } | |
657 | ||
658 | /** | |
659 | * get_phy_id - reads the specified addr for its ID. | |
660 | * @bus: the target MII bus | |
661 | * @addr: PHY address on the MII bus | |
662 | * @phy_id: where to store the ID retrieved. | |
663 | * | |
664 | * Description: Reads the ID registers of the PHY at @addr on the | |
665 | * @bus, stores it in @phy_id and returns zero on success. | |
666 | */ | |
5707d5ff | 667 | int __weak get_phy_id(struct mii_dev *bus, int addr, int devad, u32 *phy_id) |
5f184715 AF |
668 | { |
669 | int phy_reg; | |
670 | ||
8d631203 MS |
671 | /* |
672 | * Grab the bits from PHYIR1, and put them | |
673 | * in the upper half | |
674 | */ | |
5f184715 AF |
675 | phy_reg = bus->read(bus, addr, devad, MII_PHYSID1); |
676 | ||
677 | if (phy_reg < 0) | |
678 | return -EIO; | |
679 | ||
680 | *phy_id = (phy_reg & 0xffff) << 16; | |
681 | ||
682 | /* Grab the bits from PHYIR2, and put them in the lower half */ | |
683 | phy_reg = bus->read(bus, addr, devad, MII_PHYSID2); | |
684 | ||
685 | if (phy_reg < 0) | |
686 | return -EIO; | |
687 | ||
688 | *phy_id |= (phy_reg & 0xffff); | |
689 | ||
690 | return 0; | |
691 | } | |
692 | ||
1adb406b | 693 | static struct phy_device *create_phy_by_mask(struct mii_dev *bus, |
e24b58f5 | 694 | uint phy_mask, int devad) |
1adb406b TK |
695 | { |
696 | u32 phy_id = 0xffffffff; | |
b3eabd82 | 697 | bool is_c45; |
8d631203 | 698 | |
1adb406b TK |
699 | while (phy_mask) { |
700 | int addr = ffs(phy_mask) - 1; | |
701 | int r = get_phy_id(bus, addr, devad, &phy_id); | |
3bf135b6 AM |
702 | |
703 | /* | |
704 | * If the PHY ID is flat 0 we ignore it. There are C45 PHYs | |
705 | * that return all 0s for C22 reads (like Aquantia AQR112) and | |
706 | * there are C22 PHYs that return all 0s for C45 reads (like | |
707 | * Atheros AR8035). | |
708 | */ | |
709 | if (r == 0 && phy_id == 0) | |
710 | goto next; | |
711 | ||
1adb406b | 712 | /* If the PHY ID is mostly f's, we didn't find anything */ |
b3eabd82 PB |
713 | if (r == 0 && (phy_id & 0x1fffffff) != 0x1fffffff) { |
714 | is_c45 = (devad == MDIO_DEVAD_NONE) ? false : true; | |
e24b58f5 | 715 | return phy_device_create(bus, addr, phy_id, is_c45); |
b3eabd82 | 716 | } |
3bf135b6 | 717 | next: |
1adb406b TK |
718 | phy_mask &= ~(1 << addr); |
719 | } | |
720 | return NULL; | |
721 | } | |
722 | ||
723 | static struct phy_device *search_for_existing_phy(struct mii_dev *bus, | |
e24b58f5 | 724 | uint phy_mask) |
1adb406b TK |
725 | { |
726 | /* If we have one, return the existing device, with new interface */ | |
727 | while (phy_mask) { | |
728 | int addr = ffs(phy_mask) - 1; | |
8d631203 | 729 | |
e24b58f5 | 730 | if (bus->phymap[addr]) |
1adb406b | 731 | return bus->phymap[addr]; |
e24b58f5 | 732 | |
1adb406b TK |
733 | phy_mask &= ~(1 << addr); |
734 | } | |
735 | return NULL; | |
736 | } | |
737 | ||
738 | static struct phy_device *get_phy_device_by_mask(struct mii_dev *bus, | |
e24b58f5 | 739 | uint phy_mask) |
1adb406b | 740 | { |
1adb406b | 741 | struct phy_device *phydev; |
9c6de508 FC |
742 | int devad[] = { |
743 | /* Clause-22 */ | |
744 | MDIO_DEVAD_NONE, | |
745 | /* Clause-45 */ | |
746 | MDIO_MMD_PMAPMD, | |
747 | MDIO_MMD_WIS, | |
748 | MDIO_MMD_PCS, | |
749 | MDIO_MMD_PHYXS, | |
750 | MDIO_MMD_VEND1, | |
751 | }; | |
752 | int i, devad_cnt; | |
753 | ||
754 | devad_cnt = sizeof(devad)/sizeof(int); | |
e24b58f5 | 755 | phydev = search_for_existing_phy(bus, phy_mask); |
1adb406b TK |
756 | if (phydev) |
757 | return phydev; | |
9c6de508 FC |
758 | /* try different access clauses */ |
759 | for (i = 0; i < devad_cnt; i++) { | |
e24b58f5 | 760 | phydev = create_phy_by_mask(bus, phy_mask, devad[i]); |
1adb406b TK |
761 | if (IS_ERR(phydev)) |
762 | return NULL; | |
763 | if (phydev) | |
764 | return phydev; | |
765 | } | |
3e1949d7 BM |
766 | |
767 | debug("\n%s PHY: ", bus->name); | |
768 | while (phy_mask) { | |
769 | int addr = ffs(phy_mask) - 1; | |
8d631203 | 770 | |
3e1949d7 BM |
771 | debug("%d ", addr); |
772 | phy_mask &= ~(1 << addr); | |
773 | } | |
774 | debug("not found\n"); | |
0132b9ab BM |
775 | |
776 | return NULL; | |
1adb406b TK |
777 | } |
778 | ||
5f184715 | 779 | /** |
8d631203 MS |
780 | * get_phy_device - reads the specified PHY device and returns its |
781 | * @phy_device struct | |
5f184715 AF |
782 | * @bus: the target MII bus |
783 | * @addr: PHY address on the MII bus | |
784 | * | |
785 | * Description: Reads the ID registers of the PHY at @addr on the | |
786 | * @bus, then allocates and returns the phy_device to represent it. | |
787 | */ | |
e24b58f5 | 788 | static struct phy_device *get_phy_device(struct mii_dev *bus, int addr) |
5f184715 | 789 | { |
e24b58f5 | 790 | return get_phy_device_by_mask(bus, 1 << addr); |
5f184715 AF |
791 | } |
792 | ||
793 | int phy_reset(struct phy_device *phydev) | |
794 | { | |
795 | int reg; | |
796 | int timeout = 500; | |
797 | int devad = MDIO_DEVAD_NONE; | |
798 | ||
ddcd1f30 SX |
799 | if (phydev->flags & PHY_FLAG_BROKEN_RESET) |
800 | return 0; | |
801 | ||
5f184715 AF |
802 | #ifdef CONFIG_PHYLIB_10G |
803 | /* If it's 10G, we need to issue reset through one of the MMDs */ | |
79bef5fb | 804 | if (phydev->is_c45) { |
5f184715 AF |
805 | if (!phydev->mmds) |
806 | gen10g_discover_mmds(phydev); | |
807 | ||
808 | devad = ffs(phydev->mmds) - 1; | |
809 | } | |
810 | #endif | |
811 | ||
a058052c | 812 | if (phy_write(phydev, devad, MII_BMCR, BMCR_RESET) < 0) { |
5f184715 AF |
813 | debug("PHY reset failed\n"); |
814 | return -1; | |
815 | } | |
816 | ||
16199a8b | 817 | #if CONFIG_PHY_RESET_DELAY > 0 |
5f184715 AF |
818 | udelay(CONFIG_PHY_RESET_DELAY); /* Intel LXT971A needs this */ |
819 | #endif | |
820 | /* | |
821 | * Poll the control register for the reset bit to go to 0 (it is | |
822 | * auto-clearing). This should happen within 0.5 seconds per the | |
823 | * IEEE spec. | |
824 | */ | |
a058052c | 825 | reg = phy_read(phydev, devad, MII_BMCR); |
5f184715 AF |
826 | while ((reg & BMCR_RESET) && timeout--) { |
827 | reg = phy_read(phydev, devad, MII_BMCR); | |
828 | ||
829 | if (reg < 0) { | |
830 | debug("PHY status read failed\n"); | |
831 | return -1; | |
832 | } | |
833 | udelay(1000); | |
834 | } | |
835 | ||
836 | if (reg & BMCR_RESET) { | |
837 | puts("PHY reset timed out\n"); | |
838 | return -1; | |
839 | } | |
840 | ||
841 | return 0; | |
842 | } | |
843 | ||
844 | int miiphy_reset(const char *devname, unsigned char addr) | |
845 | { | |
846 | struct mii_dev *bus = miiphy_get_dev_by_name(devname); | |
847 | struct phy_device *phydev; | |
848 | ||
e24b58f5 | 849 | phydev = get_phy_device(bus, addr); |
5f184715 AF |
850 | |
851 | return phy_reset(phydev); | |
852 | } | |
853 | ||
e24b58f5 | 854 | struct phy_device *phy_find_by_mask(struct mii_dev *bus, uint phy_mask) |
5f184715 | 855 | { |
5f184715 | 856 | /* Reset the bus */ |
59370f3f | 857 | if (bus->reset) { |
e3a77218 | 858 | bus->reset(bus); |
5f184715 | 859 | |
59370f3f | 860 | /* Wait 15ms to make sure the PHY has come out of hard reset */ |
8d631203 | 861 | mdelay(15); |
59370f3f JK |
862 | } |
863 | ||
e24b58f5 | 864 | return get_phy_device_by_mask(bus, phy_mask); |
1adb406b | 865 | } |
5f184715 | 866 | |
e24b58f5 MB |
867 | void phy_connect_dev(struct phy_device *phydev, struct udevice *dev, |
868 | phy_interface_t interface) | |
1adb406b | 869 | { |
5f184715 AF |
870 | /* Soft Reset the PHY */ |
871 | phy_reset(phydev); | |
17ecfa9b | 872 | if (phydev->dev && phydev->dev != dev) { |
5f184715 | 873 | printf("%s:%d is connected to %s. Reconnecting to %s\n", |
8d631203 MS |
874 | phydev->bus->name, phydev->addr, |
875 | phydev->dev->name, dev->name); | |
1adb406b | 876 | } |
5f184715 | 877 | phydev->dev = dev; |
e24b58f5 MB |
878 | phydev->interface = interface; |
879 | debug("%s connected to %s mode %s\n", dev->name, phydev->drv->name, | |
880 | phy_string_for_interface(interface)); | |
1adb406b TK |
881 | } |
882 | ||
f41e588c | 883 | #ifdef CONFIG_PHY_XILINX_GMII2RGMII |
f41e588c | 884 | static struct phy_device *phy_connect_gmii2rgmii(struct mii_dev *bus, |
e24b58f5 | 885 | struct udevice *dev) |
f41e588c SDPP |
886 | { |
887 | struct phy_device *phydev = NULL; | |
0a9f0e0d | 888 | ofnode node; |
6c993815 | 889 | |
0a9f0e0d | 890 | ofnode_for_each_subnode(node, dev_ofnode(dev)) { |
6c993815 BM |
891 | node = ofnode_by_compatible(node, "xlnx,gmii-to-rgmii-1.0"); |
892 | if (ofnode_valid(node)) { | |
893 | phydev = phy_device_create(bus, 0, | |
e24b58f5 | 894 | PHY_GMII2RGMII_ID, false); |
6c993815 BM |
895 | if (phydev) |
896 | phydev->node = node; | |
f41e588c SDPP |
897 | break; |
898 | } | |
6c993815 BM |
899 | |
900 | node = ofnode_first_subnode(node); | |
f41e588c SDPP |
901 | } |
902 | ||
903 | return phydev; | |
904 | } | |
905 | #endif | |
906 | ||
c256d3f7 | 907 | #ifdef CONFIG_PHY_FIXED |
d0781c95 VO |
908 | /** |
909 | * fixed_phy_create() - create an unconnected fixed-link pseudo-PHY device | |
910 | * @node: OF node for the container of the fixed-link node | |
911 | * | |
912 | * Description: Creates a struct phy_device based on a fixed-link of_node | |
913 | * description. Can be used without phy_connect by drivers which do not expose | |
914 | * a UCLASS_ETH udevice. | |
915 | */ | |
916 | struct phy_device *fixed_phy_create(ofnode node) | |
917 | { | |
f27bc8af | 918 | struct phy_device *phydev; |
d0781c95 VO |
919 | ofnode subnode; |
920 | ||
d0781c95 VO |
921 | subnode = ofnode_find_subnode(node, "fixed-link"); |
922 | if (!ofnode_valid(subnode)) { | |
923 | return NULL; | |
924 | } | |
925 | ||
e24b58f5 | 926 | phydev = phy_device_create(NULL, 0, PHY_FIXED_ID, false); |
ebb8ff61 | 927 | if (phydev) { |
f27bc8af | 928 | phydev->node = subnode; |
ebb8ff61 HS |
929 | phydev->interface = ofnode_read_phy_mode(node); |
930 | } | |
e24b58f5 | 931 | |
f27bc8af | 932 | return phydev; |
d0781c95 VO |
933 | } |
934 | ||
c256d3f7 | 935 | static struct phy_device *phy_connect_fixed(struct mii_dev *bus, |
e24b58f5 | 936 | struct udevice *dev) |
1adb406b | 937 | { |
f27bc8af | 938 | ofnode node = dev_ofnode(dev), subnode; |
676fbd3d | 939 | struct phy_device *phydev = NULL; |
f27bc8af | 940 | |
676fbd3d | 941 | if (ofnode_phy_is_fixed_link(node, &subnode)) { |
e24b58f5 | 942 | phydev = phy_device_create(bus, 0, PHY_FIXED_ID, false); |
676fbd3d BM |
943 | if (phydev) |
944 | phydev->node = subnode; | |
945 | } | |
c256d3f7 SDPP |
946 | |
947 | return phydev; | |
948 | } | |
db40c1aa | 949 | #endif |
c256d3f7 | 950 | |
c256d3f7 SDPP |
951 | struct phy_device *phy_connect(struct mii_dev *bus, int addr, |
952 | struct udevice *dev, | |
953 | phy_interface_t interface) | |
c256d3f7 SDPP |
954 | { |
955 | struct phy_device *phydev = NULL; | |
1f607896 | 956 | uint mask = (addr >= 0) ? (1 << addr) : 0xffffffff; |
c256d3f7 SDPP |
957 | |
958 | #ifdef CONFIG_PHY_FIXED | |
e24b58f5 | 959 | phydev = phy_connect_fixed(bus, dev); |
c256d3f7 | 960 | #endif |
e2ffeaa1 SMJ |
961 | |
962 | #ifdef CONFIG_PHY_NCSI | |
09bd3d0b | 963 | if (!phydev && interface == PHY_INTERFACE_MODE_NCSI) |
e24b58f5 | 964 | phydev = phy_device_create(bus, 0, PHY_NCSI_ID, false); |
e2ffeaa1 SMJ |
965 | #endif |
966 | ||
a744a284 MS |
967 | #ifdef CONFIG_PHY_ETHERNET_ID |
968 | if (!phydev) | |
7f418ea5 | 969 | phydev = phy_connect_phy_id(bus, dev, addr); |
a744a284 MS |
970 | #endif |
971 | ||
f41e588c SDPP |
972 | #ifdef CONFIG_PHY_XILINX_GMII2RGMII |
973 | if (!phydev) | |
e24b58f5 | 974 | phydev = phy_connect_gmii2rgmii(bus, dev); |
f41e588c | 975 | #endif |
c256d3f7 | 976 | |
8d631203 | 977 | if (!phydev) |
e24b58f5 | 978 | phydev = phy_find_by_mask(bus, mask); |
5f184715 | 979 | |
1adb406b | 980 | if (phydev) |
e24b58f5 | 981 | phy_connect_dev(phydev, dev, interface); |
1adb406b TK |
982 | else |
983 | printf("Could not get PHY for %s: addr %d\n", bus->name, addr); | |
5f184715 AF |
984 | return phydev; |
985 | } | |
986 | ||
6e5b9ac0 TT |
987 | /* |
988 | * Start the PHY. Returns 0 on success, or a negative error code. | |
989 | */ | |
5f184715 AF |
990 | int phy_startup(struct phy_device *phydev) |
991 | { | |
992 | if (phydev->drv->startup) | |
6e5b9ac0 | 993 | return phydev->drv->startup(phydev); |
5f184715 AF |
994 | |
995 | return 0; | |
996 | } | |
997 | ||
3c6928fd | 998 | __weak int board_phy_config(struct phy_device *phydev) |
5f184715 | 999 | { |
9fafe7da TK |
1000 | if (phydev->drv->config) |
1001 | return phydev->drv->config(phydev); | |
5f184715 AF |
1002 | return 0; |
1003 | } | |
1004 | ||
5f184715 AF |
1005 | int phy_config(struct phy_device *phydev) |
1006 | { | |
5f184715 | 1007 | /* Invoke an optional board-specific helper */ |
7a673f0b | 1008 | return board_phy_config(phydev); |
5f184715 AF |
1009 | } |
1010 | ||
1011 | int phy_shutdown(struct phy_device *phydev) | |
1012 | { | |
1013 | if (phydev->drv->shutdown) | |
1014 | phydev->drv->shutdown(phydev); | |
1015 | ||
1016 | return 0; | |
1017 | } | |
c74c8e66 | 1018 | |
087baf80 AA |
1019 | /** |
1020 | * phy_modify - Convenience function for modifying a given PHY register | |
1021 | * @phydev: the phy_device struct | |
1022 | * @devad: The MMD to read from | |
1023 | * @regnum: register number to write | |
1024 | * @mask: bit mask of bits to clear | |
1025 | * @set: new value of bits set in mask to write to @regnum | |
1026 | */ | |
1027 | int phy_modify(struct phy_device *phydev, int devad, int regnum, u16 mask, | |
1028 | u16 set) | |
1029 | { | |
1030 | int ret; | |
1031 | ||
1032 | ret = phy_read(phydev, devad, regnum); | |
1033 | if (ret < 0) | |
1034 | return ret; | |
1035 | ||
1036 | return phy_write(phydev, devad, regnum, (ret & ~mask) | set); | |
1037 | } | |
65f2266e RF |
1038 | |
1039 | /** | |
1040 | * phy_read - Convenience function for reading a given PHY register | |
1041 | * @phydev: the phy_device struct | |
1042 | * @devad: The MMD to read from | |
1043 | * @regnum: register number to read | |
1044 | * @return: value for success or negative errno for failure | |
1045 | */ | |
1046 | int phy_read(struct phy_device *phydev, int devad, int regnum) | |
1047 | { | |
1048 | struct mii_dev *bus = phydev->bus; | |
1049 | ||
1050 | if (!bus || !bus->read) { | |
1051 | debug("%s: No bus configured\n", __func__); | |
1052 | return -1; | |
1053 | } | |
1054 | ||
1055 | return bus->read(bus, phydev->addr, devad, regnum); | |
1056 | } | |
1057 | ||
1058 | /** | |
1059 | * phy_write - Convenience function for writing a given PHY register | |
1060 | * @phydev: the phy_device struct | |
1061 | * @devad: The MMD to read from | |
1062 | * @regnum: register number to write | |
1063 | * @val: value to write to @regnum | |
1064 | * @return: 0 for success or negative errno for failure | |
1065 | */ | |
1066 | int phy_write(struct phy_device *phydev, int devad, int regnum, u16 val) | |
1067 | { | |
1068 | struct mii_dev *bus = phydev->bus; | |
1069 | ||
1070 | if (!bus || !bus->write) { | |
1071 | debug("%s: No bus configured\n", __func__); | |
1072 | return -1; | |
1073 | } | |
1074 | ||
1075 | return bus->write(bus, phydev->addr, devad, regnum, val); | |
1076 | } | |
1077 | ||
1078 | /** | |
1079 | * phy_mmd_start_indirect - Convenience function for writing MMD registers | |
1080 | * @phydev: the phy_device struct | |
1081 | * @devad: The MMD to read from | |
1082 | * @regnum: register number to write | |
1083 | * @return: None | |
1084 | */ | |
1085 | void phy_mmd_start_indirect(struct phy_device *phydev, int devad, int regnum) | |
1086 | { | |
1087 | /* Write the desired MMD Devad */ | |
1088 | phy_write(phydev, MDIO_DEVAD_NONE, MII_MMD_CTRL, devad); | |
1089 | ||
1090 | /* Write the desired MMD register address */ | |
1091 | phy_write(phydev, MDIO_DEVAD_NONE, MII_MMD_DATA, regnum); | |
1092 | ||
1093 | /* Select the Function : DATA with no post increment */ | |
1094 | phy_write(phydev, MDIO_DEVAD_NONE, MII_MMD_CTRL, | |
1095 | (devad | MII_MMD_CTRL_NOINCR)); | |
1096 | } | |
1097 | ||
1098 | /** | |
1099 | * phy_read_mmd - Convenience function for reading a register | |
1100 | * from an MMD on a given PHY. | |
1101 | * @phydev: The phy_device struct | |
1102 | * @devad: The MMD to read from | |
1103 | * @regnum: The register on the MMD to read | |
1104 | * @return: Value for success or negative errno for failure | |
1105 | */ | |
1106 | int phy_read_mmd(struct phy_device *phydev, int devad, int regnum) | |
1107 | { | |
1108 | struct phy_driver *drv = phydev->drv; | |
1109 | ||
1110 | if (regnum > (u16)~0 || devad > 32) | |
1111 | return -EINVAL; | |
1112 | ||
1113 | /* driver-specific access */ | |
1114 | if (drv->read_mmd) | |
1115 | return drv->read_mmd(phydev, devad, regnum); | |
1116 | ||
1117 | /* direct C45 / C22 access */ | |
1118 | if ((drv->features & PHY_10G_FEATURES) == PHY_10G_FEATURES || | |
1119 | devad == MDIO_DEVAD_NONE || !devad) | |
1120 | return phy_read(phydev, devad, regnum); | |
1121 | ||
1122 | /* indirect C22 access */ | |
1123 | phy_mmd_start_indirect(phydev, devad, regnum); | |
1124 | ||
1125 | /* Read the content of the MMD's selected register */ | |
1126 | return phy_read(phydev, MDIO_DEVAD_NONE, MII_MMD_DATA); | |
1127 | } | |
1128 | ||
1129 | /** | |
1130 | * phy_write_mmd - Convenience function for writing a register | |
1131 | * on an MMD on a given PHY. | |
1132 | * @phydev: The phy_device struct | |
1133 | * @devad: The MMD to read from | |
1134 | * @regnum: The register on the MMD to read | |
1135 | * @val: value to write to @regnum | |
1136 | * @return: 0 for success or negative errno for failure | |
1137 | */ | |
1138 | int phy_write_mmd(struct phy_device *phydev, int devad, int regnum, u16 val) | |
1139 | { | |
1140 | struct phy_driver *drv = phydev->drv; | |
1141 | ||
1142 | if (regnum > (u16)~0 || devad > 32) | |
1143 | return -EINVAL; | |
1144 | ||
1145 | /* driver-specific access */ | |
1146 | if (drv->write_mmd) | |
1147 | return drv->write_mmd(phydev, devad, regnum, val); | |
1148 | ||
1149 | /* direct C45 / C22 access */ | |
1150 | if ((drv->features & PHY_10G_FEATURES) == PHY_10G_FEATURES || | |
1151 | devad == MDIO_DEVAD_NONE || !devad) | |
1152 | return phy_write(phydev, devad, regnum, val); | |
1153 | ||
1154 | /* indirect C22 access */ | |
1155 | phy_mmd_start_indirect(phydev, devad, regnum); | |
1156 | ||
1157 | /* Write the data into MMD's selected register */ | |
1158 | return phy_write(phydev, MDIO_DEVAD_NONE, MII_MMD_DATA, val); | |
1159 | } | |
1160 | ||
1161 | /** | |
1162 | * phy_set_bits_mmd - Convenience function for setting bits in a register | |
1163 | * on MMD | |
1164 | * @phydev: the phy_device struct | |
1165 | * @devad: the MMD containing register to modify | |
1166 | * @regnum: register number to modify | |
1167 | * @val: bits to set | |
1168 | * @return: 0 for success or negative errno for failure | |
1169 | */ | |
1170 | int phy_set_bits_mmd(struct phy_device *phydev, int devad, u32 regnum, u16 val) | |
1171 | { | |
1172 | int value, ret; | |
1173 | ||
1174 | value = phy_read_mmd(phydev, devad, regnum); | |
1175 | if (value < 0) | |
1176 | return value; | |
1177 | ||
1178 | value |= val; | |
1179 | ||
1180 | ret = phy_write_mmd(phydev, devad, regnum, value); | |
1181 | if (ret < 0) | |
1182 | return ret; | |
1183 | ||
1184 | return 0; | |
1185 | } | |
1186 | ||
1187 | /** | |
1188 | * phy_clear_bits_mmd - Convenience function for clearing bits in a register | |
1189 | * on MMD | |
1190 | * @phydev: the phy_device struct | |
1191 | * @devad: the MMD containing register to modify | |
1192 | * @regnum: register number to modify | |
1193 | * @val: bits to clear | |
1194 | * @return: 0 for success or negative errno for failure | |
1195 | */ | |
1196 | int phy_clear_bits_mmd(struct phy_device *phydev, int devad, u32 regnum, u16 val) | |
1197 | { | |
1198 | int value, ret; | |
1199 | ||
1200 | value = phy_read_mmd(phydev, devad, regnum); | |
1201 | if (value < 0) | |
1202 | return value; | |
1203 | ||
1204 | value &= ~val; | |
1205 | ||
1206 | ret = phy_write_mmd(phydev, devad, regnum, value); | |
1207 | if (ret < 0) | |
1208 | return ret; | |
1209 | ||
1210 | return 0; | |
1211 | } | |
09bd3d0b SMJ |
1212 | |
1213 | bool phy_interface_is_ncsi(void) | |
1214 | { | |
1215 | struct eth_pdata *pdata = dev_get_plat(eth_get_dev()); | |
1216 | ||
1217 | return pdata->phy_interface == PHY_INTERFACE_MODE_NCSI; | |
1218 | } |