Select one of the symbols to view example projects that use it.
 
Outline
#include <string.h>
#include <stdlib.h>
#include <sys/cdefs.h>
#include "esp_log.h"
#include "esp_check.h"
#include "esp_eth.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "driver/gpio.h"
#include "esp_rom_gpio.h"
#include "esp_rom_sys.h"
#include "esp_eth_phy_802_3.h"
#define PHY_RESET_ASSERTION_TIME_US
TAG
set_mediator(esp_eth_phy_t *, esp_eth_mediator_t *)
reset(esp_eth_phy_t *)
reset_hw(esp_eth_phy_t *)
autonego_ctrl(esp_eth_phy_t *, eth_phy_autoneg_cmd_t, bool *)
pwrctl(esp_eth_phy_t *, bool)
set_addr(esp_eth_phy_t *, uint32_t)
get_addr(esp_eth_phy_t *, uint32_t *)
advertise_pause_ability(esp_eth_phy_t *, uint32_t)
loopback(esp_eth_phy_t *, bool)
set_speed(esp_eth_phy_t *, eth_speed_t)
set_duplex(esp_eth_phy_t *, eth_duplex_t)
set_link(esp_eth_phy_t *, eth_link_t)
get_link(esp_eth_phy_t *)
init(esp_eth_phy_t *)
deinit(esp_eth_phy_t *)
del(esp_eth_phy_t *)
esp_eth_phy_802_3_set_mediator(phy_802_3_t *, esp_eth_mediator_t *)
esp_eth_phy_802_3_reset(phy_802_3_t *)
esp_eth_phy_802_3_autonego_ctrl(phy_802_3_t *, eth_phy_autoneg_cmd_t, bool *)
esp_eth_phy_802_3_updt_link_dup_spd(phy_802_3_t *)
esp_eth_phy_802_3_pwrctl(phy_802_3_t *, bool)
esp_eth_phy_802_3_set_addr(phy_802_3_t *, uint32_t)
esp_eth_phy_802_3_get_addr(phy_802_3_t *, uint32_t *)
esp_eth_phy_802_3_advertise_pause_ability(phy_802_3_t *, uint32_t)
esp_eth_phy_802_3_loopback(phy_802_3_t *, bool)
esp_eth_phy_802_3_set_speed(phy_802_3_t *, eth_speed_t)
esp_eth_phy_802_3_set_duplex(phy_802_3_t *, eth_duplex_t)
esp_eth_phy_802_3_set_link(phy_802_3_t *, eth_link_t)
esp_eth_phy_802_3_init(phy_802_3_t *)
esp_eth_phy_802_3_deinit(phy_802_3_t *)
esp_eth_phy_802_3_del(phy_802_3_t *)
esp_eth_phy_802_3_reset_hw(phy_802_3_t *, uint32_t)
esp_eth_phy_802_3_reset_hw_internal(phy_802_3_t *)
esp_eth_phy_802_3_detect_phy_addr(esp_eth_mediator_t *, int *)
esp_eth_phy_802_3_basic_phy_init(phy_802_3_t *)
esp_eth_phy_802_3_basic_phy_deinit(phy_802_3_t *)
esp_eth_phy_802_3_read_oui(phy_802_3_t *, uint32_t *)
esp_eth_phy_802_3_read_manufac_info(phy_802_3_t *, uint8_t *, uint8_t *)
esp_eth_phy_802_3_get_mmd_addr(phy_802_3_t *, uint8_t, uint16_t *)
esp_eth_phy_802_3_set_mmd_addr(phy_802_3_t *, uint8_t, uint16_t)
esp_eth_phy_802_3_read_mmd_data(phy_802_3_t *, uint8_t, esp_eth_phy_802_3_mmd_func_t, uint32_t *)
esp_eth_phy_802_3_write_mmd_data(phy_802_3_t *, uint8_t, esp_eth_phy_802_3_mmd_func_t, uint32_t)
esp_eth_phy_802_3_read_mmd_register(phy_802_3_t *, uint8_t, uint16_t, uint32_t *)
esp_eth_phy_802_3_write_mmd_register(phy_802_3_t *, uint8_t, uint16_t, uint32_t)
esp_eth_phy_802_3_obj_config_init(phy_802_3_t *, const eth_phy_config_t *)
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/esp_eth/src/phy/esp_eth_phy_802_3.c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2022-2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #include <string.h> #include <stdlib.h> #include <sys/cdefs.h> #include "esp_log.h" #include "esp_check.h" #include "esp_eth.h" #include "freertos/FreeRTOS.h" #include "freertos/task.h" #include "driver/gpio.h" #include "esp_rom_gpio.h" #include "esp_rom_sys.h" #include "esp_eth_phy_802_3.h"12 includes // Default reset assertion time is selected to be 100us as it is most commonly used value among ESP-IDF supported PHY chips. #define PHY_RESET_ASSERTION_TIME_US 100 static const char *TAG = "eth_phy_802_3"; // TODO: IDF-11362 (should be renamed to esp_eth_phy_802_3_reset_hw with the next major release) static esp_err_t esp_eth_phy_802_3_reset_hw_internal(phy_802_3_t *phy_802_3); static esp_err_t set_mediator(esp_eth_phy_t *phy, esp_eth_mediator_t *eth) { phy_802_3_t *phy_802_3 = esp_eth_phy_into_phy_802_3(phy); return esp_eth_phy_802_3_set_mediator(phy_802_3, eth); }{ ... } static esp_err_t reset(esp_eth_phy_t *phy) { phy_802_3_t *phy_802_3 = esp_eth_phy_into_phy_802_3(phy); return esp_eth_phy_802_3_reset(phy_802_3); }{ ... } static esp_err_t reset_hw(esp_eth_phy_t *phy) { phy_802_3_t *phy_802_3 = esp_eth_phy_into_phy_802_3(phy); return esp_eth_phy_802_3_reset_hw_internal(phy_802_3); }{ ... } static esp_err_t autonego_ctrl(esp_eth_phy_t *phy, eth_phy_autoneg_cmd_t cmd, bool *autonego_en_stat) { phy_802_3_t *phy_802_3 = esp_eth_phy_into_phy_802_3(phy); return esp_eth_phy_802_3_autonego_ctrl(phy_802_3, cmd, autonego_en_stat); }{ ... } static esp_err_t pwrctl(esp_eth_phy_t *phy, bool enable) { phy_802_3_t *phy_802_3 = esp_eth_phy_into_phy_802_3(phy); return esp_eth_phy_802_3_pwrctl(phy_802_3, enable); }{ ... } static esp_err_t set_addr(esp_eth_phy_t *phy, uint32_t addr) { phy_802_3_t *phy_802_3 = esp_eth_phy_into_phy_802_3(phy); return esp_eth_phy_802_3_set_addr(phy_802_3, addr); }{ ... } static esp_err_t get_addr(esp_eth_phy_t *phy, uint32_t *addr) { phy_802_3_t *phy_802_3 = esp_eth_phy_into_phy_802_3(phy); return esp_eth_phy_802_3_get_addr(phy_802_3, addr); }{ ... } static esp_err_t advertise_pause_ability(esp_eth_phy_t *phy, uint32_t ability) { phy_802_3_t *phy_802_3 = esp_eth_phy_into_phy_802_3(phy); return esp_eth_phy_802_3_advertise_pause_ability(phy_802_3, ability); }{ ... } static esp_err_t loopback(esp_eth_phy_t *phy, bool enable) { phy_802_3_t *phy_802_3 = esp_eth_phy_into_phy_802_3(phy); return esp_eth_phy_802_3_loopback(phy_802_3, enable); }{ ... } static esp_err_t set_speed(esp_eth_phy_t *phy, eth_speed_t speed) { phy_802_3_t *phy_802_3 = esp_eth_phy_into_phy_802_3(phy); return esp_eth_phy_802_3_set_speed(phy_802_3, speed); }{ ... } static esp_err_t set_duplex(esp_eth_phy_t *phy, eth_duplex_t duplex) { phy_802_3_t *phy_802_3 = esp_eth_phy_into_phy_802_3(phy); return esp_eth_phy_802_3_set_duplex(phy_802_3, duplex); }{ ... } static esp_err_t set_link(esp_eth_phy_t *phy, eth_link_t link) { phy_802_3_t *phy_802_3 = esp_eth_phy_into_phy_802_3(phy); return esp_eth_phy_802_3_set_link(phy_802_3, link); }{ ... } static esp_err_t get_link(esp_eth_phy_t *phy) { phy_802_3_t *phy_802_3 = esp_eth_phy_into_phy_802_3(phy); /* Update information about link, speed, duplex */ return esp_eth_phy_802_3_updt_link_dup_spd(phy_802_3); }{ ... } static esp_err_t init(esp_eth_phy_t *phy) { phy_802_3_t *phy_802_3 = esp_eth_phy_into_phy_802_3(phy); return esp_eth_phy_802_3_init(phy_802_3); }{ ... } static esp_err_t deinit(esp_eth_phy_t *phy) { phy_802_3_t *phy_802_3 = esp_eth_phy_into_phy_802_3(phy); return esp_eth_phy_802_3_deinit(phy_802_3); }{ ... } static esp_err_t del(esp_eth_phy_t *phy) { free(phy); return ESP_OK; }{ ... } esp_err_t esp_eth_phy_802_3_set_mediator(phy_802_3_t *phy_802_3, esp_eth_mediator_t *eth) { esp_err_t ret = ESP_OK; ESP_GOTO_ON_FALSE(eth, ESP_ERR_INVALID_ARG, err, TAG, "mediator can't be null"); phy_802_3->eth = eth; return ESP_OK; err: return ret; }{ ... } esp_err_t esp_eth_phy_802_3_reset(phy_802_3_t *phy_802_3) { esp_err_t ret = ESP_OK; phy_802_3->link_status = ETH_LINK_DOWN; esp_eth_mediator_t *eth = phy_802_3->eth; bmcr_reg_t bmcr = {.reset = 1}; ESP_GOTO_ON_ERROR(eth->phy_reg_write(eth, phy_802_3->addr, ETH_PHY_BMCR_REG_ADDR, bmcr.val), err, TAG, "write BMCR failed"); /* wait for reset complete */ uint32_t to = 0; for (to = 0; to < phy_802_3->reset_timeout_ms / 10; to++) { vTaskDelay(pdMS_TO_TICKS(10)); ESP_GOTO_ON_ERROR(eth->phy_reg_read(eth, phy_802_3->addr, ETH_PHY_BMCR_REG_ADDR, &(bmcr.val)), err, TAG, "read BMCR failed"); if (!bmcr.reset) { break; }{...} }{...} ESP_GOTO_ON_FALSE(to < phy_802_3->reset_timeout_ms / 10, ESP_FAIL, err, TAG, "reset timeout"); return ESP_OK; err: return ret; }{ ... } esp_err_t esp_eth_phy_802_3_autonego_ctrl(phy_802_3_t *phy_802_3, eth_phy_autoneg_cmd_t cmd, bool *autonego_en_stat) { esp_err_t ret = ESP_OK; esp_eth_mediator_t *eth = phy_802_3->eth; bmcr_reg_t bmcr; ESP_GOTO_ON_ERROR(eth->phy_reg_read(eth, phy_802_3->addr, ETH_PHY_BMCR_REG_ADDR, &(bmcr.val)), err, TAG, "read BMCR failed"); switch (cmd) { case ESP_ETH_PHY_AUTONEGO_RESTART: ESP_GOTO_ON_FALSE(bmcr.en_auto_nego, ESP_ERR_INVALID_STATE, err, TAG, "auto negotiation is disabled"); /* in case any link status has changed, let's assume we're in link down status */ phy_802_3->link_status = ETH_LINK_DOWN; bmcr.restart_auto_nego = 1; /* Restart Auto Negotiation */ ESP_GOTO_ON_ERROR(eth->phy_reg_write(eth, phy_802_3->addr, ETH_PHY_BMCR_REG_ADDR, bmcr.val), err, TAG, "write BMCR failed"); /* Wait for auto negotiation complete */ bmsr_reg_t bmsr; uint32_t to = 0; for (to = 0; to < phy_802_3->autonego_timeout_ms / 100; to++) { vTaskDelay(pdMS_TO_TICKS(100)); ESP_GOTO_ON_ERROR(eth->phy_reg_read(eth, phy_802_3->addr, ETH_PHY_BMSR_REG_ADDR, &(bmsr.val)), err, TAG, "read BMSR failed"); if (bmsr.auto_nego_complete) { break; }{...} }{...} if ((to >= phy_802_3->autonego_timeout_ms / 100) && (phy_802_3->link_status == ETH_LINK_UP)) { ESP_LOGW(TAG, "auto negotiation timeout"); }{...} break;... case ESP_ETH_PHY_AUTONEGO_DIS: if (bmcr.en_auto_nego == 1) { bmcr.en_auto_nego = 0; /* Disable Auto Negotiation */ ESP_GOTO_ON_ERROR(eth->phy_reg_write(eth, phy_802_3->addr, ETH_PHY_BMCR_REG_ADDR, bmcr.val), err, TAG, "write BMCR failed"); /* read configuration back */ ESP_GOTO_ON_ERROR(eth->phy_reg_read(eth, phy_802_3->addr, ETH_PHY_BMCR_REG_ADDR, &(bmcr.val)), err, TAG, "read BMCR failed"); ESP_GOTO_ON_FALSE(bmcr.en_auto_nego == 0, ESP_FAIL, err, TAG, "disable auto-negotiation failed"); }{...} break;... case ESP_ETH_PHY_AUTONEGO_EN: if (bmcr.en_auto_nego == 0) { bmcr.en_auto_nego = 1; /* Enable Auto Negotiation */ ESP_GOTO_ON_ERROR(eth->phy_reg_write(eth, phy_802_3->addr, ETH_PHY_BMCR_REG_ADDR, bmcr.val), err, TAG, "write BMCR failed"); /* read configuration back */ ESP_GOTO_ON_ERROR(eth->phy_reg_read(eth, phy_802_3->addr, ETH_PHY_BMCR_REG_ADDR, &(bmcr.val)), err, TAG, "read BMCR failed"); ESP_GOTO_ON_FALSE(bmcr.en_auto_nego == 1, ESP_FAIL, err, TAG, "enable auto-negotiation failed"); }{...} break;... case ESP_ETH_PHY_AUTONEGO_G_STAT: /* do nothing autonego_en_stat is set at the function end */ break;... default: return ESP_ERR_INVALID_ARG;... }{...} *autonego_en_stat = bmcr.en_auto_nego; return ESP_OK; err: return ret; }{ ... } esp_err_t esp_eth_phy_802_3_updt_link_dup_spd(phy_802_3_t *phy_802_3) { esp_err_t ret = ESP_OK; esp_eth_mediator_t *eth = phy_802_3->eth; uint32_t addr = phy_802_3->addr; eth_speed_t speed = ETH_SPEED_10M; eth_duplex_t duplex = ETH_DUPLEX_HALF; uint32_t peer_pause_ability = false; bmcr_reg_t bmcr; bmsr_reg_t bmsr; anar_reg_t anar; anlpar_reg_t anlpar; ESP_GOTO_ON_ERROR(eth->phy_reg_read(eth, addr, ETH_PHY_BMSR_REG_ADDR, &(bmsr.val)), err, TAG, "read BMSR failed"); eth_link_t link = bmsr.link_status ? ETH_LINK_UP : ETH_LINK_DOWN; /* check if link status changed */ if (phy_802_3->link_status != link) { /* when link up, read negotiation result */ if (link == ETH_LINK_UP) { ESP_GOTO_ON_ERROR(eth->phy_reg_read(eth, addr, ETH_PHY_BMCR_REG_ADDR, &(bmcr.val)), err, TAG, "read BMCR failed"); ESP_GOTO_ON_ERROR(eth->phy_reg_read(eth, addr, ETH_PHY_ANAR_REG_ADDR, &(anar.val)), err, TAG, "read ANAR failed"); ESP_GOTO_ON_ERROR(eth->phy_reg_read(eth, addr, ETH_PHY_ANLPAR_REG_ADDR, &(anlpar.val)), err, TAG, "read ANLPAR failed"); if (bmcr.en_auto_nego) { if (anar.base100_tx_fd && anlpar.base100_tx_fd) { speed = ETH_SPEED_100M; duplex = ETH_DUPLEX_FULL; }{...} else if (anar.base100_tx && anlpar.base100_tx) { speed = ETH_SPEED_100M; duplex = ETH_DUPLEX_HALF; }{...} else if (anar.base10_t_fd && anlpar.base10_t_fd) { speed = ETH_SPEED_10M; duplex = ETH_DUPLEX_FULL; }{...} else if (anar.base10_t && anlpar.base10_t) { speed = ETH_SPEED_10M; duplex = ETH_DUPLEX_HALF; }{...} else { ESP_GOTO_ON_FALSE(false, ESP_FAIL, err, TAG, "invalid auto-nego speed/duplex advertising"); }{...} }{...} else { speed = bmcr.speed_select ? ETH_SPEED_100M : ETH_SPEED_10M; duplex = bmcr.duplex_mode ? ETH_DUPLEX_FULL : ETH_DUPLEX_HALF; }{...} ESP_GOTO_ON_ERROR(eth->on_state_changed(eth, ETH_STATE_SPEED, (void *)speed), err, TAG, "change speed failed"); ESP_GOTO_ON_ERROR(eth->on_state_changed(eth, ETH_STATE_DUPLEX, (void *)duplex), err, TAG, "change duplex failed"); /* if we're in duplex mode, and peer has the flow control ability */ if (duplex == ETH_DUPLEX_FULL && anlpar.symmetric_pause) { peer_pause_ability = 1; }{...} else { peer_pause_ability = 0; }{...} ESP_GOTO_ON_ERROR(eth->on_state_changed(eth, ETH_STATE_PAUSE, (void *)peer_pause_ability), err, TAG, "change pause ability failed"); }{...} ESP_GOTO_ON_ERROR(eth->on_state_changed(eth, ETH_STATE_LINK, (void *)link), err, TAG, "change link failed"); phy_802_3->link_status = link; }{...} return ESP_OK; err: return ret; }{ ... } esp_err_t esp_eth_phy_802_3_pwrctl(phy_802_3_t *phy_802_3, bool enable) { esp_err_t ret = ESP_OK; esp_eth_mediator_t *eth = phy_802_3->eth; bmcr_reg_t bmcr; ESP_GOTO_ON_ERROR(eth->phy_reg_read(eth, phy_802_3->addr, ETH_PHY_BMCR_REG_ADDR, &(bmcr.val)), err, TAG, "read BMCR failed"); if (!enable) { /* Enable IEEE Power Down Mode */ bmcr.power_down = 1; }{...} else { /* Disable IEEE Power Down Mode */ bmcr.power_down = 0; }{...} ESP_GOTO_ON_ERROR(eth->phy_reg_write(eth, phy_802_3->addr, ETH_PHY_BMCR_REG_ADDR, bmcr.val), err, TAG, "write BMCR failed"); if (!enable) { ESP_GOTO_ON_ERROR(eth->phy_reg_read(eth, phy_802_3->addr, ETH_PHY_BMCR_REG_ADDR, &(bmcr.val)), err, TAG, "read BMCR failed"); ESP_GOTO_ON_FALSE(bmcr.power_down == 1, ESP_FAIL, err, TAG, "power down failed"); }{...} else { /* wait for power up complete */ uint32_t to = 0; for (to = 0; to < phy_802_3->reset_timeout_ms / 10; to++) { vTaskDelay(pdMS_TO_TICKS(10)); ESP_GOTO_ON_ERROR(eth->phy_reg_read(eth, phy_802_3->addr, ETH_PHY_BMCR_REG_ADDR, &(bmcr.val)), err, TAG, "read BMCR failed"); if (bmcr.power_down == 0) { break; }{...} }{...} ESP_GOTO_ON_FALSE(to < phy_802_3->reset_timeout_ms / 10, ESP_FAIL, err, TAG, "power up timeout"); }{...} return ESP_OK; err: return ret; }{ ... } esp_err_t esp_eth_phy_802_3_set_addr(phy_802_3_t *phy_802_3, uint32_t addr) { phy_802_3->addr = addr; return ESP_OK; }{ ... } esp_err_t esp_eth_phy_802_3_get_addr(phy_802_3_t *phy_802_3, uint32_t *addr) { esp_err_t ret = ESP_OK; ESP_GOTO_ON_FALSE(addr, ESP_ERR_INVALID_ARG, err, TAG, "addr can't be null"); *addr = phy_802_3->addr; return ESP_OK; err: return ret; }{ ... } esp_err_t esp_eth_phy_802_3_advertise_pause_ability(phy_802_3_t *phy_802_3, uint32_t ability) { esp_err_t ret = ESP_OK; esp_eth_mediator_t *eth = phy_802_3->eth; /* Set PAUSE function ability */ anar_reg_t anar; ESP_GOTO_ON_ERROR(eth->phy_reg_read(eth, phy_802_3->addr, ETH_PHY_ANAR_REG_ADDR, &(anar.val)), err, TAG, "read ANAR failed"); if (ability) { anar.asymmetric_pause = 1; anar.symmetric_pause = 1; }{...} else { anar.asymmetric_pause = 0; anar.symmetric_pause = 0; }{...} ESP_GOTO_ON_ERROR(eth->phy_reg_write(eth, phy_802_3->addr, ETH_PHY_ANAR_REG_ADDR, anar.val), err, TAG, "write ANAR failed"); return ESP_OK; err: return ret; }{ ... } esp_err_t esp_eth_phy_802_3_loopback(phy_802_3_t *phy_802_3, bool enable) { esp_err_t ret = ESP_OK; esp_eth_mediator_t *eth = phy_802_3->eth; /* Set Loopback function */ bmcr_reg_t bmcr; ESP_GOTO_ON_ERROR(eth->phy_reg_read(eth, phy_802_3->addr, ETH_PHY_BMCR_REG_ADDR, &(bmcr.val)), err, TAG, "read BMCR failed"); if (enable) { bmcr.en_loopback = 1; }{...} else { bmcr.en_loopback = 0; }{...} ESP_GOTO_ON_ERROR(eth->phy_reg_write(eth, phy_802_3->addr, ETH_PHY_BMCR_REG_ADDR, bmcr.val), err, TAG, "write BMCR failed"); return ESP_OK; err: return ret; }{ ... } esp_err_t esp_eth_phy_802_3_set_speed(phy_802_3_t *phy_802_3, eth_speed_t speed) { esp_err_t ret = ESP_OK; esp_eth_mediator_t *eth = phy_802_3->eth; /* Since the link is going to be reconfigured, consider it down to be status updated once the driver re-started */ phy_802_3->link_status = ETH_LINK_DOWN; /* Set speed */ bmcr_reg_t bmcr; ESP_GOTO_ON_ERROR(eth->phy_reg_read(eth, phy_802_3->addr, ETH_PHY_BMCR_REG_ADDR, &(bmcr.val)), err, TAG, "read BMCR failed"); bmcr.speed_select = speed == ETH_SPEED_100M ? 1 : 0; ESP_GOTO_ON_ERROR(eth->phy_reg_write(eth, phy_802_3->addr, ETH_PHY_BMCR_REG_ADDR, bmcr.val), err, TAG, "write BMCR failed"); return ESP_OK; err: return ret; }{ ... } esp_err_t esp_eth_phy_802_3_set_duplex(phy_802_3_t *phy_802_3, eth_duplex_t duplex) { esp_err_t ret = ESP_OK; esp_eth_mediator_t *eth = phy_802_3->eth; /* Since the link is going to be reconfigured, consider it down to be status updated once the driver re-started */ phy_802_3->link_status = ETH_LINK_DOWN; /* Set duplex mode */ bmcr_reg_t bmcr; ESP_GOTO_ON_ERROR(eth->phy_reg_read(eth, phy_802_3->addr, ETH_PHY_BMCR_REG_ADDR, &(bmcr.val)), err, TAG, "read BMCR failed"); if (bmcr.en_loopback) { ESP_GOTO_ON_FALSE(duplex == ETH_DUPLEX_FULL, ESP_ERR_INVALID_STATE, err, TAG, "Duplex mode must be FULL for loopback operation"); }{...} bmcr.duplex_mode = duplex; ESP_GOTO_ON_ERROR(eth->phy_reg_write(eth, phy_802_3->addr, ETH_PHY_BMCR_REG_ADDR, bmcr.val), err, TAG, "write BMCR failed"); return ESP_OK; err: return ret; }{ ... } esp_err_t esp_eth_phy_802_3_set_link(phy_802_3_t *phy_802_3, eth_link_t link) { esp_err_t ret = ESP_OK; esp_eth_mediator_t *eth = phy_802_3->eth; if (phy_802_3->link_status != link) { phy_802_3->link_status = link; // link status changed, inmiedately report to upper layers ESP_GOTO_ON_ERROR(eth->on_state_changed(eth, ETH_STATE_LINK, (void *)phy_802_3->link_status), err, TAG, "change link failed"); }{...} err: return ret; }{ ... } esp_err_t esp_eth_phy_802_3_init(phy_802_3_t *phy_802_3) { return esp_eth_phy_802_3_basic_phy_init(phy_802_3); }{ ... } esp_err_t esp_eth_phy_802_3_deinit(phy_802_3_t *phy_802_3) { return esp_eth_phy_802_3_basic_phy_deinit(phy_802_3); }{ ... } esp_err_t esp_eth_phy_802_3_del(phy_802_3_t *phy_802_3) { free(phy_802_3); return ESP_OK; }{ ... } esp_err_t esp_eth_phy_802_3_reset_hw(phy_802_3_t *phy_802_3, uint32_t reset_assert_us) { if (phy_802_3->reset_gpio_num >= 0) { esp_rom_gpio_pad_select_gpio(phy_802_3->reset_gpio_num); gpio_set_direction(phy_802_3->reset_gpio_num, GPIO_MODE_OUTPUT); gpio_set_level(phy_802_3->reset_gpio_num, 0); if (reset_assert_us < 10000) { esp_rom_delay_us(reset_assert_us); }{...} else { vTaskDelay(pdMS_TO_TICKS(reset_assert_us/1000)); }{...} gpio_set_level(phy_802_3->reset_gpio_num, 1); return ESP_OK; }{...} return ESP_ERR_NOT_ALLOWED; }{ ... } /** * @brief Hardware reset with internal timing configuration defined during initialization * * @param phy_802_3 IEEE 802.3 PHY object infostructure * @return * - ESP_OK: reset Ethernet PHY successfully * - ESP_ERR_NOT_ALLOWED: reset GPIO not defined *//* ... */ static esp_err_t esp_eth_phy_802_3_reset_hw_internal(phy_802_3_t *phy_802_3) { esp_err_t ret = ESP_OK; if ((ret = esp_eth_phy_802_3_reset_hw(phy_802_3, phy_802_3->hw_reset_assert_time_us)) == ESP_OK) { if (phy_802_3->post_hw_reset_delay_ms > 0) { vTaskDelay(pdMS_TO_TICKS(phy_802_3->post_hw_reset_delay_ms)); }{...} }{...} return ret; }{ ... } esp_err_t esp_eth_phy_802_3_detect_phy_addr(esp_eth_mediator_t *eth, int *detected_addr) { if (!eth || !detected_addr) { ESP_LOGE(TAG, "eth and detected_addr can't be null"); return ESP_ERR_INVALID_ARG; }{...} int addr_try = 0; uint32_t reg_value = 0; for (int i = 0; i < 3; i++){ for (addr_try = 0; addr_try < 32; addr_try++) { eth->phy_reg_read(eth, addr_try, ETH_PHY_IDR1_REG_ADDR, &reg_value); if (reg_value != 0xFFFF && reg_value != 0x00) { *detected_addr = addr_try; break; }{...} }{...} if (addr_try < 32) { ESP_LOGD(TAG, "Found PHY address: %d", addr_try); return ESP_OK; }{...} }{...} ESP_LOGE(TAG, "No PHY device detected"); return ESP_ERR_NOT_FOUND; }{ ... } esp_err_t esp_eth_phy_802_3_basic_phy_init(phy_802_3_t *phy_802_3) { esp_err_t ret = ESP_OK; // Detect PHY address if (phy_802_3->addr == ESP_ETH_PHY_ADDR_AUTO) { ESP_GOTO_ON_ERROR(esp_eth_phy_802_3_detect_phy_addr(phy_802_3->eth, &phy_802_3->addr), err, TAG, "Detect PHY address failed"); }{...} /* Power on Ethernet PHY */ ESP_GOTO_ON_ERROR(esp_eth_phy_802_3_pwrctl(phy_802_3, true), err, TAG, "power control failed"); /* Reset Ethernet PHY */ ESP_GOTO_ON_ERROR(esp_eth_phy_802_3_reset(phy_802_3), err, TAG, "reset failed"); return ESP_OK; err: return ret; }{ ... } esp_err_t esp_eth_phy_802_3_basic_phy_deinit(phy_802_3_t *phy_802_3) { esp_err_t ret = ESP_OK; /* Power off Ethernet PHY */ ESP_GOTO_ON_ERROR(esp_eth_phy_802_3_pwrctl(phy_802_3, false), err, TAG, "power control failed"); return ESP_OK; err: return ret; }{ ... } esp_err_t esp_eth_phy_802_3_read_oui(phy_802_3_t *phy_802_3, uint32_t *oui) { esp_err_t ret = ESP_OK; esp_eth_mediator_t *eth = phy_802_3->eth; phyidr1_reg_t id1; phyidr2_reg_t id2; ESP_GOTO_ON_FALSE(oui != NULL, ESP_ERR_INVALID_ARG, err, TAG, "oui can't be null"); ESP_GOTO_ON_ERROR(eth->phy_reg_read(eth, phy_802_3->addr, ETH_PHY_IDR1_REG_ADDR, &(id1.val)), err, TAG, "read ID1 failed"); ESP_GOTO_ON_ERROR(eth->phy_reg_read(eth, phy_802_3->addr, ETH_PHY_IDR2_REG_ADDR, &(id2.val)), err, TAG, "read ID2 failed"); *oui = (id1.oui_msb << 6) | id2.oui_lsb; return ESP_OK; err: return ret; }{ ... } esp_err_t esp_eth_phy_802_3_read_manufac_info(phy_802_3_t *phy_802_3, uint8_t *model, uint8_t *rev) { esp_err_t ret = ESP_OK; esp_eth_mediator_t *eth = phy_802_3->eth; phyidr2_reg_t id2; ESP_GOTO_ON_ERROR(eth->phy_reg_read(eth, phy_802_3->addr, ETH_PHY_IDR2_REG_ADDR, &(id2.val)), err, TAG, "read ID2 failed"); if (model != NULL) { *model = id2.vendor_model; }{...} if (rev != NULL) { *rev = id2.model_revision; }{...} return ESP_OK; err: return ret; }{ ... } esp_err_t esp_eth_phy_802_3_get_mmd_addr(phy_802_3_t *phy_802_3, uint8_t devaddr, uint16_t *mmd_addr) { esp_err_t ret = ESP_OK; esp_eth_mediator_t *eth = phy_802_3->eth; ESP_GOTO_ON_FALSE(devaddr <= 31, ESP_ERR_INVALID_ARG, err, TAG, "MMD device address can not be greater then 31 (0x1F)"); mmdctrl_reg_t mmdctrl; mmdad_reg_t mmdad; mmdctrl.function = MMD_FUNC_ADDRESS; mmdctrl.devaddr = devaddr; ESP_GOTO_ON_ERROR(eth->phy_reg_write(eth, phy_802_3->addr, ETH_PHY_MMDCTRL_REG_ADDR, mmdctrl.val), err, TAG, "write MMDCTRL failed"); ESP_GOTO_ON_ERROR(eth->phy_reg_read(eth, phy_802_3->addr, ETH_PHY_MMDAD_REG_ADDR, &mmdad.val), err, TAG, "read MMDAD failed"); *mmd_addr = mmdad.adrdata; return ESP_OK; err: return ret; }{ ... } esp_err_t esp_eth_phy_802_3_set_mmd_addr(phy_802_3_t *phy_802_3, uint8_t devaddr, uint16_t mmd_addr) { esp_err_t ret = ESP_OK; esp_eth_mediator_t *eth = phy_802_3->eth; ESP_GOTO_ON_FALSE(devaddr <= 31, ESP_ERR_INVALID_ARG, err, TAG, "MMD device address can not be greater then 31 (0x1F)"); mmdctrl_reg_t mmdctrl; mmdad_reg_t mmdad; mmdctrl.function = MMD_FUNC_ADDRESS; mmdctrl.devaddr = devaddr; ESP_GOTO_ON_ERROR(eth->phy_reg_write(eth, phy_802_3->addr, ETH_PHY_MMDCTRL_REG_ADDR, mmdctrl.val), err, TAG, "write MMDCTRL failed"); mmdad.adrdata = mmd_addr; ESP_GOTO_ON_ERROR(eth->phy_reg_write(eth, phy_802_3->addr, ETH_PHY_MMDAD_REG_ADDR, mmdad.val), err, TAG, "write MMDAD failed"); return ESP_OK; err: return ret; }{ ... } esp_err_t esp_eth_phy_802_3_read_mmd_data(phy_802_3_t *phy_802_3, uint8_t devaddr, esp_eth_phy_802_3_mmd_func_t function, uint32_t *data) { esp_err_t ret = ESP_OK; esp_eth_mediator_t *eth = phy_802_3->eth; ESP_GOTO_ON_FALSE(devaddr <= 31, ESP_ERR_INVALID_ARG, err, TAG, "MMD device address can not be greater then 31 (0x1F)"); ESP_GOTO_ON_FALSE(function != MMD_FUNC_ADDRESS, ESP_ERR_INVALID_ARG, err, TAG, "Invalid MMD mode for accessing data"); mmdctrl_reg_t mmdctrl; mmdad_reg_t mmdad; mmdctrl.devaddr = devaddr; mmdctrl.function = function; ESP_GOTO_ON_ERROR(eth->phy_reg_write(eth, phy_802_3->addr, ETH_PHY_MMDCTRL_REG_ADDR, mmdctrl.val), err, TAG, "write MMDCTRL failed"); ESP_GOTO_ON_ERROR(eth->phy_reg_read(eth, phy_802_3->addr, ETH_PHY_MMDAD_REG_ADDR, &mmdad.val), err, TAG, "read MMDAD failed"); *data = mmdad.adrdata; return ESP_OK; err: return ret; }{ ... } esp_err_t esp_eth_phy_802_3_write_mmd_data(phy_802_3_t *phy_802_3, uint8_t devaddr, esp_eth_phy_802_3_mmd_func_t function, uint32_t data) { esp_err_t ret = ESP_OK; esp_eth_mediator_t *eth = phy_802_3->eth; ESP_GOTO_ON_FALSE(devaddr <= 31, ESP_ERR_INVALID_ARG, err, TAG, "MMD device address can not be greater then 31 (0x1F)"); ESP_GOTO_ON_FALSE(function != MMD_FUNC_ADDRESS, ESP_ERR_INVALID_ARG, err, TAG, "Invalid MMD function for accessing data"); mmdctrl_reg_t mmdctrl; mmdad_reg_t mmdad; mmdctrl.devaddr = devaddr; mmdctrl.function = function; ESP_GOTO_ON_ERROR(eth->phy_reg_write(eth, phy_802_3->addr, ETH_PHY_MMDCTRL_REG_ADDR, mmdctrl.val), err, TAG, "write MMDCTRL failed"); mmdad.adrdata = data; ESP_GOTO_ON_ERROR(eth->phy_reg_write(eth, phy_802_3->addr, ETH_PHY_MMDAD_REG_ADDR, mmdad.val), err, TAG, "read MMDAD failed"); return ESP_OK; err: return ret; }{ ... } esp_err_t esp_eth_phy_802_3_read_mmd_register(phy_802_3_t *phy_802_3, uint8_t devaddr, uint16_t mmd_addr, uint32_t *data){ esp_err_t ret = ESP_OK; ESP_GOTO_ON_ERROR(esp_eth_phy_802_3_set_mmd_addr(phy_802_3, devaddr, mmd_addr), err, TAG, "Set MMD address failed"); ESP_GOTO_ON_ERROR(esp_eth_phy_802_3_read_mmd_data(phy_802_3, devaddr, MMD_FUNC_DATA_NOINCR, data), err, TAG, "Read MMD data failed"); return ESP_OK; err: return ret; }{ ... } esp_err_t esp_eth_phy_802_3_write_mmd_register(phy_802_3_t *phy_802_3, uint8_t devaddr, uint16_t mmd_addr, uint32_t data){ esp_err_t ret = ESP_OK; ESP_GOTO_ON_ERROR(esp_eth_phy_802_3_set_mmd_addr(phy_802_3, devaddr, mmd_addr), err, TAG, "Set MMD address failed"); ESP_GOTO_ON_ERROR(esp_eth_phy_802_3_write_mmd_data(phy_802_3, devaddr, MMD_FUNC_DATA_NOINCR, data), err, TAG, "Write MMD data failed"); return ESP_OK; err: return ret; }{ ... } esp_err_t esp_eth_phy_802_3_obj_config_init(phy_802_3_t *phy_802_3, const eth_phy_config_t *config) { esp_err_t ret = ESP_OK; ESP_GOTO_ON_FALSE(config, ESP_ERR_INVALID_ARG, err, TAG, "can't set phy config to null"); phy_802_3->link_status = ETH_LINK_DOWN; phy_802_3->addr = config->phy_addr; phy_802_3->reset_timeout_ms = config->reset_timeout_ms; phy_802_3->reset_gpio_num = config->reset_gpio_num; phy_802_3->autonego_timeout_ms = config->autonego_timeout_ms; if (config->hw_reset_assert_time_us > 0) { phy_802_3->hw_reset_assert_time_us = config->hw_reset_assert_time_us; }{...} else { phy_802_3->hw_reset_assert_time_us = PHY_RESET_ASSERTION_TIME_US; }{...} if (config->post_hw_reset_delay_ms > 0) { phy_802_3->post_hw_reset_delay_ms = config->post_hw_reset_delay_ms; }{...} else { phy_802_3->post_hw_reset_delay_ms = ESP_ETH_NO_POST_HW_RESET_DELAY; }{...} phy_802_3->parent.reset = reset; phy_802_3->parent.reset_hw = reset_hw; phy_802_3->parent.init = init; phy_802_3->parent.deinit = deinit; phy_802_3->parent.set_mediator = set_mediator; phy_802_3->parent.autonego_ctrl = autonego_ctrl; phy_802_3->parent.pwrctl = pwrctl; phy_802_3->parent.get_addr = get_addr; phy_802_3->parent.set_addr = set_addr; phy_802_3->parent.advertise_pause_ability = advertise_pause_ability; phy_802_3->parent.loopback = loopback; phy_802_3->parent.set_speed = set_speed; phy_802_3->parent.set_duplex = set_duplex; phy_802_3->parent.del = del; phy_802_3->parent.set_link = set_link; phy_802_3->parent.get_link = get_link; phy_802_3->parent.custom_ioctl = NULL; err: return ret; }{ ... }
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.