atsame53j 0.14.2

Peripheral access API for ATSAME53J microcontrollers (generated using svd2rust)
Documentation
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
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
#[repr(C)]
#[doc = "Register block"]
pub struct RegisterBlock {
    ncr: Ncr,
    ncfgr: Ncfgr,
    nsr: Nsr,
    ur: Ur,
    dcfgr: Dcfgr,
    tsr: Tsr,
    rbqb: Rbqb,
    tbqb: Tbqb,
    rsr: Rsr,
    isr: Isr,
    ier: Ier,
    idr: Idr,
    imr: Imr,
    man: Man,
    rpq: Rpq,
    tpq: Tpq,
    tpsf: Tpsf,
    rpsf: Rpsf,
    rjfml: Rjfml,
    _reserved19: [u8; 0x34],
    hrb: Hrb,
    hrt: Hrt,
    sa: [Sa; 4],
    tidm: [Tidm; 4],
    wol: Wol,
    ipgs: Ipgs,
    svlan: Svlan,
    tpfcp: Tpfcp,
    samb1: Samb1,
    samt1: Samt1,
    _reserved29: [u8; 0x0c],
    nsc: Nsc,
    scl: Scl,
    sch: Sch,
    eftsh: Eftsh,
    efrsh: Efrsh,
    peftsh: Peftsh,
    pefrsh: Pefrsh,
    _reserved36: [u8; 0x08],
    otlo: Otlo,
    othi: Othi,
    ft: Ft,
    bcft: Bcft,
    mft: Mft,
    pft: Pft,
    bft64: Bft64,
    tbft127: Tbft127,
    tbft255: Tbft255,
    tbft511: Tbft511,
    tbft1023: Tbft1023,
    tbft1518: Tbft1518,
    gtbft1518: Gtbft1518,
    tur: Tur,
    scf: Scf,
    mcf: Mcf,
    ec: Ec,
    lc: Lc,
    dtf: Dtf,
    cse: Cse,
    orlo: Orlo,
    orhi: Orhi,
    fr: Fr,
    bcfr: Bcfr,
    mfr: Mfr,
    pfr: Pfr,
    bfr64: Bfr64,
    tbfr127: Tbfr127,
    tbfr255: Tbfr255,
    tbfr511: Tbfr511,
    tbfr1023: Tbfr1023,
    tbfr1518: Tbfr1518,
    tmxbfr: Tmxbfr,
    ufr: Ufr,
    ofr: Ofr,
    jr: Jr,
    fcse: Fcse,
    lffe: Lffe,
    rse: Rse,
    ae: Ae,
    rre: Rre,
    roe: Roe,
    ihce: Ihce,
    tce: Tce,
    uce: Uce,
    _reserved81: [u8; 0x08],
    tisubn: Tisubn,
    tsh: Tsh,
    _reserved83: [u8; 0x04],
    tsssl: Tsssl,
    tssn: Tssn,
    tsl: Tsl,
    tn: Tn,
    ta: Ta,
    ti: Ti,
    eftsl: Eftsl,
    eftn: Eftn,
    efrsl: Efrsl,
    efrn: Efrn,
    peftsl: Peftsl,
    peftn: Peftn,
    pefrsl: Pefrsl,
    pefrn: Pefrn,
    _reserved97: [u8; 0x70],
    rlpitr: Rlpitr,
    rlpiti: Rlpiti,
    tlpitr: Tlpitr,
    tlpiti: Tlpiti,
}
impl RegisterBlock {
    #[doc = "0x00 - Network Control Register"]
    #[inline(always)]
    pub const fn ncr(&self) -> &Ncr {
        &self.ncr
    }
    #[doc = "0x04 - Network Configuration Register"]
    #[inline(always)]
    pub const fn ncfgr(&self) -> &Ncfgr {
        &self.ncfgr
    }
    #[doc = "0x08 - Network Status Register"]
    #[inline(always)]
    pub const fn nsr(&self) -> &Nsr {
        &self.nsr
    }
    #[doc = "0x0c - User Register"]
    #[inline(always)]
    pub const fn ur(&self) -> &Ur {
        &self.ur
    }
    #[doc = "0x10 - DMA Configuration Register"]
    #[inline(always)]
    pub const fn dcfgr(&self) -> &Dcfgr {
        &self.dcfgr
    }
    #[doc = "0x14 - Transmit Status Register"]
    #[inline(always)]
    pub const fn tsr(&self) -> &Tsr {
        &self.tsr
    }
    #[doc = "0x18 - Receive Buffer Queue Base Address"]
    #[inline(always)]
    pub const fn rbqb(&self) -> &Rbqb {
        &self.rbqb
    }
    #[doc = "0x1c - Transmit Buffer Queue Base Address"]
    #[inline(always)]
    pub const fn tbqb(&self) -> &Tbqb {
        &self.tbqb
    }
    #[doc = "0x20 - Receive Status Register"]
    #[inline(always)]
    pub const fn rsr(&self) -> &Rsr {
        &self.rsr
    }
    #[doc = "0x24 - Interrupt Status Register"]
    #[inline(always)]
    pub const fn isr(&self) -> &Isr {
        &self.isr
    }
    #[doc = "0x28 - Interrupt Enable Register"]
    #[inline(always)]
    pub const fn ier(&self) -> &Ier {
        &self.ier
    }
    #[doc = "0x2c - Interrupt Disable Register"]
    #[inline(always)]
    pub const fn idr(&self) -> &Idr {
        &self.idr
    }
    #[doc = "0x30 - Interrupt Mask Register"]
    #[inline(always)]
    pub const fn imr(&self) -> &Imr {
        &self.imr
    }
    #[doc = "0x34 - PHY Maintenance Register"]
    #[inline(always)]
    pub const fn man(&self) -> &Man {
        &self.man
    }
    #[doc = "0x38 - Received Pause Quantum Register"]
    #[inline(always)]
    pub const fn rpq(&self) -> &Rpq {
        &self.rpq
    }
    #[doc = "0x3c - Transmit Pause Quantum Register"]
    #[inline(always)]
    pub const fn tpq(&self) -> &Tpq {
        &self.tpq
    }
    #[doc = "0x40 - TX partial store and forward Register"]
    #[inline(always)]
    pub const fn tpsf(&self) -> &Tpsf {
        &self.tpsf
    }
    #[doc = "0x44 - RX partial store and forward Register"]
    #[inline(always)]
    pub const fn rpsf(&self) -> &Rpsf {
        &self.rpsf
    }
    #[doc = "0x48 - RX Jumbo Frame Max Length Register"]
    #[inline(always)]
    pub const fn rjfml(&self) -> &Rjfml {
        &self.rjfml
    }
    #[doc = "0x80 - Hash Register Bottom \\[31:0\\]"]
    #[inline(always)]
    pub const fn hrb(&self) -> &Hrb {
        &self.hrb
    }
    #[doc = "0x84 - Hash Register Top \\[63:32\\]"]
    #[inline(always)]
    pub const fn hrt(&self) -> &Hrt {
        &self.hrt
    }
    #[doc = "0x88..0xa8 - SA\\[%s\\]"]
    #[inline(always)]
    pub const fn sa(&self, n: usize) -> &Sa {
        &self.sa[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0x88..0xa8 - SA\\[%s\\]"]
    #[inline(always)]
    pub fn sa_iter(&self) -> impl Iterator<Item = &Sa> {
        self.sa.iter()
    }
    #[doc = "0xa8..0xb8 - Type ID Match n Register"]
    #[inline(always)]
    pub const fn tidm(&self, n: usize) -> &Tidm {
        &self.tidm[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0xa8..0xb8 - Type ID Match n Register"]
    #[inline(always)]
    pub fn tidm_iter(&self) -> impl Iterator<Item = &Tidm> {
        self.tidm.iter()
    }
    #[doc = "0xb8 - Wake on LAN"]
    #[inline(always)]
    pub const fn wol(&self) -> &Wol {
        &self.wol
    }
    #[doc = "0xbc - IPG Stretch Register"]
    #[inline(always)]
    pub const fn ipgs(&self) -> &Ipgs {
        &self.ipgs
    }
    #[doc = "0xc0 - Stacked VLAN Register"]
    #[inline(always)]
    pub const fn svlan(&self) -> &Svlan {
        &self.svlan
    }
    #[doc = "0xc4 - Transmit PFC Pause Register"]
    #[inline(always)]
    pub const fn tpfcp(&self) -> &Tpfcp {
        &self.tpfcp
    }
    #[doc = "0xc8 - Specific Address 1 Mask Bottom \\[31:0\\]
Register"]
    #[inline(always)]
    pub const fn samb1(&self) -> &Samb1 {
        &self.samb1
    }
    #[doc = "0xcc - Specific Address 1 Mask Top \\[47:32\\]
Register"]
    #[inline(always)]
    pub const fn samt1(&self) -> &Samt1 {
        &self.samt1
    }
    #[doc = "0xdc - Tsu timer comparison nanoseconds Register"]
    #[inline(always)]
    pub const fn nsc(&self) -> &Nsc {
        &self.nsc
    }
    #[doc = "0xe0 - Tsu timer second comparison Register"]
    #[inline(always)]
    pub const fn scl(&self) -> &Scl {
        &self.scl
    }
    #[doc = "0xe4 - Tsu timer second comparison Register"]
    #[inline(always)]
    pub const fn sch(&self) -> &Sch {
        &self.sch
    }
    #[doc = "0xe8 - PTP Event Frame Transmitted Seconds High Register"]
    #[inline(always)]
    pub const fn eftsh(&self) -> &Eftsh {
        &self.eftsh
    }
    #[doc = "0xec - PTP Event Frame Received Seconds High Register"]
    #[inline(always)]
    pub const fn efrsh(&self) -> &Efrsh {
        &self.efrsh
    }
    #[doc = "0xf0 - PTP Peer Event Frame Transmitted Seconds High Register"]
    #[inline(always)]
    pub const fn peftsh(&self) -> &Peftsh {
        &self.peftsh
    }
    #[doc = "0xf4 - PTP Peer Event Frame Received Seconds High Register"]
    #[inline(always)]
    pub const fn pefrsh(&self) -> &Pefrsh {
        &self.pefrsh
    }
    #[doc = "0x100 - Octets Transmitted \\[31:0\\]
Register"]
    #[inline(always)]
    pub const fn otlo(&self) -> &Otlo {
        &self.otlo
    }
    #[doc = "0x104 - Octets Transmitted \\[47:32\\]
Register"]
    #[inline(always)]
    pub const fn othi(&self) -> &Othi {
        &self.othi
    }
    #[doc = "0x108 - Frames Transmitted Register"]
    #[inline(always)]
    pub const fn ft(&self) -> &Ft {
        &self.ft
    }
    #[doc = "0x10c - Broadcast Frames Transmitted Register"]
    #[inline(always)]
    pub const fn bcft(&self) -> &Bcft {
        &self.bcft
    }
    #[doc = "0x110 - Multicast Frames Transmitted Register"]
    #[inline(always)]
    pub const fn mft(&self) -> &Mft {
        &self.mft
    }
    #[doc = "0x114 - Pause Frames Transmitted Register"]
    #[inline(always)]
    pub const fn pft(&self) -> &Pft {
        &self.pft
    }
    #[doc = "0x118 - 64 Byte Frames Transmitted Register"]
    #[inline(always)]
    pub const fn bft64(&self) -> &Bft64 {
        &self.bft64
    }
    #[doc = "0x11c - 65 to 127 Byte Frames Transmitted Register"]
    #[inline(always)]
    pub const fn tbft127(&self) -> &Tbft127 {
        &self.tbft127
    }
    #[doc = "0x120 - 128 to 255 Byte Frames Transmitted Register"]
    #[inline(always)]
    pub const fn tbft255(&self) -> &Tbft255 {
        &self.tbft255
    }
    #[doc = "0x124 - 256 to 511 Byte Frames Transmitted Register"]
    #[inline(always)]
    pub const fn tbft511(&self) -> &Tbft511 {
        &self.tbft511
    }
    #[doc = "0x128 - 512 to 1023 Byte Frames Transmitted Register"]
    #[inline(always)]
    pub const fn tbft1023(&self) -> &Tbft1023 {
        &self.tbft1023
    }
    #[doc = "0x12c - 1024 to 1518 Byte Frames Transmitted Register"]
    #[inline(always)]
    pub const fn tbft1518(&self) -> &Tbft1518 {
        &self.tbft1518
    }
    #[doc = "0x130 - Greater Than 1518 Byte Frames Transmitted Register"]
    #[inline(always)]
    pub const fn gtbft1518(&self) -> &Gtbft1518 {
        &self.gtbft1518
    }
    #[doc = "0x134 - Transmit Underruns Register"]
    #[inline(always)]
    pub const fn tur(&self) -> &Tur {
        &self.tur
    }
    #[doc = "0x138 - Single Collision Frames Register"]
    #[inline(always)]
    pub const fn scf(&self) -> &Scf {
        &self.scf
    }
    #[doc = "0x13c - Multiple Collision Frames Register"]
    #[inline(always)]
    pub const fn mcf(&self) -> &Mcf {
        &self.mcf
    }
    #[doc = "0x140 - Excessive Collisions Register"]
    #[inline(always)]
    pub const fn ec(&self) -> &Ec {
        &self.ec
    }
    #[doc = "0x144 - Late Collisions Register"]
    #[inline(always)]
    pub const fn lc(&self) -> &Lc {
        &self.lc
    }
    #[doc = "0x148 - Deferred Transmission Frames Register"]
    #[inline(always)]
    pub const fn dtf(&self) -> &Dtf {
        &self.dtf
    }
    #[doc = "0x14c - Carrier Sense Errors Register"]
    #[inline(always)]
    pub const fn cse(&self) -> &Cse {
        &self.cse
    }
    #[doc = "0x150 - Octets Received \\[31:0\\]
Received"]
    #[inline(always)]
    pub const fn orlo(&self) -> &Orlo {
        &self.orlo
    }
    #[doc = "0x154 - Octets Received \\[47:32\\]
Received"]
    #[inline(always)]
    pub const fn orhi(&self) -> &Orhi {
        &self.orhi
    }
    #[doc = "0x158 - Frames Received Register"]
    #[inline(always)]
    pub const fn fr(&self) -> &Fr {
        &self.fr
    }
    #[doc = "0x15c - Broadcast Frames Received Register"]
    #[inline(always)]
    pub const fn bcfr(&self) -> &Bcfr {
        &self.bcfr
    }
    #[doc = "0x160 - Multicast Frames Received Register"]
    #[inline(always)]
    pub const fn mfr(&self) -> &Mfr {
        &self.mfr
    }
    #[doc = "0x164 - Pause Frames Received Register"]
    #[inline(always)]
    pub const fn pfr(&self) -> &Pfr {
        &self.pfr
    }
    #[doc = "0x168 - 64 Byte Frames Received Register"]
    #[inline(always)]
    pub const fn bfr64(&self) -> &Bfr64 {
        &self.bfr64
    }
    #[doc = "0x16c - 65 to 127 Byte Frames Received Register"]
    #[inline(always)]
    pub const fn tbfr127(&self) -> &Tbfr127 {
        &self.tbfr127
    }
    #[doc = "0x170 - 128 to 255 Byte Frames Received Register"]
    #[inline(always)]
    pub const fn tbfr255(&self) -> &Tbfr255 {
        &self.tbfr255
    }
    #[doc = "0x174 - 256 to 511Byte Frames Received Register"]
    #[inline(always)]
    pub const fn tbfr511(&self) -> &Tbfr511 {
        &self.tbfr511
    }
    #[doc = "0x178 - 512 to 1023 Byte Frames Received Register"]
    #[inline(always)]
    pub const fn tbfr1023(&self) -> &Tbfr1023 {
        &self.tbfr1023
    }
    #[doc = "0x17c - 1024 to 1518 Byte Frames Received Register"]
    #[inline(always)]
    pub const fn tbfr1518(&self) -> &Tbfr1518 {
        &self.tbfr1518
    }
    #[doc = "0x180 - 1519 to Maximum Byte Frames Received Register"]
    #[inline(always)]
    pub const fn tmxbfr(&self) -> &Tmxbfr {
        &self.tmxbfr
    }
    #[doc = "0x184 - Undersize Frames Received Register"]
    #[inline(always)]
    pub const fn ufr(&self) -> &Ufr {
        &self.ufr
    }
    #[doc = "0x188 - Oversize Frames Received Register"]
    #[inline(always)]
    pub const fn ofr(&self) -> &Ofr {
        &self.ofr
    }
    #[doc = "0x18c - Jabbers Received Register"]
    #[inline(always)]
    pub const fn jr(&self) -> &Jr {
        &self.jr
    }
    #[doc = "0x190 - Frame Check Sequence Errors Register"]
    #[inline(always)]
    pub const fn fcse(&self) -> &Fcse {
        &self.fcse
    }
    #[doc = "0x194 - Length Field Frame Errors Register"]
    #[inline(always)]
    pub const fn lffe(&self) -> &Lffe {
        &self.lffe
    }
    #[doc = "0x198 - Receive Symbol Errors Register"]
    #[inline(always)]
    pub const fn rse(&self) -> &Rse {
        &self.rse
    }
    #[doc = "0x19c - Alignment Errors Register"]
    #[inline(always)]
    pub const fn ae(&self) -> &Ae {
        &self.ae
    }
    #[doc = "0x1a0 - Receive Resource Errors Register"]
    #[inline(always)]
    pub const fn rre(&self) -> &Rre {
        &self.rre
    }
    #[doc = "0x1a4 - Receive Overrun Register"]
    #[inline(always)]
    pub const fn roe(&self) -> &Roe {
        &self.roe
    }
    #[doc = "0x1a8 - IP Header Checksum Errors Register"]
    #[inline(always)]
    pub const fn ihce(&self) -> &Ihce {
        &self.ihce
    }
    #[doc = "0x1ac - TCP Checksum Errors Register"]
    #[inline(always)]
    pub const fn tce(&self) -> &Tce {
        &self.tce
    }
    #[doc = "0x1b0 - UDP Checksum Errors Register"]
    #[inline(always)]
    pub const fn uce(&self) -> &Uce {
        &self.uce
    }
    #[doc = "0x1bc - 1588 Timer Increment \\[15:0\\]
Sub-Nanoseconds Register"]
    #[inline(always)]
    pub const fn tisubn(&self) -> &Tisubn {
        &self.tisubn
    }
    #[doc = "0x1c0 - 1588 Timer Seconds High \\[15:0\\]
Register"]
    #[inline(always)]
    pub const fn tsh(&self) -> &Tsh {
        &self.tsh
    }
    #[doc = "0x1c8 - 1588 Timer Sync Strobe Seconds \\[31:0\\]
Register"]
    #[inline(always)]
    pub const fn tsssl(&self) -> &Tsssl {
        &self.tsssl
    }
    #[doc = "0x1cc - 1588 Timer Sync Strobe Nanoseconds Register"]
    #[inline(always)]
    pub const fn tssn(&self) -> &Tssn {
        &self.tssn
    }
    #[doc = "0x1d0 - 1588 Timer Seconds \\[31:0\\]
Register"]
    #[inline(always)]
    pub const fn tsl(&self) -> &Tsl {
        &self.tsl
    }
    #[doc = "0x1d4 - 1588 Timer Nanoseconds Register"]
    #[inline(always)]
    pub const fn tn(&self) -> &Tn {
        &self.tn
    }
    #[doc = "0x1d8 - 1588 Timer Adjust Register"]
    #[inline(always)]
    pub const fn ta(&self) -> &Ta {
        &self.ta
    }
    #[doc = "0x1dc - 1588 Timer Increment Register"]
    #[inline(always)]
    pub const fn ti(&self) -> &Ti {
        &self.ti
    }
    #[doc = "0x1e0 - PTP Event Frame Transmitted Seconds Low Register"]
    #[inline(always)]
    pub const fn eftsl(&self) -> &Eftsl {
        &self.eftsl
    }
    #[doc = "0x1e4 - PTP Event Frame Transmitted Nanoseconds"]
    #[inline(always)]
    pub const fn eftn(&self) -> &Eftn {
        &self.eftn
    }
    #[doc = "0x1e8 - PTP Event Frame Received Seconds Low Register"]
    #[inline(always)]
    pub const fn efrsl(&self) -> &Efrsl {
        &self.efrsl
    }
    #[doc = "0x1ec - PTP Event Frame Received Nanoseconds"]
    #[inline(always)]
    pub const fn efrn(&self) -> &Efrn {
        &self.efrn
    }
    #[doc = "0x1f0 - PTP Peer Event Frame Transmitted Seconds Low Register"]
    #[inline(always)]
    pub const fn peftsl(&self) -> &Peftsl {
        &self.peftsl
    }
    #[doc = "0x1f4 - PTP Peer Event Frame Transmitted Nanoseconds"]
    #[inline(always)]
    pub const fn peftn(&self) -> &Peftn {
        &self.peftn
    }
    #[doc = "0x1f8 - PTP Peer Event Frame Received Seconds Low Register"]
    #[inline(always)]
    pub const fn pefrsl(&self) -> &Pefrsl {
        &self.pefrsl
    }
    #[doc = "0x1fc - PTP Peer Event Frame Received Nanoseconds"]
    #[inline(always)]
    pub const fn pefrn(&self) -> &Pefrn {
        &self.pefrn
    }
    #[doc = "0x270 - Receive LPI transition Register"]
    #[inline(always)]
    pub const fn rlpitr(&self) -> &Rlpitr {
        &self.rlpitr
    }
    #[doc = "0x274 - Receive LPI Time Register"]
    #[inline(always)]
    pub const fn rlpiti(&self) -> &Rlpiti {
        &self.rlpiti
    }
    #[doc = "0x278 - Receive LPI transition Register"]
    #[inline(always)]
    pub const fn tlpitr(&self) -> &Tlpitr {
        &self.tlpitr
    }
    #[doc = "0x27c - Receive LPI Time Register"]
    #[inline(always)]
    pub const fn tlpiti(&self) -> &Tlpiti {
        &self.tlpiti
    }
}
#[doc = "NCR (rw) register accessor: Network Control Register\n\nYou can [`read`](crate::Reg::read) this register and get [`ncr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`ncr::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ncr`]
module"]
#[doc(alias = "NCR")]
pub type Ncr = crate::Reg<ncr::NcrSpec>;
#[doc = "Network Control Register"]
pub mod ncr;
#[doc = "NCFGR (rw) register accessor: Network Configuration Register\n\nYou can [`read`](crate::Reg::read) this register and get [`ncfgr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`ncfgr::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ncfgr`]
module"]
#[doc(alias = "NCFGR")]
pub type Ncfgr = crate::Reg<ncfgr::NcfgrSpec>;
#[doc = "Network Configuration Register"]
pub mod ncfgr;
#[doc = "NSR (r) register accessor: Network Status Register\n\nYou can [`read`](crate::Reg::read) this register and get [`nsr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@nsr`]
module"]
#[doc(alias = "NSR")]
pub type Nsr = crate::Reg<nsr::NsrSpec>;
#[doc = "Network Status Register"]
pub mod nsr;
#[doc = "UR (rw) register accessor: User Register\n\nYou can [`read`](crate::Reg::read) this register and get [`ur::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`ur::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ur`]
module"]
#[doc(alias = "UR")]
pub type Ur = crate::Reg<ur::UrSpec>;
#[doc = "User Register"]
pub mod ur;
#[doc = "DCFGR (rw) register accessor: DMA Configuration Register\n\nYou can [`read`](crate::Reg::read) this register and get [`dcfgr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dcfgr::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@dcfgr`]
module"]
#[doc(alias = "DCFGR")]
pub type Dcfgr = crate::Reg<dcfgr::DcfgrSpec>;
#[doc = "DMA Configuration Register"]
pub mod dcfgr;
#[doc = "TSR (rw) register accessor: Transmit Status Register\n\nYou can [`read`](crate::Reg::read) this register and get [`tsr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`tsr::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tsr`]
module"]
#[doc(alias = "TSR")]
pub type Tsr = crate::Reg<tsr::TsrSpec>;
#[doc = "Transmit Status Register"]
pub mod tsr;
#[doc = "RBQB (rw) register accessor: Receive Buffer Queue Base Address\n\nYou can [`read`](crate::Reg::read) this register and get [`rbqb::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`rbqb::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@rbqb`]
module"]
#[doc(alias = "RBQB")]
pub type Rbqb = crate::Reg<rbqb::RbqbSpec>;
#[doc = "Receive Buffer Queue Base Address"]
pub mod rbqb;
#[doc = "TBQB (rw) register accessor: Transmit Buffer Queue Base Address\n\nYou can [`read`](crate::Reg::read) this register and get [`tbqb::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`tbqb::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tbqb`]
module"]
#[doc(alias = "TBQB")]
pub type Tbqb = crate::Reg<tbqb::TbqbSpec>;
#[doc = "Transmit Buffer Queue Base Address"]
pub mod tbqb;
#[doc = "RSR (rw) register accessor: Receive Status Register\n\nYou can [`read`](crate::Reg::read) this register and get [`rsr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`rsr::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@rsr`]
module"]
#[doc(alias = "RSR")]
pub type Rsr = crate::Reg<rsr::RsrSpec>;
#[doc = "Receive Status Register"]
pub mod rsr;
#[doc = "ISR (rw) register accessor: Interrupt Status Register\n\nYou can [`read`](crate::Reg::read) this register and get [`isr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`isr::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@isr`]
module"]
#[doc(alias = "ISR")]
pub type Isr = crate::Reg<isr::IsrSpec>;
#[doc = "Interrupt Status Register"]
pub mod isr;
#[doc = "IER (w) register accessor: Interrupt Enable Register\n\nYou can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`ier::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ier`]
module"]
#[doc(alias = "IER")]
pub type Ier = crate::Reg<ier::IerSpec>;
#[doc = "Interrupt Enable Register"]
pub mod ier;
#[doc = "IDR (w) register accessor: Interrupt Disable Register\n\nYou can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`idr::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@idr`]
module"]
#[doc(alias = "IDR")]
pub type Idr = crate::Reg<idr::IdrSpec>;
#[doc = "Interrupt Disable Register"]
pub mod idr;
#[doc = "IMR (r) register accessor: Interrupt Mask Register\n\nYou can [`read`](crate::Reg::read) this register and get [`imr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@imr`]
module"]
#[doc(alias = "IMR")]
pub type Imr = crate::Reg<imr::ImrSpec>;
#[doc = "Interrupt Mask Register"]
pub mod imr;
#[doc = "MAN (rw) register accessor: PHY Maintenance Register\n\nYou can [`read`](crate::Reg::read) this register and get [`man::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`man::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@man`]
module"]
#[doc(alias = "MAN")]
pub type Man = crate::Reg<man::ManSpec>;
#[doc = "PHY Maintenance Register"]
pub mod man;
#[doc = "RPQ (r) register accessor: Received Pause Quantum Register\n\nYou can [`read`](crate::Reg::read) this register and get [`rpq::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@rpq`]
module"]
#[doc(alias = "RPQ")]
pub type Rpq = crate::Reg<rpq::RpqSpec>;
#[doc = "Received Pause Quantum Register"]
pub mod rpq;
#[doc = "TPQ (rw) register accessor: Transmit Pause Quantum Register\n\nYou can [`read`](crate::Reg::read) this register and get [`tpq::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`tpq::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tpq`]
module"]
#[doc(alias = "TPQ")]
pub type Tpq = crate::Reg<tpq::TpqSpec>;
#[doc = "Transmit Pause Quantum Register"]
pub mod tpq;
#[doc = "TPSF (rw) register accessor: TX partial store and forward Register\n\nYou can [`read`](crate::Reg::read) this register and get [`tpsf::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`tpsf::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tpsf`]
module"]
#[doc(alias = "TPSF")]
pub type Tpsf = crate::Reg<tpsf::TpsfSpec>;
#[doc = "TX partial store and forward Register"]
pub mod tpsf;
#[doc = "RPSF (rw) register accessor: RX partial store and forward Register\n\nYou can [`read`](crate::Reg::read) this register and get [`rpsf::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`rpsf::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@rpsf`]
module"]
#[doc(alias = "RPSF")]
pub type Rpsf = crate::Reg<rpsf::RpsfSpec>;
#[doc = "RX partial store and forward Register"]
pub mod rpsf;
#[doc = "RJFML (rw) register accessor: RX Jumbo Frame Max Length Register\n\nYou can [`read`](crate::Reg::read) this register and get [`rjfml::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`rjfml::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@rjfml`]
module"]
#[doc(alias = "RJFML")]
pub type Rjfml = crate::Reg<rjfml::RjfmlSpec>;
#[doc = "RX Jumbo Frame Max Length Register"]
pub mod rjfml;
#[doc = "HRB (rw) register accessor: Hash Register Bottom \\[31:0\\]\n\nYou can [`read`](crate::Reg::read) this register and get [`hrb::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`hrb::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hrb`]
module"]
#[doc(alias = "HRB")]
pub type Hrb = crate::Reg<hrb::HrbSpec>;
#[doc = "Hash Register Bottom \\[31:0\\]"]
pub mod hrb;
#[doc = "HRT (rw) register accessor: Hash Register Top \\[63:32\\]\n\nYou can [`read`](crate::Reg::read) this register and get [`hrt::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`hrt::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hrt`]
module"]
#[doc(alias = "HRT")]
pub type Hrt = crate::Reg<hrt::HrtSpec>;
#[doc = "Hash Register Top \\[63:32\\]"]
pub mod hrt;
#[doc = "SA\\[%s\\]"]
pub use self::sa::Sa;
#[doc = r"Cluster"]
#[doc = "SA\\[%s\\]"]
pub mod sa;
#[doc = "TIDM (rw) register accessor: Type ID Match n Register\n\nYou can [`read`](crate::Reg::read) this register and get [`tidm::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`tidm::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tidm`]
module"]
#[doc(alias = "TIDM")]
pub type Tidm = crate::Reg<tidm::TidmSpec>;
#[doc = "Type ID Match n Register"]
pub mod tidm;
#[doc = "WOL (rw) register accessor: Wake on LAN\n\nYou can [`read`](crate::Reg::read) this register and get [`wol::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`wol::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@wol`]
module"]
#[doc(alias = "WOL")]
pub type Wol = crate::Reg<wol::WolSpec>;
#[doc = "Wake on LAN"]
pub mod wol;
#[doc = "IPGS (rw) register accessor: IPG Stretch Register\n\nYou can [`read`](crate::Reg::read) this register and get [`ipgs::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`ipgs::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ipgs`]
module"]
#[doc(alias = "IPGS")]
pub type Ipgs = crate::Reg<ipgs::IpgsSpec>;
#[doc = "IPG Stretch Register"]
pub mod ipgs;
#[doc = "SVLAN (rw) register accessor: Stacked VLAN Register\n\nYou can [`read`](crate::Reg::read) this register and get [`svlan::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`svlan::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@svlan`]
module"]
#[doc(alias = "SVLAN")]
pub type Svlan = crate::Reg<svlan::SvlanSpec>;
#[doc = "Stacked VLAN Register"]
pub mod svlan;
#[doc = "TPFCP (rw) register accessor: Transmit PFC Pause Register\n\nYou can [`read`](crate::Reg::read) this register and get [`tpfcp::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`tpfcp::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tpfcp`]
module"]
#[doc(alias = "TPFCP")]
pub type Tpfcp = crate::Reg<tpfcp::TpfcpSpec>;
#[doc = "Transmit PFC Pause Register"]
pub mod tpfcp;
#[doc = "SAMB1 (rw) register accessor: Specific Address 1 Mask Bottom \\[31:0\\]
Register\n\nYou can [`read`](crate::Reg::read) this register and get [`samb1::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`samb1::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@samb1`]
module"]
#[doc(alias = "SAMB1")]
pub type Samb1 = crate::Reg<samb1::Samb1Spec>;
#[doc = "Specific Address 1 Mask Bottom \\[31:0\\]
Register"]
pub mod samb1;
#[doc = "SAMT1 (rw) register accessor: Specific Address 1 Mask Top \\[47:32\\]
Register\n\nYou can [`read`](crate::Reg::read) this register and get [`samt1::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`samt1::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@samt1`]
module"]
#[doc(alias = "SAMT1")]
pub type Samt1 = crate::Reg<samt1::Samt1Spec>;
#[doc = "Specific Address 1 Mask Top \\[47:32\\]
Register"]
pub mod samt1;
#[doc = "NSC (rw) register accessor: Tsu timer comparison nanoseconds Register\n\nYou can [`read`](crate::Reg::read) this register and get [`nsc::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`nsc::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@nsc`]
module"]
#[doc(alias = "NSC")]
pub type Nsc = crate::Reg<nsc::NscSpec>;
#[doc = "Tsu timer comparison nanoseconds Register"]
pub mod nsc;
#[doc = "SCL (rw) register accessor: Tsu timer second comparison Register\n\nYou can [`read`](crate::Reg::read) this register and get [`scl::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`scl::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@scl`]
module"]
#[doc(alias = "SCL")]
pub type Scl = crate::Reg<scl::SclSpec>;
#[doc = "Tsu timer second comparison Register"]
pub mod scl;
#[doc = "SCH (rw) register accessor: Tsu timer second comparison Register\n\nYou can [`read`](crate::Reg::read) this register and get [`sch::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`sch::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@sch`]
module"]
#[doc(alias = "SCH")]
pub type Sch = crate::Reg<sch::SchSpec>;
#[doc = "Tsu timer second comparison Register"]
pub mod sch;
#[doc = "EFTSH (r) register accessor: PTP Event Frame Transmitted Seconds High Register\n\nYou can [`read`](crate::Reg::read) this register and get [`eftsh::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@eftsh`]
module"]
#[doc(alias = "EFTSH")]
pub type Eftsh = crate::Reg<eftsh::EftshSpec>;
#[doc = "PTP Event Frame Transmitted Seconds High Register"]
pub mod eftsh;
#[doc = "EFRSH (r) register accessor: PTP Event Frame Received Seconds High Register\n\nYou can [`read`](crate::Reg::read) this register and get [`efrsh::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@efrsh`]
module"]
#[doc(alias = "EFRSH")]
pub type Efrsh = crate::Reg<efrsh::EfrshSpec>;
#[doc = "PTP Event Frame Received Seconds High Register"]
pub mod efrsh;
#[doc = "PEFTSH (r) register accessor: PTP Peer Event Frame Transmitted Seconds High Register\n\nYou can [`read`](crate::Reg::read) this register and get [`peftsh::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@peftsh`]
module"]
#[doc(alias = "PEFTSH")]
pub type Peftsh = crate::Reg<peftsh::PeftshSpec>;
#[doc = "PTP Peer Event Frame Transmitted Seconds High Register"]
pub mod peftsh;
#[doc = "PEFRSH (r) register accessor: PTP Peer Event Frame Received Seconds High Register\n\nYou can [`read`](crate::Reg::read) this register and get [`pefrsh::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pefrsh`]
module"]
#[doc(alias = "PEFRSH")]
pub type Pefrsh = crate::Reg<pefrsh::PefrshSpec>;
#[doc = "PTP Peer Event Frame Received Seconds High Register"]
pub mod pefrsh;
#[doc = "OTLO (r) register accessor: Octets Transmitted \\[31:0\\]
Register\n\nYou can [`read`](crate::Reg::read) this register and get [`otlo::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@otlo`]
module"]
#[doc(alias = "OTLO")]
pub type Otlo = crate::Reg<otlo::OtloSpec>;
#[doc = "Octets Transmitted \\[31:0\\]
Register"]
pub mod otlo;
#[doc = "OTHI (r) register accessor: Octets Transmitted \\[47:32\\]
Register\n\nYou can [`read`](crate::Reg::read) this register and get [`othi::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@othi`]
module"]
#[doc(alias = "OTHI")]
pub type Othi = crate::Reg<othi::OthiSpec>;
#[doc = "Octets Transmitted \\[47:32\\]
Register"]
pub mod othi;
#[doc = "FT (r) register accessor: Frames Transmitted Register\n\nYou can [`read`](crate::Reg::read) this register and get [`ft::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ft`]
module"]
#[doc(alias = "FT")]
pub type Ft = crate::Reg<ft::FtSpec>;
#[doc = "Frames Transmitted Register"]
pub mod ft;
#[doc = "BCFT (r) register accessor: Broadcast Frames Transmitted Register\n\nYou can [`read`](crate::Reg::read) this register and get [`bcft::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@bcft`]
module"]
#[doc(alias = "BCFT")]
pub type Bcft = crate::Reg<bcft::BcftSpec>;
#[doc = "Broadcast Frames Transmitted Register"]
pub mod bcft;
#[doc = "MFT (r) register accessor: Multicast Frames Transmitted Register\n\nYou can [`read`](crate::Reg::read) this register and get [`mft::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@mft`]
module"]
#[doc(alias = "MFT")]
pub type Mft = crate::Reg<mft::MftSpec>;
#[doc = "Multicast Frames Transmitted Register"]
pub mod mft;
#[doc = "PFT (r) register accessor: Pause Frames Transmitted Register\n\nYou can [`read`](crate::Reg::read) this register and get [`pft::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pft`]
module"]
#[doc(alias = "PFT")]
pub type Pft = crate::Reg<pft::PftSpec>;
#[doc = "Pause Frames Transmitted Register"]
pub mod pft;
#[doc = "BFT64 (r) register accessor: 64 Byte Frames Transmitted Register\n\nYou can [`read`](crate::Reg::read) this register and get [`bft64::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@bft64`]
module"]
#[doc(alias = "BFT64")]
pub type Bft64 = crate::Reg<bft64::Bft64Spec>;
#[doc = "64 Byte Frames Transmitted Register"]
pub mod bft64;
#[doc = "TBFT127 (r) register accessor: 65 to 127 Byte Frames Transmitted Register\n\nYou can [`read`](crate::Reg::read) this register and get [`tbft127::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tbft127`]
module"]
#[doc(alias = "TBFT127")]
pub type Tbft127 = crate::Reg<tbft127::Tbft127Spec>;
#[doc = "65 to 127 Byte Frames Transmitted Register"]
pub mod tbft127;
#[doc = "TBFT255 (r) register accessor: 128 to 255 Byte Frames Transmitted Register\n\nYou can [`read`](crate::Reg::read) this register and get [`tbft255::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tbft255`]
module"]
#[doc(alias = "TBFT255")]
pub type Tbft255 = crate::Reg<tbft255::Tbft255Spec>;
#[doc = "128 to 255 Byte Frames Transmitted Register"]
pub mod tbft255;
#[doc = "TBFT511 (r) register accessor: 256 to 511 Byte Frames Transmitted Register\n\nYou can [`read`](crate::Reg::read) this register and get [`tbft511::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tbft511`]
module"]
#[doc(alias = "TBFT511")]
pub type Tbft511 = crate::Reg<tbft511::Tbft511Spec>;
#[doc = "256 to 511 Byte Frames Transmitted Register"]
pub mod tbft511;
#[doc = "TBFT1023 (r) register accessor: 512 to 1023 Byte Frames Transmitted Register\n\nYou can [`read`](crate::Reg::read) this register and get [`tbft1023::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tbft1023`]
module"]
#[doc(alias = "TBFT1023")]
pub type Tbft1023 = crate::Reg<tbft1023::Tbft1023Spec>;
#[doc = "512 to 1023 Byte Frames Transmitted Register"]
pub mod tbft1023;
#[doc = "TBFT1518 (r) register accessor: 1024 to 1518 Byte Frames Transmitted Register\n\nYou can [`read`](crate::Reg::read) this register and get [`tbft1518::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tbft1518`]
module"]
#[doc(alias = "TBFT1518")]
pub type Tbft1518 = crate::Reg<tbft1518::Tbft1518Spec>;
#[doc = "1024 to 1518 Byte Frames Transmitted Register"]
pub mod tbft1518;
#[doc = "GTBFT1518 (r) register accessor: Greater Than 1518 Byte Frames Transmitted Register\n\nYou can [`read`](crate::Reg::read) this register and get [`gtbft1518::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@gtbft1518`]
module"]
#[doc(alias = "GTBFT1518")]
pub type Gtbft1518 = crate::Reg<gtbft1518::Gtbft1518Spec>;
#[doc = "Greater Than 1518 Byte Frames Transmitted Register"]
pub mod gtbft1518;
#[doc = "TUR (r) register accessor: Transmit Underruns Register\n\nYou can [`read`](crate::Reg::read) this register and get [`tur::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tur`]
module"]
#[doc(alias = "TUR")]
pub type Tur = crate::Reg<tur::TurSpec>;
#[doc = "Transmit Underruns Register"]
pub mod tur;
#[doc = "SCF (r) register accessor: Single Collision Frames Register\n\nYou can [`read`](crate::Reg::read) this register and get [`scf::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@scf`]
module"]
#[doc(alias = "SCF")]
pub type Scf = crate::Reg<scf::ScfSpec>;
#[doc = "Single Collision Frames Register"]
pub mod scf;
#[doc = "MCF (r) register accessor: Multiple Collision Frames Register\n\nYou can [`read`](crate::Reg::read) this register and get [`mcf::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@mcf`]
module"]
#[doc(alias = "MCF")]
pub type Mcf = crate::Reg<mcf::McfSpec>;
#[doc = "Multiple Collision Frames Register"]
pub mod mcf;
#[doc = "EC (r) register accessor: Excessive Collisions Register\n\nYou can [`read`](crate::Reg::read) this register and get [`ec::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ec`]
module"]
#[doc(alias = "EC")]
pub type Ec = crate::Reg<ec::EcSpec>;
#[doc = "Excessive Collisions Register"]
pub mod ec;
#[doc = "LC (r) register accessor: Late Collisions Register\n\nYou can [`read`](crate::Reg::read) this register and get [`lc::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@lc`]
module"]
#[doc(alias = "LC")]
pub type Lc = crate::Reg<lc::LcSpec>;
#[doc = "Late Collisions Register"]
pub mod lc;
#[doc = "DTF (r) register accessor: Deferred Transmission Frames Register\n\nYou can [`read`](crate::Reg::read) this register and get [`dtf::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@dtf`]
module"]
#[doc(alias = "DTF")]
pub type Dtf = crate::Reg<dtf::DtfSpec>;
#[doc = "Deferred Transmission Frames Register"]
pub mod dtf;
#[doc = "CSE (r) register accessor: Carrier Sense Errors Register\n\nYou can [`read`](crate::Reg::read) this register and get [`cse::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@cse`]
module"]
#[doc(alias = "CSE")]
pub type Cse = crate::Reg<cse::CseSpec>;
#[doc = "Carrier Sense Errors Register"]
pub mod cse;
#[doc = "ORLO (r) register accessor: Octets Received \\[31:0\\]
Received\n\nYou can [`read`](crate::Reg::read) this register and get [`orlo::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@orlo`]
module"]
#[doc(alias = "ORLO")]
pub type Orlo = crate::Reg<orlo::OrloSpec>;
#[doc = "Octets Received \\[31:0\\]
Received"]
pub mod orlo;
#[doc = "ORHI (r) register accessor: Octets Received \\[47:32\\]
Received\n\nYou can [`read`](crate::Reg::read) this register and get [`orhi::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@orhi`]
module"]
#[doc(alias = "ORHI")]
pub type Orhi = crate::Reg<orhi::OrhiSpec>;
#[doc = "Octets Received \\[47:32\\]
Received"]
pub mod orhi;
#[doc = "FR (r) register accessor: Frames Received Register\n\nYou can [`read`](crate::Reg::read) this register and get [`fr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fr`]
module"]
#[doc(alias = "FR")]
pub type Fr = crate::Reg<fr::FrSpec>;
#[doc = "Frames Received Register"]
pub mod fr;
#[doc = "BCFR (r) register accessor: Broadcast Frames Received Register\n\nYou can [`read`](crate::Reg::read) this register and get [`bcfr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@bcfr`]
module"]
#[doc(alias = "BCFR")]
pub type Bcfr = crate::Reg<bcfr::BcfrSpec>;
#[doc = "Broadcast Frames Received Register"]
pub mod bcfr;
#[doc = "MFR (r) register accessor: Multicast Frames Received Register\n\nYou can [`read`](crate::Reg::read) this register and get [`mfr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@mfr`]
module"]
#[doc(alias = "MFR")]
pub type Mfr = crate::Reg<mfr::MfrSpec>;
#[doc = "Multicast Frames Received Register"]
pub mod mfr;
#[doc = "PFR (r) register accessor: Pause Frames Received Register\n\nYou can [`read`](crate::Reg::read) this register and get [`pfr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pfr`]
module"]
#[doc(alias = "PFR")]
pub type Pfr = crate::Reg<pfr::PfrSpec>;
#[doc = "Pause Frames Received Register"]
pub mod pfr;
#[doc = "BFR64 (r) register accessor: 64 Byte Frames Received Register\n\nYou can [`read`](crate::Reg::read) this register and get [`bfr64::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@bfr64`]
module"]
#[doc(alias = "BFR64")]
pub type Bfr64 = crate::Reg<bfr64::Bfr64Spec>;
#[doc = "64 Byte Frames Received Register"]
pub mod bfr64;
#[doc = "TBFR127 (r) register accessor: 65 to 127 Byte Frames Received Register\n\nYou can [`read`](crate::Reg::read) this register and get [`tbfr127::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tbfr127`]
module"]
#[doc(alias = "TBFR127")]
pub type Tbfr127 = crate::Reg<tbfr127::Tbfr127Spec>;
#[doc = "65 to 127 Byte Frames Received Register"]
pub mod tbfr127;
#[doc = "TBFR255 (r) register accessor: 128 to 255 Byte Frames Received Register\n\nYou can [`read`](crate::Reg::read) this register and get [`tbfr255::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tbfr255`]
module"]
#[doc(alias = "TBFR255")]
pub type Tbfr255 = crate::Reg<tbfr255::Tbfr255Spec>;
#[doc = "128 to 255 Byte Frames Received Register"]
pub mod tbfr255;
#[doc = "TBFR511 (r) register accessor: 256 to 511Byte Frames Received Register\n\nYou can [`read`](crate::Reg::read) this register and get [`tbfr511::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tbfr511`]
module"]
#[doc(alias = "TBFR511")]
pub type Tbfr511 = crate::Reg<tbfr511::Tbfr511Spec>;
#[doc = "256 to 511Byte Frames Received Register"]
pub mod tbfr511;
#[doc = "TBFR1023 (r) register accessor: 512 to 1023 Byte Frames Received Register\n\nYou can [`read`](crate::Reg::read) this register and get [`tbfr1023::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tbfr1023`]
module"]
#[doc(alias = "TBFR1023")]
pub type Tbfr1023 = crate::Reg<tbfr1023::Tbfr1023Spec>;
#[doc = "512 to 1023 Byte Frames Received Register"]
pub mod tbfr1023;
#[doc = "TBFR1518 (r) register accessor: 1024 to 1518 Byte Frames Received Register\n\nYou can [`read`](crate::Reg::read) this register and get [`tbfr1518::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tbfr1518`]
module"]
#[doc(alias = "TBFR1518")]
pub type Tbfr1518 = crate::Reg<tbfr1518::Tbfr1518Spec>;
#[doc = "1024 to 1518 Byte Frames Received Register"]
pub mod tbfr1518;
#[doc = "TMXBFR (r) register accessor: 1519 to Maximum Byte Frames Received Register\n\nYou can [`read`](crate::Reg::read) this register and get [`tmxbfr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tmxbfr`]
module"]
#[doc(alias = "TMXBFR")]
pub type Tmxbfr = crate::Reg<tmxbfr::TmxbfrSpec>;
#[doc = "1519 to Maximum Byte Frames Received Register"]
pub mod tmxbfr;
#[doc = "UFR (r) register accessor: Undersize Frames Received Register\n\nYou can [`read`](crate::Reg::read) this register and get [`ufr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ufr`]
module"]
#[doc(alias = "UFR")]
pub type Ufr = crate::Reg<ufr::UfrSpec>;
#[doc = "Undersize Frames Received Register"]
pub mod ufr;
#[doc = "OFR (r) register accessor: Oversize Frames Received Register\n\nYou can [`read`](crate::Reg::read) this register and get [`ofr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ofr`]
module"]
#[doc(alias = "OFR")]
pub type Ofr = crate::Reg<ofr::OfrSpec>;
#[doc = "Oversize Frames Received Register"]
pub mod ofr;
#[doc = "JR (r) register accessor: Jabbers Received Register\n\nYou can [`read`](crate::Reg::read) this register and get [`jr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@jr`]
module"]
#[doc(alias = "JR")]
pub type Jr = crate::Reg<jr::JrSpec>;
#[doc = "Jabbers Received Register"]
pub mod jr;
#[doc = "FCSE (r) register accessor: Frame Check Sequence Errors Register\n\nYou can [`read`](crate::Reg::read) this register and get [`fcse::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fcse`]
module"]
#[doc(alias = "FCSE")]
pub type Fcse = crate::Reg<fcse::FcseSpec>;
#[doc = "Frame Check Sequence Errors Register"]
pub mod fcse;
#[doc = "LFFE (r) register accessor: Length Field Frame Errors Register\n\nYou can [`read`](crate::Reg::read) this register and get [`lffe::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@lffe`]
module"]
#[doc(alias = "LFFE")]
pub type Lffe = crate::Reg<lffe::LffeSpec>;
#[doc = "Length Field Frame Errors Register"]
pub mod lffe;
#[doc = "RSE (r) register accessor: Receive Symbol Errors Register\n\nYou can [`read`](crate::Reg::read) this register and get [`rse::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@rse`]
module"]
#[doc(alias = "RSE")]
pub type Rse = crate::Reg<rse::RseSpec>;
#[doc = "Receive Symbol Errors Register"]
pub mod rse;
#[doc = "AE (r) register accessor: Alignment Errors Register\n\nYou can [`read`](crate::Reg::read) this register and get [`ae::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ae`]
module"]
#[doc(alias = "AE")]
pub type Ae = crate::Reg<ae::AeSpec>;
#[doc = "Alignment Errors Register"]
pub mod ae;
#[doc = "RRE (r) register accessor: Receive Resource Errors Register\n\nYou can [`read`](crate::Reg::read) this register and get [`rre::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@rre`]
module"]
#[doc(alias = "RRE")]
pub type Rre = crate::Reg<rre::RreSpec>;
#[doc = "Receive Resource Errors Register"]
pub mod rre;
#[doc = "ROE (r) register accessor: Receive Overrun Register\n\nYou can [`read`](crate::Reg::read) this register and get [`roe::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@roe`]
module"]
#[doc(alias = "ROE")]
pub type Roe = crate::Reg<roe::RoeSpec>;
#[doc = "Receive Overrun Register"]
pub mod roe;
#[doc = "IHCE (r) register accessor: IP Header Checksum Errors Register\n\nYou can [`read`](crate::Reg::read) this register and get [`ihce::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ihce`]
module"]
#[doc(alias = "IHCE")]
pub type Ihce = crate::Reg<ihce::IhceSpec>;
#[doc = "IP Header Checksum Errors Register"]
pub mod ihce;
#[doc = "TCE (r) register accessor: TCP Checksum Errors Register\n\nYou can [`read`](crate::Reg::read) this register and get [`tce::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tce`]
module"]
#[doc(alias = "TCE")]
pub type Tce = crate::Reg<tce::TceSpec>;
#[doc = "TCP Checksum Errors Register"]
pub mod tce;
#[doc = "UCE (r) register accessor: UDP Checksum Errors Register\n\nYou can [`read`](crate::Reg::read) this register and get [`uce::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@uce`]
module"]
#[doc(alias = "UCE")]
pub type Uce = crate::Reg<uce::UceSpec>;
#[doc = "UDP Checksum Errors Register"]
pub mod uce;
#[doc = "TISUBN (rw) register accessor: 1588 Timer Increment \\[15:0\\]
Sub-Nanoseconds Register\n\nYou can [`read`](crate::Reg::read) this register and get [`tisubn::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`tisubn::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tisubn`]
module"]
#[doc(alias = "TISUBN")]
pub type Tisubn = crate::Reg<tisubn::TisubnSpec>;
#[doc = "1588 Timer Increment \\[15:0\\]
Sub-Nanoseconds Register"]
pub mod tisubn;
#[doc = "TSH (rw) register accessor: 1588 Timer Seconds High \\[15:0\\]
Register\n\nYou can [`read`](crate::Reg::read) this register and get [`tsh::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`tsh::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tsh`]
module"]
#[doc(alias = "TSH")]
pub type Tsh = crate::Reg<tsh::TshSpec>;
#[doc = "1588 Timer Seconds High \\[15:0\\]
Register"]
pub mod tsh;
#[doc = "TSSSL (rw) register accessor: 1588 Timer Sync Strobe Seconds \\[31:0\\]
Register\n\nYou can [`read`](crate::Reg::read) this register and get [`tsssl::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`tsssl::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tsssl`]
module"]
#[doc(alias = "TSSSL")]
pub type Tsssl = crate::Reg<tsssl::TssslSpec>;
#[doc = "1588 Timer Sync Strobe Seconds \\[31:0\\]
Register"]
pub mod tsssl;
#[doc = "TSSN (rw) register accessor: 1588 Timer Sync Strobe Nanoseconds Register\n\nYou can [`read`](crate::Reg::read) this register and get [`tssn::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`tssn::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tssn`]
module"]
#[doc(alias = "TSSN")]
pub type Tssn = crate::Reg<tssn::TssnSpec>;
#[doc = "1588 Timer Sync Strobe Nanoseconds Register"]
pub mod tssn;
#[doc = "TSL (rw) register accessor: 1588 Timer Seconds \\[31:0\\]
Register\n\nYou can [`read`](crate::Reg::read) this register and get [`tsl::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`tsl::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tsl`]
module"]
#[doc(alias = "TSL")]
pub type Tsl = crate::Reg<tsl::TslSpec>;
#[doc = "1588 Timer Seconds \\[31:0\\]
Register"]
pub mod tsl;
#[doc = "TN (rw) register accessor: 1588 Timer Nanoseconds Register\n\nYou can [`read`](crate::Reg::read) this register and get [`tn::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`tn::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tn`]
module"]
#[doc(alias = "TN")]
pub type Tn = crate::Reg<tn::TnSpec>;
#[doc = "1588 Timer Nanoseconds Register"]
pub mod tn;
#[doc = "TA (w) register accessor: 1588 Timer Adjust Register\n\nYou can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`ta::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ta`]
module"]
#[doc(alias = "TA")]
pub type Ta = crate::Reg<ta::TaSpec>;
#[doc = "1588 Timer Adjust Register"]
pub mod ta;
#[doc = "TI (rw) register accessor: 1588 Timer Increment Register\n\nYou can [`read`](crate::Reg::read) this register and get [`ti::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`ti::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ti`]
module"]
#[doc(alias = "TI")]
pub type Ti = crate::Reg<ti::TiSpec>;
#[doc = "1588 Timer Increment Register"]
pub mod ti;
#[doc = "EFTSL (r) register accessor: PTP Event Frame Transmitted Seconds Low Register\n\nYou can [`read`](crate::Reg::read) this register and get [`eftsl::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@eftsl`]
module"]
#[doc(alias = "EFTSL")]
pub type Eftsl = crate::Reg<eftsl::EftslSpec>;
#[doc = "PTP Event Frame Transmitted Seconds Low Register"]
pub mod eftsl;
#[doc = "EFTN (r) register accessor: PTP Event Frame Transmitted Nanoseconds\n\nYou can [`read`](crate::Reg::read) this register and get [`eftn::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@eftn`]
module"]
#[doc(alias = "EFTN")]
pub type Eftn = crate::Reg<eftn::EftnSpec>;
#[doc = "PTP Event Frame Transmitted Nanoseconds"]
pub mod eftn;
#[doc = "EFRSL (r) register accessor: PTP Event Frame Received Seconds Low Register\n\nYou can [`read`](crate::Reg::read) this register and get [`efrsl::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@efrsl`]
module"]
#[doc(alias = "EFRSL")]
pub type Efrsl = crate::Reg<efrsl::EfrslSpec>;
#[doc = "PTP Event Frame Received Seconds Low Register"]
pub mod efrsl;
#[doc = "EFRN (r) register accessor: PTP Event Frame Received Nanoseconds\n\nYou can [`read`](crate::Reg::read) this register and get [`efrn::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@efrn`]
module"]
#[doc(alias = "EFRN")]
pub type Efrn = crate::Reg<efrn::EfrnSpec>;
#[doc = "PTP Event Frame Received Nanoseconds"]
pub mod efrn;
#[doc = "PEFTSL (r) register accessor: PTP Peer Event Frame Transmitted Seconds Low Register\n\nYou can [`read`](crate::Reg::read) this register and get [`peftsl::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@peftsl`]
module"]
#[doc(alias = "PEFTSL")]
pub type Peftsl = crate::Reg<peftsl::PeftslSpec>;
#[doc = "PTP Peer Event Frame Transmitted Seconds Low Register"]
pub mod peftsl;
#[doc = "PEFTN (r) register accessor: PTP Peer Event Frame Transmitted Nanoseconds\n\nYou can [`read`](crate::Reg::read) this register and get [`peftn::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@peftn`]
module"]
#[doc(alias = "PEFTN")]
pub type Peftn = crate::Reg<peftn::PeftnSpec>;
#[doc = "PTP Peer Event Frame Transmitted Nanoseconds"]
pub mod peftn;
#[doc = "PEFRSL (r) register accessor: PTP Peer Event Frame Received Seconds Low Register\n\nYou can [`read`](crate::Reg::read) this register and get [`pefrsl::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pefrsl`]
module"]
#[doc(alias = "PEFRSL")]
pub type Pefrsl = crate::Reg<pefrsl::PefrslSpec>;
#[doc = "PTP Peer Event Frame Received Seconds Low Register"]
pub mod pefrsl;
#[doc = "PEFRN (r) register accessor: PTP Peer Event Frame Received Nanoseconds\n\nYou can [`read`](crate::Reg::read) this register and get [`pefrn::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@pefrn`]
module"]
#[doc(alias = "PEFRN")]
pub type Pefrn = crate::Reg<pefrn::PefrnSpec>;
#[doc = "PTP Peer Event Frame Received Nanoseconds"]
pub mod pefrn;
#[doc = "RLPITR (r) register accessor: Receive LPI transition Register\n\nYou can [`read`](crate::Reg::read) this register and get [`rlpitr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@rlpitr`]
module"]
#[doc(alias = "RLPITR")]
pub type Rlpitr = crate::Reg<rlpitr::RlpitrSpec>;
#[doc = "Receive LPI transition Register"]
pub mod rlpitr;
#[doc = "RLPITI (r) register accessor: Receive LPI Time Register\n\nYou can [`read`](crate::Reg::read) this register and get [`rlpiti::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@rlpiti`]
module"]
#[doc(alias = "RLPITI")]
pub type Rlpiti = crate::Reg<rlpiti::RlpitiSpec>;
#[doc = "Receive LPI Time Register"]
pub mod rlpiti;
#[doc = "TLPITR (r) register accessor: Receive LPI transition Register\n\nYou can [`read`](crate::Reg::read) this register and get [`tlpitr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tlpitr`]
module"]
#[doc(alias = "TLPITR")]
pub type Tlpitr = crate::Reg<tlpitr::TlpitrSpec>;
#[doc = "Receive LPI transition Register"]
pub mod tlpitr;
#[doc = "TLPITI (r) register accessor: Receive LPI Time Register\n\nYou can [`read`](crate::Reg::read) this register and get [`tlpiti::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tlpiti`]
module"]
#[doc(alias = "TLPITI")]
pub type Tlpiti = crate::Reg<tlpiti::TlpitiSpec>;
#[doc = "Receive LPI Time Register"]
pub mod tlpiti;