summaryrefslogtreecommitdiff
path: root/FreeRTOS/Demo/RISC-V_RV64_PolarFire_SoftConsole/polarfire_hal/platform/mpfs_hal/common/nwc/mss_ddr_sgmii_phy_defs.h
blob: 74a1239604057c4cbe16e4ae3eff875bea6c6412 (plain)
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
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
/*******************************************************************************
 * Copyright 2019-2021 Microchip FPGA Embedded Systems Solutions.
 *
 * SPDX-License-Identifier: MIT
 *
 * MPFS HAL Embedded Software
 *
 */

/*******************************************************************************
 * @file mss_ddr_sgmii_phy_defs.h
 * @author Microchip-FPGA Embedded Systems Solutions
 * @brief Register bit offsets and masks definitions for MPFS MSS DDR
 * This was generated directly from the RTL
 *
 */

#ifndef MSS_DDR_SGMII_PHY_DEFS_H_
#define MSS_DDR_SGMII_PHY_DEFS_H_


#include "mpfs_hal/mss_hal.h"


#ifdef __cplusplus
extern "C" {
#endif

#ifndef __I
#define __I  const volatile
#endif
#ifndef __IO
#define __IO volatile
#endif
#ifndef __O
#define __O volatile
#endif

/*----------------------------------------------------------------------------*/
/*----------------------------------- DDR -----------------------------------*/
/*----------------------------------------------------------------------------*/


/*============================== CFG_DDR_SGMII_PHY definitions ===========================*/

typedef enum {                                                         /*!< SOFT_RESET_DDR_PHY.PERIPH_DDR_PHY bitfield definition*/
    scb_periph_not_in_soft_reset_ddr_phy = 0,
    scb_periph_reset_ddr_phy = 1
} CFG_DDR_SGMII_PHY_SOFT_RESET_DDR_PHY_PERIPH_DDR_PHY_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_DDR_PHY.V_MAP_DDR_PHY bitfield definition*/
    scb_v_regs_not_in_soft_reset_ddr_phy = 0,
    scb_v_regs_reset_ddr_phy = 1
} CFG_DDR_SGMII_PHY_SOFT_RESET_DDR_PHY_V_MAP_DDR_PHY_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_DDR_PHY.NV_MAP_DDR_PHY bitfield definition*/
    scb_nv_regs_not_in_soft_reset_ddr_phy = 0,
    scb_nv_regs_reset_ddr_phy = 1
} CFG_DDR_SGMII_PHY_SOFT_RESET_DDR_PHY_NV_MAP_DDR_PHY_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_MAIN_PLL.BLOCKID_MAIN_PLL bitfield definition*/
    block_address_main_pll = 0
} CFG_DDR_SGMII_PHY_SOFT_RESET_MAIN_PLL_BLOCKID_MAIN_PLL_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_MAIN_PLL.PERIPH_MAIN_PLL bitfield definition*/
    scb_periph_not_in_soft_reset_main_pll = 0,
    scb_periph_reset_main_pll = 1
} CFG_DDR_SGMII_PHY_SOFT_RESET_MAIN_PLL_PERIPH_MAIN_PLL_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_MAIN_PLL.V_MAP_MAIN_PLL bitfield definition*/
    scb_v_regs_not_in_soft_reset_main_pll = 0,
    scb_v_regs_reset_main_pll = 1
} CFG_DDR_SGMII_PHY_SOFT_RESET_MAIN_PLL_V_MAP_MAIN_PLL_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_MAIN_PLL.NV_MAP_MAIN_PLL bitfield definition*/
    scb_nv_regs_not_in_soft_reset_main_pll = 0,
    scb_nv_regs_reset_main_pll = 1
} CFG_DDR_SGMII_PHY_SOFT_RESET_MAIN_PLL_NV_MAP_MAIN_PLL_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_IOSCB_PLL.BLOCKID_IOSCB_PLL bitfield definition*/
    block_address_ioscb_pll = 0
} CFG_DDR_SGMII_PHY_SOFT_RESET_IOSCB_PLL_BLOCKID_IOSCB_PLL_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_IOSCB_PLL.PERIPH_IOSCB_PLL bitfield definition*/
    scb_periph_not_in_soft_reset_ioscb_pll = 0,
    scb_periph_reset_ioscb_pll = 1
} CFG_DDR_SGMII_PHY_SOFT_RESET_IOSCB_PLL_PERIPH_IOSCB_PLL_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_IOSCB_PLL.V_MAP_IOSCB_PLL bitfield definition*/
    scb_v_regs_not_in_soft_reset_ioscb_pll = 0,
    scb_v_regs_reset_ioscb_pll = 1
} CFG_DDR_SGMII_PHY_SOFT_RESET_IOSCB_PLL_V_MAP_IOSCB_PLL_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_IOSCB_PLL.NV_MAP_IOSCB_PLL bitfield definition*/
    scb_nv_regs_not_in_soft_reset_ioscb_pll = 0,
    scb_nv_regs_reset_ioscb_pll = 1
} CFG_DDR_SGMII_PHY_SOFT_RESET_IOSCB_PLL_NV_MAP_IOSCB_PLL_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_BANK_CTRL.BLOCKID_BANK_CTRL bitfield definition*/
    block_address_bank_ctrl = 0
} CFG_DDR_SGMII_PHY_SOFT_RESET_BANK_CTRL_BLOCKID_BANK_CTRL_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_BANK_CTRL.PERIPH_BANK_CTRL bitfield definition*/
    scb_periph_not_in_soft_reset_bank_ctrl = 0,
    scb_periph_reset_bank_ctrl = 1
} CFG_DDR_SGMII_PHY_SOFT_RESET_BANK_CTRL_PERIPH_BANK_CTRL_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_BANK_CTRL.V_MAP_BANK_CTRL bitfield definition*/
    scb_v_regs_not_in_soft_reset_bank_ctrl = 0,
    scb_v_regs_reset_bank_ctrl = 1
} CFG_DDR_SGMII_PHY_SOFT_RESET_BANK_CTRL_V_MAP_BANK_CTRL_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_BANK_CTRL.NV_MAP_BANK_CTRL bitfield definition*/
    scb_nv_regs_not_in_soft_reset_bank_ctrl = 0,
    scb_nv_regs_reset_bank_ctrl = 1
} CFG_DDR_SGMII_PHY_SOFT_RESET_BANK_CTRL_NV_MAP_BANK_CTRL_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_IOCALIB.BLOCKID_IOCALIB bitfield definition*/
    block_address_iocalib = 0
} CFG_DDR_SGMII_PHY_SOFT_RESET_IOCALIB_BLOCKID_IOCALIB_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_IOCALIB.PERIPH_IOCALIB bitfield definition*/
    scb_periph_not_in_soft_reset_iocalib = 0,
    scb_periph_reset_iocalib = 1
} CFG_DDR_SGMII_PHY_SOFT_RESET_IOCALIB_PERIPH_IOCALIB_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_IOCALIB.V_MAP_IOCALIB bitfield definition*/
    scb_v_regs_not_in_soft_reset_iocalib = 0,
    scb_v_regs_reset_iocalib = 1
} CFG_DDR_SGMII_PHY_SOFT_RESET_IOCALIB_V_MAP_IOCALIB_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_IOCALIB.NV_MAP_IOCALIB bitfield definition*/
    scb_nv_regs_not_in_soft_reset_iocalib = 0,
    scb_nv_regs_reset_iocalib = 1
} CFG_DDR_SGMII_PHY_SOFT_RESET_IOCALIB_NV_MAP_IOCALIB_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_CFM.BLOCKID_CFM bitfield definition*/
    block_address_cfm = 0
} CFG_DDR_SGMII_PHY_SOFT_RESET_CFM_BLOCKID_CFM_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_CFM.PERIPH_CFM bitfield definition*/
    scb_periph_not_in_soft_reset_cfm = 0,
    scb_periph_reset_cfm = 1
} CFG_DDR_SGMII_PHY_SOFT_RESET_CFM_PERIPH_CFM_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_CFM.V_MAP_CFM bitfield definition*/
    scb_v_regs_not_in_soft_reset_cfm = 0,
    scb_v_regs_reset_cfm = 1
} CFG_DDR_SGMII_PHY_SOFT_RESET_CFM_V_MAP_CFM_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_CFM.NV_MAP_CFM bitfield definition*/
    scb_nv_regs_not_in_soft_reset_cfm = 0,
    scb_nv_regs_reset_cfm = 1
} CFG_DDR_SGMII_PHY_SOFT_RESET_CFM_NV_MAP_CFM_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_DECODER_DRIVER.BLOCKID_DECODER_DRIVER bitfield definition*/
    block_address_decoder_driver = 0
} CFG_DDR_SGMII_PHY_SOFT_RESET_DECODER_DRIVER_BLOCKID_DECODER_DRIVER_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_DECODER_DRIVER.PERIPH_DECODER_DRIVER bitfield definition*/
    scb_periph_not_in_soft_reset_decoder_driver = 0,
    scb_periph_reset_decoder_driver = 1
} CFG_DDR_SGMII_PHY_SOFT_RESET_DECODER_DRIVER_PERIPH_DECODER_DRIVER_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_DECODER_DRIVER.V_MAP_DECODER_DRIVER bitfield definition*/
    scb_v_regs_not_in_soft_reset_decoder_driver = 0,
    scb_v_regs_reset_decoder_driver = 1
} CFG_DDR_SGMII_PHY_SOFT_RESET_DECODER_DRIVER_V_MAP_DECODER_DRIVER_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_DECODER_DRIVER.NV_MAP_DECODER_DRIVER bitfield definition*/
    scb_nv_regs_not_in_soft_reset_decoder_driver = 0,
    scb_nv_regs_reset_decoder_driver = 1
} CFG_DDR_SGMII_PHY_SOFT_RESET_DECODER_DRIVER_NV_MAP_DECODER_DRIVER_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_DECODER_ODT.BLOCKID_DECODER_ODT bitfield definition*/
    block_address_decoder_odt = 0
} CFG_DDR_SGMII_PHY_SOFT_RESET_DECODER_ODT_BLOCKID_DECODER_ODT_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_DECODER_ODT.PERIPH_DECODER_ODT bitfield definition*/
    scb_periph_not_in_soft_reset_decoder_odt = 0,
    scb_periph_reset_decoder_odt = 1
} CFG_DDR_SGMII_PHY_SOFT_RESET_DECODER_ODT_PERIPH_DECODER_ODT_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_DECODER_ODT.V_MAP_DECODER_ODT bitfield definition*/
    scb_v_regs_not_in_soft_reset_decoder_odt = 0,
    scb_v_regs_reset_decoder_odt = 1
} CFG_DDR_SGMII_PHY_SOFT_RESET_DECODER_ODT_V_MAP_DECODER_ODT_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_DECODER_ODT.NV_MAP_DECODER_ODT bitfield definition*/
    scb_nv_regs_not_in_soft_reset_decoder_odt = 0,
    scb_nv_regs_reset_decoder_odt = 1
} CFG_DDR_SGMII_PHY_SOFT_RESET_DECODER_ODT_NV_MAP_DECODER_ODT_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_DECODER_IO.BLOCKID_DECODER_IO bitfield definition*/
    block_address_decoder_io = 0
} CFG_DDR_SGMII_PHY_SOFT_RESET_DECODER_IO_BLOCKID_DECODER_IO_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_DECODER_IO.PERIPH_DECODER_IO bitfield definition*/
    scb_periph_not_in_soft_reset_decoder_io = 0,
    scb_periph_reset_decoder_io = 1
} CFG_DDR_SGMII_PHY_SOFT_RESET_DECODER_IO_PERIPH_DECODER_IO_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_DECODER_IO.V_MAP_DECODER_IO bitfield definition*/
    scb_v_regs_not_in_soft_reset_decoder_io = 0,
    scb_v_regs_reset_decoder_io = 1
} CFG_DDR_SGMII_PHY_SOFT_RESET_DECODER_IO_V_MAP_DECODER_IO_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_DECODER_IO.NV_MAP_DECODER_IO bitfield definition*/
    scb_nv_regs_not_in_soft_reset_decoder_io = 0,
    scb_nv_regs_reset_decoder_io = 1
} CFG_DDR_SGMII_PHY_SOFT_RESET_DECODER_IO_NV_MAP_DECODER_IO_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_TIP.PERIPH_TIP bitfield definition*/
    scb_periph_not_in_soft_reset_ddr_tip = 0,
    scb_periph_reset_ddr_tip = 1
} CFG_DDR_SGMII_PHY_SOFT_RESET_TIP_PERIPH_TIP_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_TIP.V_MAP_TIP bitfield definition*/
    scb_v_regs_not_in_soft_reset_ddr_tip = 0,
    scb_v_regs_reset_ddr_tip = 1
} CFG_DDR_SGMII_PHY_SOFT_RESET_TIP_V_MAP_TIP_TypeDef;

typedef enum {                                                         /*!< SOFT_RESET_TIP.NV_MAP_TIP bitfield definition*/
    scb_nv_regs_not_in_soft_reset_ddr_tip = 0,
    scb_nv_regs_reset_ddr_tip = 1
} CFG_DDR_SGMII_PHY_SOFT_RESET_TIP_NV_MAP_TIP_TypeDef;

typedef union{                                                         /*!< SOFT_RESET_DDR_PHY register definition*/
  __IO  uint32_t                       SOFT_RESET_DDR_PHY;
  struct
  {
    __O   CFG_DDR_SGMII_PHY_SOFT_RESET_DDR_PHY_NV_MAP_DDR_PHY_TypeDef NV_MAP_DDR_PHY       :1;
    __O   CFG_DDR_SGMII_PHY_SOFT_RESET_DDR_PHY_V_MAP_DDR_PHY_TypeDef V_MAP_DDR_PHY        :1;
    __I   uint32_t                       reserved_01          :6;
    __O   CFG_DDR_SGMII_PHY_SOFT_RESET_DDR_PHY_PERIPH_DDR_PHY_TypeDef PERIPH_DDR_PHY       :1;
    __I   uint32_t                       reserved_02          :7;
    __I   uint32_t                       BLOCKID_DDR_PHY      :16;
  } bitfield;
} CFG_DDR_SGMII_PHY_SOFT_RESET_DDR_PHY_TypeDef;

typedef union{                                                         /*!< DDRPHY_MODE register definition*/
  __IO  uint32_t                       DDRPHY_MODE;
  struct
  {
    __IO  uint32_t                       DDRMODE              :3;
    __IO  uint32_t                       ECC                  :1;
    __IO  uint32_t                       CRC                  :1;
    __IO  uint32_t                       Bus_width            :3;
    __IO  uint32_t                       DMI_DBI              :1;
    __IO  uint32_t                       DQ_drive             :2;
    __IO  uint32_t                       DQS_drive            :2;
    __IO  uint32_t                       ADD_CMD_drive        :2;
    __IO  uint32_t                       Clock_out_drive      :2;
    __IO  uint32_t                       DQ_termination       :2;
    __IO  uint32_t                       DQS_termination      :2;
    __IO  uint32_t                       ADD_CMD_input_pin_termination :2;
    __IO  uint32_t                       preset_odt_clk       :2;
    __IO  uint32_t                       Power_down           :1;
    __IO  uint32_t                       rank                 :1;
    __IO  uint32_t                       Command_Address_Pipe :2;
    __I   uint32_t                       Reserved             :3;
  } bitfield;
} CFG_DDR_SGMII_PHY_DDRPHY_MODE_TypeDef;

typedef union{                                                         /*!< DDRPHY_STARTUP register definition*/
  __IO  uint32_t                       DDRPHY_STARTUP;
  struct
  {
    __IO  uint32_t                       ADD_CMD_Lockdn       :1;
    __IO  uint32_t                       DATA_Lockdn          :1;
    __IO  uint32_t                       PERSIST_ADD_CMD      :1;
    __IO  uint32_t                       Persist_CLKOUT       :1;
    __IO  uint32_t                       Persist_DATA         :1;
    __I   uint32_t                       reserved             :3;
    __IO  uint32_t                       DYNEN_SCB_PLL0       :1;
    __IO  uint32_t                       DYNEN_SCB_PLL1       :1;
    __IO  uint32_t                       DYNEN_SCB_CFM        :1;
    __IO  uint32_t                       DYNEN_SCB_IO_CALIB   :1;
    __IO  uint32_t                       DYNEN_SCB_BANKCNTL   :1;
    __I   uint32_t                       reserved2            :3;
    __IO  uint32_t                       DYNEN_APB_PLL0       :1;
    __IO  uint32_t                       DYNEN_APB_PLL1       :1;
    __IO  uint32_t                       DYNEN_APB_CFM        :1;
    __IO  uint32_t                       DYNEN_APB_IO_CALIB   :1;
    __IO  uint32_t                       DYNEN_APB_BANKCNTL   :1;
    __IO  uint32_t                       DYNEN_APB_DECODER_PRESETS :1;
    __IO  uint32_t                       reserved3            :10;
  } bitfield;
} CFG_DDR_SGMII_PHY_DDRPHY_STARTUP_TypeDef;

typedef union{                                                         /*!< SOFT_RESET_MAIN_PLL register definition*/
  __IO  uint32_t                       SOFT_RESET_MAIN_PLL;
  struct
  {
    __O   CFG_DDR_SGMII_PHY_SOFT_RESET_MAIN_PLL_NV_MAP_MAIN_PLL_TypeDef NV_MAP_MAIN_PLL      :1;
    __O   CFG_DDR_SGMII_PHY_SOFT_RESET_MAIN_PLL_V_MAP_MAIN_PLL_TypeDef V_MAP_MAIN_PLL       :1;
    __I   uint32_t                       reserved_01          :6;
    __O   CFG_DDR_SGMII_PHY_SOFT_RESET_MAIN_PLL_PERIPH_MAIN_PLL_TypeDef PERIPH_MAIN_PLL      :1;
    __I   uint32_t                       reserved_02          :7;
    __I   CFG_DDR_SGMII_PHY_SOFT_RESET_MAIN_PLL_BLOCKID_MAIN_PLL_TypeDef BLOCKID_MAIN_PLL     :16;
  } bitfield;
} CFG_DDR_SGMII_PHY_SOFT_RESET_MAIN_PLL_TypeDef;

typedef union{                                                         /*!< PLL_CTRL_MAIN register definition*/
  __IO  uint32_t                       PLL_CTRL_MAIN;
  struct
  {
    __IO  uint32_t                       REG_POWERDOWN_B      :1;
    __IO  uint32_t                       REG_RFDIV_EN         :1;
    __IO  uint32_t                       REG_DIVQ0_EN         :1;
    __IO  uint32_t                       REG_DIVQ1_EN         :1;
    __IO  uint32_t                       REG_DIVQ2_EN         :1;
    __IO  uint32_t                       REG_DIVQ3_EN         :1;
    __IO  uint32_t                       REG_RFCLK_SEL        :1;
    __I   uint32_t                       RESETONLOCK          :1;
    __I   uint32_t                       BYPCK_SEL            :4;
    __I   uint32_t                       REG_BYPASS_GO_B      :1;
    __I   uint32_t                       reserve10            :3;
    __I   uint32_t                       REG_BYPASSPRE        :4;
    __I   uint32_t                       REG_BYPASSPOST       :4;
    __IO  uint32_t                       LP_REQUIRES_LOCK     :1;
    __I   uint32_t                       LOCK                 :1;
    __I   uint32_t                       LOCK_INT_EN          :1;
    __I   uint32_t                       UNLOCK_INT_EN        :1;
    __I   uint32_t                       LOCK_INT             :1;
    __I   uint32_t                       UNLOCK_INT           :1;
    __I   uint32_t                       reserve11            :1;
    __I   uint32_t                       LOCK_B               :1;
  } bitfield;
} CFG_DDR_SGMII_PHY_PLL_CTRL_MAIN_TypeDef;

typedef union{                                                         /*!< PLL_REF_FB_MAIN register definition*/
  __IO  uint32_t                       PLL_REF_FB_MAIN;
  struct
  {
    __I   uint32_t                       FSE_B                :1;
    __I   uint32_t                       FBCK_SEL             :2;
    __I   uint32_t                       FOUTFB_SELMUX_EN     :1;
    __I   uint32_t                       reserve12            :4;
    __IO  uint32_t                       RFDIV                :6;
    __I   uint32_t                       reserve13            :2;
    __I   uint32_t                       reserve14            :12;
    __I   uint32_t                       reserve15            :4;
  } bitfield;
} CFG_DDR_SGMII_PHY_PLL_REF_FB_MAIN_TypeDef;

typedef union{                                                         /*!< PLL_FRACN_MAIN register definition*/
  __IO   uint32_t                       PLL_FRACN_MAIN;
  struct
  {
    __I   uint32_t                       FRACN_EN             :1;
    __I   uint32_t                       FRACN_DAC_EN         :1;
    __I   uint32_t                       reserve16            :6;
    __I   uint32_t                       reserve17            :24;
  } bitfield;
} CFG_DDR_SGMII_PHY_PLL_FRACN_MAIN_TypeDef;

typedef union{                                                         /*!< PLL_DIV_0_1_MAIN register definition*/
  __IO  uint32_t                       PLL_DIV_0_1_MAIN;
  struct
  {
    __I   uint32_t                       VCO0PH_SEL           :3;
    __I   uint32_t                       DIV0_START           :3;
    __I   uint32_t                       reserve18            :2;
    __IO  uint32_t                       POST0DIV             :7;
    __I   uint32_t                       reserve19            :1;
    __I   uint32_t                       VCO1PH_SEL           :3;
    __I   uint32_t                       DIV1_START           :3;
    __I   uint32_t                       reserve20            :2;
    __IO  uint32_t                       POST1DIV             :7;
    __I   uint32_t                       reserve21            :1;
  } bitfield;
} CFG_DDR_SGMII_PHY_PLL_DIV_0_1_MAIN_TypeDef;

typedef union{                                                         /*!< PLL_DIV_2_3_MAIN register definition*/
  __IO  uint32_t                       PLL_DIV_2_3_MAIN;
  struct
  {
    __I   uint32_t                       VCO2PH_SEL           :3;
    __I   uint32_t                       DIV2_START           :3;
    __I   uint32_t                       reserve22            :2;
    __IO  uint32_t                       POST2DIV             :7;
    __I   uint32_t                       reserve23            :1;
    __I   uint32_t                       VCO3PH_SEL           :3;
    __I   uint32_t                       DIV3_START           :3;
    __I   uint32_t                       reserve24            :2;
    __IO  uint32_t                       POST3DIV             :7;
    __I   uint32_t                       CKPOST3_SEL          :1;
  } bitfield;
} CFG_DDR_SGMII_PHY_PLL_DIV_2_3_MAIN_TypeDef;

typedef union{                                                         /*!< PLL_CTRL2_MAIN register definition*/
  __IO  uint32_t                       PLL_CTRL2_MAIN;
  struct
  {
    __IO  uint32_t                       BWI                  :2;
    __IO  uint32_t                       BWP                  :2;
    __I   uint32_t                       IREF_EN              :1;
    __I   uint32_t                       IREF_TOGGLE          :1;
    __I   uint32_t                       reserve25            :3;
    __I   uint32_t                       LOCKCNT              :4;
    __I   uint32_t                       reserve26            :4;
    __I   uint32_t                       ATEST_EN             :1;
    __I   uint32_t                       ATEST_SEL            :3;
    __I   uint32_t                       reserve27            :11;
  } bitfield;
} CFG_DDR_SGMII_PHY_PLL_CTRL2_MAIN_TypeDef;

typedef union{                                                         /*!< PLL_CAL_MAIN register definition*/
  __I   uint32_t                       PLL_CAL_MAIN;
  struct
  {
    __I   uint32_t                       DSKEWCALCNT          :3;
    __I   uint32_t                       DSKEWCAL_EN          :1;
    __I   uint32_t                       DSKEWCALBYP          :1;
    __I   uint32_t                       reserve28            :3;
    __I   uint32_t                       DSKEWCALIN           :7;
    __I   uint32_t                       reserve29            :1;
    __I   uint32_t                       DSKEWCALOUT          :7;
    __I   uint32_t                       reserve30            :9;
  } bitfield;
} CFG_DDR_SGMII_PHY_PLL_CAL_MAIN_TypeDef;

typedef union{                                                         /*!< PLL_PHADJ_MAIN register definition*/
  __IO  uint32_t                       PLL_PHADJ_MAIN;
  struct
  {
    __I   uint32_t                       PLL_REG_SYNCREFDIV_EN :1;
    __I   uint32_t                       PLL_REG_ENABLE_SYNCREFDIV :1;
    __IO  uint32_t                       REG_OUT0_PHSINIT     :3;
    __IO  uint32_t                       REG_OUT1_PHSINIT     :3;
    __IO  uint32_t                       REG_OUT2_PHSINIT     :3;
    __IO  uint32_t                       REG_OUT3_PHSINIT     :3;
    __IO  uint32_t                       REG_LOADPHS_B        :1;
    __I   uint32_t                       reserve31            :17;
  } bitfield;
} CFG_DDR_SGMII_PHY_PLL_PHADJ_MAIN_TypeDef;

typedef union{                                                         /*!< SSCG_REG_0_MAIN register definition*/
  __IO   uint32_t                       SSCG_REG_0_MAIN;				/* todo: verify should be r/w, it is not in source file from Duolog */
  struct
  {
    __I   uint32_t                       DIVVAL               :6;
    __I   uint32_t                       FRACIN               :24;
    __I   uint32_t                       reserve00            :2;
  } bitfield;
} CFG_DDR_SGMII_PHY_SSCG_REG_0_MAIN_TypeDef;

typedef union{                                                         /*!< SSCG_REG_1_MAIN register definition*/
  __I   uint32_t                       SSCG_REG_1_MAIN;
  struct
  {
    __I   uint32_t                       DOWNSPREAD           :1;
    __I   uint32_t                       SSMD                 :5;
    __I   uint32_t                       FRACMOD              :24;
    __I   uint32_t                       reserve01            :2;
  } bitfield;
} CFG_DDR_SGMII_PHY_SSCG_REG_1_MAIN_TypeDef;

typedef union{                                                         /*!< SSCG_REG_2_MAIN register definition*/
  __IO  uint32_t                       SSCG_REG_2_MAIN;
  struct
  {
    __IO  uint32_t                       INTIN                :12;
    __I   uint32_t                       INTMOD               :12;
    __I   uint32_t                       reserve02            :8;
  } bitfield;
} CFG_DDR_SGMII_PHY_SSCG_REG_2_MAIN_TypeDef;

typedef union{                                                         /*!< SSCG_REG_3_MAIN register definition*/
  __IO   uint32_t                       SSCG_REG_3_MAIN;  /* todo: verify if should be __IO */
  struct
  {
    __I   uint32_t                       SSE_B                :1;
    __I   uint32_t                       SEL_EXTWAVE          :2;
    __I   uint32_t                       EXT_MAXADDR          :8;
    __I   uint32_t                       TBLADDR              :8;
    __I   uint32_t                       RANDOM_FILTER        :1;
    __I   uint32_t                       RANDOM_SEL           :2;
    __I   uint32_t                       reserve03            :1;
    __I   uint32_t                       reserve04            :9;
  } bitfield;
} CFG_DDR_SGMII_PHY_SSCG_REG_3_MAIN_TypeDef;

typedef union{                                                         /*!< RPC_RESET_MAIN_PLL register definition*/
  __IO  uint32_t                       RPC_RESET_MAIN_PLL;
  struct
  {
    __IO  uint32_t                       soft_reset_periph_MAIN_PLL :1;
    __I   uint32_t                       Reserved             :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_RPC_RESET_MAIN_PLL_TypeDef;

typedef union{                                                         /*!< SOFT_RESET_IOSCB_PLL register definition*/
  __IO  uint32_t                       SOFT_RESET_IOSCB_PLL;
  struct
  {
    __O   CFG_DDR_SGMII_PHY_SOFT_RESET_IOSCB_PLL_NV_MAP_IOSCB_PLL_TypeDef NV_MAP_IOSCB_PLL     :1;
    __O   CFG_DDR_SGMII_PHY_SOFT_RESET_IOSCB_PLL_V_MAP_IOSCB_PLL_TypeDef V_MAP_IOSCB_PLL      :1;
    __I   uint32_t                       reserved_01          :6;
    __O   CFG_DDR_SGMII_PHY_SOFT_RESET_IOSCB_PLL_PERIPH_IOSCB_PLL_TypeDef PERIPH_IOSCB_PLL     :1;
    __I   uint32_t                       reserved_02          :7;
    __I   CFG_DDR_SGMII_PHY_SOFT_RESET_IOSCB_PLL_BLOCKID_IOSCB_PLL_TypeDef BLOCKID_IOSCB_PLL    :16;
  } bitfield;
} CFG_DDR_SGMII_PHY_SOFT_RESET_IOSCB_PLL_TypeDef;

typedef union{                                                         /*!< PLL_CTRL_IOSCB register definition*/
  __IO  uint32_t                       PLL_CTRL_IOSCB;
  struct
  {
    __IO  uint32_t                       REG_POWERDOWN_B      :1;
    __IO  uint32_t                       REG_RFDIV_EN         :1;
    __IO  uint32_t                       REG_DIVQ0_EN         :1;
    __IO  uint32_t                       REG_DIVQ1_EN         :1;
    __IO  uint32_t                       REG_DIVQ2_EN         :1;
    __IO  uint32_t                       REG_DIVQ3_EN         :1;
    __IO  uint32_t                       REG_RFCLK_SEL        :1;
    __I   uint32_t                       RESETONLOCK          :1;
    __I   uint32_t                       BYPCK_SEL            :4;
    __I   uint32_t                       REG_BYPASS_GO_B      :1;
    __I   uint32_t                       reserve10            :3;
    __I   uint32_t                       REG_BYPASSPRE        :4;
    __I   uint32_t                       REG_BYPASSPOST       :4;
    __IO  uint32_t                       LP_REQUIRES_LOCK     :1;
    __I   uint32_t                       LOCK                 :1;
    __I   uint32_t                       LOCK_INT_EN          :1;
    __I   uint32_t                       UNLOCK_INT_EN        :1;
    __I   uint32_t                       LOCK_INT             :1;
    __I   uint32_t                       UNLOCK_INT           :1;
    __I   uint32_t                       reserve11            :1;
    __I   uint32_t                       LOCK_B               :1;
  } bitfield;
} CFG_DDR_SGMII_PHY_PLL_CTRL_IOSCB_TypeDef;

typedef union{                                                         /*!< PLL_REF_FB_IOSCB register definition*/
  __IO  uint32_t                       PLL_REF_FB_IOSCB;
  struct
  {
    __I   uint32_t                       FSE_B                :1;
    __I   uint32_t                       FBCK_SEL             :2;
    __I   uint32_t                       FOUTFB_SELMUX_EN     :1;
    __I   uint32_t                       reserve12            :4;
    __IO  uint32_t                       RFDIV                :6;
    __I   uint32_t                       reserve13            :2;
    __I   uint32_t                       reserve14            :12;
    __I   uint32_t                       reserve15            :4;
  } bitfield;
} CFG_DDR_SGMII_PHY_PLL_REF_FB_IOSCB_TypeDef;

typedef union{                                                         /*!< PLL_FRACN_IOSCB register definition*/
  __I   uint32_t                       PLL_FRACN_IOSCB;
  struct
  {
    __I   uint32_t                       FRACN_EN             :1;
    __I   uint32_t                       FRACN_DAC_EN         :1;
    __I   uint32_t                       reserve16            :6;
    __I   uint32_t                       reserve17            :24;
  } bitfield;
} CFG_DDR_SGMII_PHY_PLL_FRACN_IOSCB_TypeDef;

typedef union{                                                         /*!< PLL_DIV_0_1_IOSCB register definition*/
  __IO  uint32_t                       PLL_DIV_0_1_IOSCB;
  struct
  {
    __I   uint32_t                       VCO0PH_SEL           :3;
    __I   uint32_t                       DIV0_START           :3;
    __I   uint32_t                       reserve18            :2;
    __IO  uint32_t                       POST0DIV             :7;
    __I   uint32_t                       reserve19            :1;
    __I   uint32_t                       VCO1PH_SEL           :3;
    __I   uint32_t                       DIV1_START           :3;
    __I   uint32_t                       reserve20            :2;
    __IO  uint32_t                       POST1DIV             :7;
    __I   uint32_t                       reserve21            :1;
  } bitfield;
} CFG_DDR_SGMII_PHY_PLL_DIV_0_1_IOSCB_TypeDef;

typedef union{                                                         /*!< PLL_DIV_2_3_IOSCB register definition*/
  __IO  uint32_t                       PLL_DIV_2_3_IOSCB;
  struct
  {
    __I   uint32_t                       VCO2PH_SEL           :3;
    __I   uint32_t                       DIV2_START           :3;
    __I   uint32_t                       reserve22            :2;
    __IO  uint32_t                       POST2DIV             :7;
    __I   uint32_t                       reserve23            :1;
    __I   uint32_t                       VCO3PH_SEL           :3;
    __I   uint32_t                       DIV3_START           :3;
    __I   uint32_t                       reserve24            :2;
    __IO  uint32_t                       POST3DIV             :7;
    __I   uint32_t                       CKPOST3_SEL          :1;
  } bitfield;
} CFG_DDR_SGMII_PHY_PLL_DIV_2_3_IOSCB_TypeDef;

typedef union{                                                         /*!< PLL_CTRL2_IOSCB register definition*/
  __IO  uint32_t                       PLL_CTRL2_IOSCB;
  struct
  {
    __IO  uint32_t                       BWI                  :2;
    __IO  uint32_t                       BWP                  :2;
    __I   uint32_t                       IREF_EN              :1;
    __I   uint32_t                       IREF_TOGGLE          :1;
    __I   uint32_t                       reserve25            :3;
    __I   uint32_t                       LOCKCNT              :4;
    __I   uint32_t                       reserve26            :4;
    __I   uint32_t                       ATEST_EN             :1;
    __I   uint32_t                       ATEST_SEL            :3;
    __I   uint32_t                       reserve27            :11;
  } bitfield;
} CFG_DDR_SGMII_PHY_PLL_CTRL2_IOSCB_TypeDef;

typedef union{                                                         /*!< PLL_CAL_IOSCB register definition*/
  __I   uint32_t                       PLL_CAL_IOSCB;
  struct
  {
    __I   uint32_t                       DSKEWCALCNT          :3;
    __I   uint32_t                       DSKEWCAL_EN          :1;
    __I   uint32_t                       DSKEWCALBYP          :1;
    __I   uint32_t                       reserve28            :3;
    __I   uint32_t                       DSKEWCALIN           :7;
    __I   uint32_t                       reserve29            :1;
    __I   uint32_t                       DSKEWCALOUT          :7;
    __I   uint32_t                       reserve30            :9;
  } bitfield;
} CFG_DDR_SGMII_PHY_PLL_CAL_IOSCB_TypeDef;

typedef union{                                                         /*!< PLL_PHADJ_IOSCB register definition*/
  __IO  uint32_t                       PLL_PHADJ_IOSCB;
  struct
  {
    __I   uint32_t                       PLL_REG_SYNCREFDIV_EN :1;
    __I   uint32_t                       PLL_REG_ENABLE_SYNCREFDIV :1;
    __IO  uint32_t                       REG_OUT0_PHSINIT     :3;
    __IO  uint32_t                       REG_OUT1_PHSINIT     :3;
    __IO  uint32_t                       REG_OUT2_PHSINIT     :3;
    __IO  uint32_t                       REG_OUT3_PHSINIT     :3;
    __IO  uint32_t                       REG_LOADPHS_B        :1;
    __I   uint32_t                       reserve31            :17;
  } bitfield;
} CFG_DDR_SGMII_PHY_PLL_PHADJ_IOSCB_TypeDef;

typedef union{                                                         /*!< SSCG_REG_0_IOSCB register definition*/
  __I   uint32_t                       SSCG_REG_0_IOSCB;
  struct
  {
    __I   uint32_t                       DIVVAL               :6;
    __I   uint32_t                       FRACIN               :24;
    __I   uint32_t                       reserve00            :2;
  } bitfield;
} CFG_DDR_SGMII_PHY_SSCG_REG_0_IOSCB_TypeDef;

typedef union{                                                         /*!< SSCG_REG_1_IOSCB register definition*/
  __I   uint32_t                       SSCG_REG_1_IOSCB;
  struct
  {
    __I   uint32_t                       DOWNSPREAD           :1;
    __I   uint32_t                       SSMD                 :5;
    __I   uint32_t                       FRACMOD              :24;
    __I   uint32_t                       reserve01            :2;
  } bitfield;
} CFG_DDR_SGMII_PHY_SSCG_REG_1_IOSCB_TypeDef;

typedef union{                                                         /*!< SSCG_REG_2_IOSCB register definition*/
  __IO  uint32_t                       SSCG_REG_2_IOSCB;
  struct
  {
    __IO  uint32_t                       INTIN                :12;
    __I   uint32_t                       INTMOD               :12;
    __I   uint32_t                       reserve02            :8;
  } bitfield;
} CFG_DDR_SGMII_PHY_SSCG_REG_2_IOSCB_TypeDef;

typedef union{                                                         /*!< SSCG_REG_3_IOSCB register definition*/
  __I   uint32_t                       SSCG_REG_3_IOSCB;
  struct
  {
    __I   uint32_t                       SSE_B                :1;
    __I   uint32_t                       SEL_EXTWAVE          :2;
    __I   uint32_t                       EXT_MAXADDR          :8;
    __I   uint32_t                       TBLADDR              :8;
    __I   uint32_t                       RANDOM_FILTER        :1;
    __I   uint32_t                       RANDOM_SEL           :2;
    __I   uint32_t                       reserve03            :1;
    __I   uint32_t                       reserve04            :9;
  } bitfield;
} CFG_DDR_SGMII_PHY_SSCG_REG_3_IOSCB_TypeDef;

typedef union{                                                         /*!< RPC_RESET_IOSCB register definition*/
  __IO  uint32_t                       RPC_RESET_IOSCB;
  struct
  {
    __IO  uint32_t                       soft_reset_periph_IOSCB :1;
    __I   uint32_t                       Reserved             :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_RPC_RESET_IOSCB_TypeDef;

typedef union{                                                         /*!< SOFT_RESET_BANK_CTRL register definition*/
  __IO  uint32_t                       SOFT_RESET_BANK_CTRL;
  struct
  {
    __O   CFG_DDR_SGMII_PHY_SOFT_RESET_BANK_CTRL_NV_MAP_BANK_CTRL_TypeDef NV_MAP_BANK_CTRL     :1;
    __O   CFG_DDR_SGMII_PHY_SOFT_RESET_BANK_CTRL_V_MAP_BANK_CTRL_TypeDef V_MAP_BANK_CTRL      :1;
    __I   uint32_t                       reserved_01          :6;
    __O   CFG_DDR_SGMII_PHY_SOFT_RESET_BANK_CTRL_PERIPH_BANK_CTRL_TypeDef PERIPH_BANK_CTRL     :1;
    __I   uint32_t                       reserved_02          :7;
    __I   CFG_DDR_SGMII_PHY_SOFT_RESET_BANK_CTRL_BLOCKID_BANK_CTRL_TypeDef BLOCKID_BANK_CTRL    :16;
  } bitfield;
} CFG_DDR_SGMII_PHY_SOFT_RESET_BANK_CTRL_TypeDef;

typedef union{                                                         /*!< DPC_BITS register definition*/
  __IO  uint32_t                       DPC_BITS;
  struct
  {
    __IO  uint32_t                       dpc_vs               :4;
    __IO  uint32_t                       dpc_vrgen_h          :6;
    __IO  uint32_t                       dpc_vrgen_en_h       :1;
    __IO  uint32_t                       dpc_move_en_h        :1;
    __IO  uint32_t                       dpc_vrgen_v          :6;
    __IO  uint32_t                       dpc_vrgen_en_v       :1;
    __IO  uint32_t                       dpc_move_en_v        :1;
    __I   uint32_t                       reserve01            :12;
  } bitfield;
} CFG_DDR_SGMII_PHY_DPC_BITS_TypeDef;

typedef union{                                                         /*!< BANK_STATUS register definition*/
  __I   uint32_t                       BANK_STATUS;
  struct
  {
    __I   uint32_t                       sro_calib_status_b   :1;
    __I   uint32_t                       sro_ioen_bnk_b       :1;
    __I   uint32_t                       reserved_01          :30;
  } bitfield;
} CFG_DDR_SGMII_PHY_BANK_STATUS_TypeDef;

typedef union{                                                         /*!< RPC_RESET_BANK_CTRL register definition*/
  __IO  uint32_t                       RPC_RESET_BANK_CTRL;
  struct
  {
    __IO  uint32_t                       soft_reset_periph_BANK_CTRL :1;
    __I   uint32_t                       Reserved             :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_RPC_RESET_BANK_CTRL_TypeDef;

typedef union{                                                         /*!< SOFT_RESET_IOCALIB register definition*/
  __IO  uint32_t                       SOFT_RESET_IOCALIB;
  struct
  {
    __O   CFG_DDR_SGMII_PHY_SOFT_RESET_IOCALIB_NV_MAP_IOCALIB_TypeDef NV_MAP_IOCALIB       :1;
    __O   CFG_DDR_SGMII_PHY_SOFT_RESET_IOCALIB_V_MAP_IOCALIB_TypeDef V_MAP_IOCALIB        :1;
    __I   uint32_t                       reserved_01          :6;
    __O   CFG_DDR_SGMII_PHY_SOFT_RESET_IOCALIB_PERIPH_IOCALIB_TypeDef PERIPH_IOCALIB       :1;
    __I   uint32_t                       reserved_02          :7;
    __I   CFG_DDR_SGMII_PHY_SOFT_RESET_IOCALIB_BLOCKID_IOCALIB_TypeDef BLOCKID_IOCALIB      :16;
  } bitfield;
} CFG_DDR_SGMII_PHY_SOFT_RESET_IOCALIB_TypeDef;

typedef union{                                                         /*!< IOC_REG0 register definition*/
  __IO  uint32_t                       IOC_REG0;
  struct
  {
    __IO   uint32_t                      reg_pcode            :6;
    __IO   uint32_t                      reg_ncode            :6;
    __I   uint32_t                       reg_calib_trim       :1;
    __IO  uint32_t                       reg_calib_start      :1;
    __IO  uint32_t                       reg_calib_lock       :1;
    __I   uint32_t                       reg_calib_load       :1;
    __I   uint32_t                       reg_calib_direction  :1;
    __I   uint32_t                       reg_calib_move_pcode :1;
    __I   uint32_t                       reg_calib_move_ncode :1;
    __I   uint32_t                       reserve01            :13;
  } bitfield;
} CFG_DDR_SGMII_PHY_IOC_REG0_TypeDef;

typedef union{                                                         /*!< IOC_REG1 register definition*/
  __I   uint32_t                       IOC_REG1;
  struct
  {
    __I   uint32_t                       sro_code_done_p      :1;
    __I   uint32_t                       sro_code_done_n      :1;
    __I   uint32_t                       sro_calib_status     :1;
    __I   uint32_t                       sro_calib_intrpt     :1;
    __I   uint32_t                       sro_ioen_out         :1;
    __I   uint32_t                       sro_power_on         :1;
    __I   uint32_t                       sro_comp_sel         :1;
    __I   uint32_t                       sro_comp_en          :1;
    __I   uint32_t                       reserve02            :24;
  } bitfield;
} CFG_DDR_SGMII_PHY_IOC_REG1_TypeDef;

typedef union{                                                         /*!< IOC_REG2 register definition*/
  __I   uint32_t                       IOC_REG2;
  struct
  {
    __I   uint32_t                       sro_pcode            :7;
    __I   uint32_t                       sro_ncode            :7;
    __I   uint32_t                       sro_ref_pcode        :7;
    __I   uint32_t                       sro_ref_ncode        :7;
    __I   uint32_t                       sro_comp_out         :1;
    __I   uint32_t                       reserve03            :3;
  } bitfield;
} CFG_DDR_SGMII_PHY_IOC_REG2_TypeDef;

typedef union{                                                         /*!< IOC_REG3 register definition*/
  __I   uint32_t                       IOC_REG3;
  struct
  {
    __I   uint32_t                       reserve04            :5;
    __I   uint32_t                       reg_calib_poffset    :6;
    __I   uint32_t                       reg_calib_poffset_dir :1;
    __I   uint32_t                       reg_calib_noffset    :6;
    __I   uint32_t                       reg_calib_noffset_dir :1;
    __I   uint32_t                       reg_calib_move_slewr :1;
    __I   uint32_t                       reg_calib_move_slewf :1;
    __I   uint32_t                       reg_calib_roffset_dir :1;
    __I   uint32_t                       reg_calib_foffset_dir :1;
    __I   uint32_t                       reserve05            :9;
  } bitfield;
} CFG_DDR_SGMII_PHY_IOC_REG3_TypeDef;

typedef union{                                                         /*!< IOC_REG4 register definition*/
  __I   uint32_t                       IOC_REG4;
  struct
  {
    __I   uint32_t                       reg_roffset          :6;
    __I   uint32_t                       reg_foffset          :6;
    __I   uint32_t                       reg_slewr            :6;
    __I   uint32_t                       reg_slewf            :6;
    __I   uint32_t                       sro_slew_intrpt      :1;
    __I   uint32_t                       sro_slew_status      :1;
    __I   uint32_t                       sro_slew_comp_out    :1;
    __I   uint32_t                       sro_slew_comp_en     :1;
    __I   uint32_t                       sro_slew_comp_sel    :1;
    __I   uint32_t                       sro_slew_ioen_out    :1;
    __I   uint32_t                       sro_slew_power_on    :1;
    __I   uint32_t                       reserve06            :1;
  } bitfield;
} CFG_DDR_SGMII_PHY_IOC_REG4_TypeDef;

typedef union{                                                         /*!< IOC_REG5 register definition*/
  __I   uint32_t                       IOC_REG5;
  struct
  {
    __I   uint32_t                       sro_ref_slewr        :6;
    __I   uint32_t                       sro_ref_slewf        :12;
    __I   uint32_t                       sro_slewr            :6;
    __I   uint32_t                       sro_slewf            :6;
    __I   uint32_t                       reserve07            :2;
  } bitfield;
} CFG_DDR_SGMII_PHY_IOC_REG5_TypeDef;

typedef union{                                                         /*!< IOC_REG6 register definition*/
  __IO  uint32_t                       IOC_REG6;
  struct
  {
    __IO  uint32_t                       reg_calib_reset      :1;
    __IO  uint32_t                       reg_calib_clkdiv     :2;
    __I   uint32_t                       reserve08            :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_IOC_REG6_TypeDef;

typedef union{                                                         /*!< RPC_RESET_IOCALIB register definition*/
  __IO  uint32_t                       RPC_RESET_IOCALIB;
  struct
  {
    __IO  uint32_t                       soft_reset_periph_IOCALIB :1;
    __I   uint32_t                       Reserved             :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_RPC_RESET_IOCALIB_TypeDef;

typedef union{                                                         /*!< rpc_calib register definition*/
  __IO  uint32_t                       rpc_calib;
  struct
  {
    __IO  uint32_t                       start_pvt            :1;
    __IO  uint32_t                       lock_pvt             :1;
    __I   uint32_t                       Reserved             :30;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc_calib_TypeDef;

typedef union{                                                         /*!< SOFT_RESET_CFM register definition*/
  __IO  uint32_t                       SOFT_RESET_CFM;
  struct
  {
    __O   CFG_DDR_SGMII_PHY_SOFT_RESET_CFM_NV_MAP_CFM_TypeDef NV_MAP_CFM           :1;
    __O   CFG_DDR_SGMII_PHY_SOFT_RESET_CFM_V_MAP_CFM_TypeDef V_MAP_CFM            :1;
    __I   uint32_t                       reserved_01          :6;
    __O   CFG_DDR_SGMII_PHY_SOFT_RESET_CFM_PERIPH_CFM_TypeDef PERIPH_CFM           :1;
    __I   uint32_t                       reserved_02          :7;
    __I   CFG_DDR_SGMII_PHY_SOFT_RESET_CFM_BLOCKID_CFM_TypeDef BLOCKID_CFM          :16;
  } bitfield;
} CFG_DDR_SGMII_PHY_SOFT_RESET_CFM_TypeDef;

typedef union{                                                         /*!< BCLKMUX register definition*/
  __IO  uint32_t                       BCLKMUX;
  struct
  {
    __IO  uint32_t                       bclk0_sel            :5;
    __IO  uint32_t                       bclk1_sel            :5;
    __IO  uint32_t                       bclk2_sel            :5;
    __IO  uint32_t                       bclk3_sel            :5;
    __IO  uint32_t                       bclk4_sel            :5;
    __IO  uint32_t                       bclk5_sel            :5;
    __I   uint32_t                       reserve0             :2;
  } bitfield;
} CFG_DDR_SGMII_PHY_BCLKMUX_TypeDef;

typedef union{                                                         /*!< PLL_CKMUX register definition*/
  __IO  uint32_t                       PLL_CKMUX;
  struct
  {
    __IO  uint32_t                       clk_in_mac_tsu       :2;
    __IO  uint32_t                       pll0_rfclk0_sel      :2;
    __IO  uint32_t                       pll0_rfclk1_sel      :2;
    __IO  uint32_t                       pll1_rfclk0_sel      :2;
    __IO  uint32_t                       pll1_rfclk1_sel      :2;
    __IO  uint32_t                       pll1_fdr_sel         :5;
    __I   uint32_t                       reserve1             :17;
  } bitfield;
} CFG_DDR_SGMII_PHY_PLL_CKMUX_TypeDef;

typedef union{                                                         /*!< MSSCLKMUX register definition*/
  __IO  uint32_t                       MSSCLKMUX;
  struct
  {
    __IO  uint32_t                       mssclk_mux_sel       :2;
    __IO  uint32_t                       mssclk_mux_md        :2;
    __IO  uint32_t                       clk_standby_sel      :1;
    __I   uint32_t                       reserve2             :27;
  } bitfield;
} CFG_DDR_SGMII_PHY_MSSCLKMUX_TypeDef;

typedef union{                                                         /*!< SPARE0 register definition*/
  __IO  uint32_t                       SPARE0;
  struct
  {
    __IO  uint32_t                       spare0               :32;
  } bitfield;
} CFG_DDR_SGMII_PHY_SPARE0_TypeDef;

typedef union{                                                         /*!< FMETER_ADDR register definition*/
  __I   uint32_t                       FMETER_ADDR;
  struct
  {
    __I   uint32_t                       addr10               :2;
    __I   uint32_t                       addr                 :4;
    __I   uint32_t                       reserve3             :26;
  } bitfield;
} CFG_DDR_SGMII_PHY_FMETER_ADDR_TypeDef;

typedef union{                                                         /*!< FMETER_DATAW register definition*/
  __I   uint32_t                       FMETER_DATAW;
  struct
  {
    __I   uint32_t                       data                 :24;
    __I   uint32_t                       strobe               :1;
    __I   uint32_t                       reserve4             :7;
  } bitfield;
} CFG_DDR_SGMII_PHY_FMETER_DATAW_TypeDef;

typedef union{                                                         /*!< FMETER_DATAR register definition*/
  __I   uint32_t                       FMETER_DATAR;
  struct
  {
    __I   uint32_t                       data                 :24;
    __I   uint32_t                       reserve5             :8;
  } bitfield;
} CFG_DDR_SGMII_PHY_FMETER_DATAR_TypeDef;

typedef union{                                                         /*!< TEST_CTRL register definition*/
  __I   uint32_t                       TEST_CTRL;
  struct
  {
    __I   uint32_t                       atest_en             :1;
    __I   uint32_t                       atest_sel            :5;
    __I   uint32_t                       dtest_en             :1;
    __I   uint32_t                       dtest_sel            :5;
    __I   uint32_t                       reserve6             :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_TEST_CTRL_TypeDef;

typedef union{                                                         /*!< RPC_RESET_CFM register definition*/
  __IO  uint32_t                       RPC_RESET_CFM;
  struct
  {
    __IO  uint32_t                       soft_reset_periph_CFM :1;
    __I   uint32_t                       Reserved             :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_RPC_RESET_CFM_TypeDef;

typedef union{                                                         /*!< SOFT_RESET_DECODER_DRIVER register definition*/
  __IO  uint32_t                       SOFT_RESET_DECODER_DRIVER;
  struct
  {
    __O   CFG_DDR_SGMII_PHY_SOFT_RESET_DECODER_DRIVER_NV_MAP_DECODER_DRIVER_TypeDef NV_MAP_DECODER_DRIVER :1;
    __O   CFG_DDR_SGMII_PHY_SOFT_RESET_DECODER_DRIVER_V_MAP_DECODER_DRIVER_TypeDef V_MAP_DECODER_DRIVER :1;
    __I   uint32_t                       reserved_01          :6;
    __O   CFG_DDR_SGMII_PHY_SOFT_RESET_DECODER_DRIVER_PERIPH_DECODER_DRIVER_TypeDef PERIPH_DECODER_DRIVER :1;
    __I   uint32_t                       reserved_02          :7;
    __I   CFG_DDR_SGMII_PHY_SOFT_RESET_DECODER_DRIVER_BLOCKID_DECODER_DRIVER_TypeDef BLOCKID_DECODER_DRIVER :16;
  } bitfield;
} CFG_DDR_SGMII_PHY_SOFT_RESET_DECODER_DRIVER_TypeDef;

typedef union{                                                         /*!< rpc1_DRV register definition*/
  __IO  uint32_t                       rpc1_DRV;
  struct
  {
    __IO  uint32_t                       drv_addcmd           :4;
    __I   uint32_t                       reserved_01          :28;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc1_DRV_TypeDef;

typedef union{                                                         /*!< rpc2_DRV register definition*/
  __IO  uint32_t                       rpc2_DRV;
  struct
  {
    __IO  uint32_t                       drv_clk              :4;
    __I   uint32_t                       reserved_01          :28;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc2_DRV_TypeDef;

typedef union{                                                         /*!< rpc3_DRV register definition*/
  __IO  uint32_t                       rpc3_DRV;
  struct
  {
    __IO  uint32_t                       drv_dq               :4;
    __I   uint32_t                       reserved_01          :28;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc3_DRV_TypeDef;

typedef union{                                                         /*!< rpc4_DRV register definition*/
  __IO  uint32_t                       rpc4_DRV;
  struct
  {
    __IO  uint32_t                       drv_dqs              :4;
    __I   uint32_t                       reserved_01          :28;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc4_DRV_TypeDef;

typedef union{                                                         /*!< SOFT_RESET_DECODER_ODT register definition*/
  __IO  uint32_t                       SOFT_RESET_DECODER_ODT;
  struct
  {
    __O   CFG_DDR_SGMII_PHY_SOFT_RESET_DECODER_ODT_NV_MAP_DECODER_ODT_TypeDef NV_MAP_DECODER_ODT   :1;
    __O   CFG_DDR_SGMII_PHY_SOFT_RESET_DECODER_ODT_V_MAP_DECODER_ODT_TypeDef V_MAP_DECODER_ODT    :1;
    __I   uint32_t                       reserved_01          :6;
    __O   CFG_DDR_SGMII_PHY_SOFT_RESET_DECODER_ODT_PERIPH_DECODER_ODT_TypeDef PERIPH_DECODER_ODT   :1;
    __I   uint32_t                       reserved_02          :7;
    __I   CFG_DDR_SGMII_PHY_SOFT_RESET_DECODER_ODT_BLOCKID_DECODER_ODT_TypeDef BLOCKID_DECODER_ODT  :16;
  } bitfield;
} CFG_DDR_SGMII_PHY_SOFT_RESET_DECODER_ODT_TypeDef;

typedef union{                                                         /*!< rpc1_ODT register definition*/
  __IO  uint32_t                       rpc1_ODT;
  struct
  {
    __IO  uint32_t                       odt_addcmd           :4;
    __I   uint32_t                       reserved_01          :28;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc1_ODT_TypeDef;

typedef union{                                                         /*!< rpc2_ODT register definition*/
  __IO  uint32_t                       rpc2_ODT;
  struct
  {
    __IO  uint32_t                       odt_clk              :4;
    __I   uint32_t                       reserved_01          :28;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc2_ODT_TypeDef;

typedef union{                                                         /*!< rpc3_ODT register definition*/
  __IO  uint32_t                       rpc3_ODT;
  struct
  {
    __IO  uint32_t                       odt_dq               :4;
    __I   uint32_t                       reserved_01          :28;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc3_ODT_TypeDef;

typedef union{                                                         /*!< rpc4_ODT register definition*/
  __IO  uint32_t                       rpc4_ODT;
  struct
  {
    __IO  uint32_t                       odt_dqs              :4;
    __I   uint32_t                       reserved_01          :28;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc4_ODT_TypeDef;

typedef union{                                                         /*!< rpc5_ODT register definition*/
  __IO  uint32_t                       rpc5_ODT;
  struct
  {
    __IO  uint32_t                       odt_dyn_sel_addcmd   :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc5_ODT_TypeDef;

typedef union{                                                         /*!< rpc6_ODT register definition*/
  __IO  uint32_t                       rpc6_ODT;
  struct
  {
    __IO  uint32_t                       odt_dyn_sel_data     :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc6_ODT_TypeDef;

typedef union{                                                         /*!< rpc7_ODT register definition*/
  __IO  uint32_t                       rpc7_ODT;
  struct
  {
    __IO  uint32_t                       odt_static_addcmd    :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc7_ODT_TypeDef;

typedef union{                                                         /*!< rpc8_ODT register definition*/
  __IO  uint32_t                       rpc8_ODT;
  struct
  {
    __IO  uint32_t                       odt_static_clkn      :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc8_ODT_TypeDef;

typedef union{                                                         /*!< rpc9_ODT register definition*/
  __IO  uint32_t                       rpc9_ODT;
  struct
  {
    __IO  uint32_t                       odt_static_clkp      :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc9_ODT_TypeDef;

typedef union{                                                         /*!< rpc10_ODT register definition*/
  __IO  uint32_t                       rpc10_ODT;
  struct
  {
    __IO  uint32_t                       odt_static_dq        :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc10_ODT_TypeDef;

typedef union{                                                         /*!< rpc11_ODT register definition*/
  __IO  uint32_t                       rpc11_ODT;
  struct
  {
    __IO  uint32_t                       odt_static_dqs       :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc11_ODT_TypeDef;

typedef union{                                                         /*!< SOFT_RESET_DECODER_IO register definition*/
  __IO  uint32_t                       SOFT_RESET_DECODER_IO;
  struct
  {
    __O   CFG_DDR_SGMII_PHY_SOFT_RESET_DECODER_IO_NV_MAP_DECODER_IO_TypeDef NV_MAP_DECODER_IO    :1;
    __O   CFG_DDR_SGMII_PHY_SOFT_RESET_DECODER_IO_V_MAP_DECODER_IO_TypeDef V_MAP_DECODER_IO     :1;
    __I   uint32_t                       reserved_01          :6;
    __O   CFG_DDR_SGMII_PHY_SOFT_RESET_DECODER_IO_PERIPH_DECODER_IO_TypeDef PERIPH_DECODER_IO    :1;
    __I   uint32_t                       reserved_02          :7;
    __I   CFG_DDR_SGMII_PHY_SOFT_RESET_DECODER_IO_BLOCKID_DECODER_IO_TypeDef BLOCKID_DECODER_IO   :16;
  } bitfield;
} CFG_DDR_SGMII_PHY_SOFT_RESET_DECODER_IO_TypeDef;

typedef union{                                                         /*!< ovrt1 register definition*/
  __IO  uint32_t                       ovrt1;
  struct
  {
    __IO  uint32_t                       drv_addcmd0          :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_ovrt1_TypeDef;

typedef union{                                                         /*!< ovrt2 register definition*/
  __IO  uint32_t                       ovrt2;
  struct
  {
    __IO  uint32_t                       drv_addcmd1          :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_ovrt2_TypeDef;

typedef union{                                                         /*!< ovrt3 register definition*/
  __IO  uint32_t                       ovrt3;
  struct
  {
    __IO  uint32_t                       drv_addcmd2          :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_ovrt3_TypeDef;

typedef union{                                                         /*!< ovrt4 register definition*/
  __IO  uint32_t                       ovrt4;
  struct
  {
    __IO  uint32_t                       drv_data0            :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_ovrt4_TypeDef;

typedef union{                                                         /*!< ovrt5 register definition*/
  __IO  uint32_t                       ovrt5;
  struct
  {
    __IO  uint32_t                       drv_data1            :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_ovrt5_TypeDef;

typedef union{                                                         /*!< ovrt6 register definition*/
  __IO  uint32_t                       ovrt6;
  struct
  {
    __IO  uint32_t                       drv_data2            :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_ovrt6_TypeDef;

typedef union{                                                         /*!< ovrt7 register definition*/
  __IO  uint32_t                       ovrt7;
  struct
  {
    __IO  uint32_t                       drv_data3            :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_ovrt7_TypeDef;

typedef union{                                                         /*!< ovrt8 register definition*/
  __IO  uint32_t                       ovrt8;
  struct
  {
    __IO  uint32_t                       drv_ecc              :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_ovrt8_TypeDef;

typedef union{                                                         /*!< ovrt9 register definition*/
  __IO  uint32_t                       ovrt9;
  struct
  {
    __IO  uint32_t                       en_addcmd0           :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_ovrt9_TypeDef;

typedef union{                                                         /*!< ovrt10 register definition*/
  __IO  uint32_t                       ovrt10;
  struct
  {
    __IO  uint32_t                       en_addcmd1           :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_ovrt10_TypeDef;

typedef union{                                                         /*!< ovrt11 register definition*/
  __IO  uint32_t                       ovrt11;
  struct
  {
    __IO  uint32_t                       en_addcmd2           :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_ovrt11_TypeDef;

typedef union{                                                         /*!< ovrt12 register definition*/
  __IO  uint32_t                       ovrt12;
  struct
  {
    __IO  uint32_t                       en_data0             :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_ovrt12_TypeDef;

typedef union{                                                         /*!< ovrt13 register definition*/
  __IO  uint32_t                       ovrt13;
  struct
  {
    __IO  uint32_t                       en_data1             :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_ovrt13_TypeDef;

typedef union{                                                         /*!< ovrt14 register definition*/
  __IO  uint32_t                       ovrt14;
  struct
  {
    __IO  uint32_t                       en_data2             :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_ovrt14_TypeDef;

typedef union{                                                         /*!< ovrt15 register definition*/
  __IO  uint32_t                       ovrt15;
  struct
  {
    __IO  uint32_t                       en_data3             :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_ovrt15_TypeDef;

typedef union{                                                         /*!< ovrt16 register definition*/
  __IO  uint32_t                       ovrt16;
  struct
  {
    __IO  uint32_t                       en_ecc               :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_ovrt16_TypeDef;

typedef union{                                                         /*!< rpc17 register definition*/
  __IO  uint32_t                       rpc17;
  struct
  {
    __IO  uint32_t                       bclk_sel_ac          :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc17_TypeDef;

typedef union{                                                         /*!< rpc18 register definition*/
  __IO  uint32_t                       rpc18;
  struct
  {
    __IO  uint32_t                       bclk_sel_addcmd      :9;
    __I   uint32_t                       reserved_01          :23;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc18_TypeDef;

typedef union{                                                         /*!< rpc19 register definition*/
  __IO  uint32_t                       rpc19;
  struct
  {
    __IO  uint32_t                       bclk_sel_clkn        :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc19_TypeDef;

typedef union{                                                         /*!< rpc20 register definition*/
  __IO  uint32_t                       rpc20;
  struct
  {
    __IO  uint32_t                       bclk_sel_clkp        :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc20_TypeDef;

typedef union{                                                         /*!< rpc21 register definition*/
  __IO  uint32_t                       rpc21;
  struct
  {
    __IO  uint32_t                       bclk_sel_data        :9;
    __I   uint32_t                       reserved_01          :23;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc21_TypeDef;

typedef union{                                                         /*!< rpc22 register definition*/
  __IO  uint32_t                       rpc22;
  struct
  {
    __IO  uint32_t                       bclk_sel_dq          :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc22_TypeDef;

typedef union{                                                         /*!< rpc23 register definition*/
  __IO  uint32_t                       rpc23;
  struct
  {
    __IO  uint32_t                       bclk_sel_dqsn        :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc23_TypeDef;

typedef union{                                                         /*!< rpc24 register definition*/
  __IO  uint32_t                       rpc24;
  struct
  {
    __IO  uint32_t                       bclk_sel_dqsp        :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc24_TypeDef;

typedef union{                                                         /*!< rpc25 register definition*/
  __IO  uint32_t                       rpc25;
  struct
  {
    __IO  uint32_t                       cdr_md_addcmd        :2;
    __I   uint32_t                       reserved_01          :30;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc25_TypeDef;

typedef union{                                                         /*!< rpc26 register definition*/
  __IO  uint32_t                       rpc26;
  struct
  {
    __IO  uint32_t                       cdr_md_data          :2;
    __I   uint32_t                       reserved_01          :30;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc26_TypeDef;

typedef union{                                                         /*!< rpc27 register definition*/
  __IO  uint32_t                       rpc27;
  struct
  {
    __IO  uint32_t                       clk_md_addcmd        :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc27_TypeDef;

typedef union{                                                         /*!< rpc28 register definition*/
  __IO  uint32_t                       rpc28;
  struct
  {
    __IO  uint32_t                       clk_sel_addcmd       :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc28_TypeDef;

typedef union{                                                         /*!< rpc29 register definition*/
  __IO  uint32_t                       rpc29;
  struct
  {
    __IO  uint32_t                       clk_sel_data         :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc29_TypeDef;

typedef union{                                                         /*!< rpc30 register definition*/
  __IO  uint32_t                       rpc30;
  struct
  {
    __IO  uint32_t                       code_sel_addcmd      :2;
    __I   uint32_t                       reserved_01          :30;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc30_TypeDef;

typedef union{                                                         /*!< rpc31 register definition*/
  __IO  uint32_t                       rpc31;
  struct
  {
    __IO  uint32_t                       code_sel_data        :2;
    __I   uint32_t                       reserved_01          :30;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc31_TypeDef;

typedef union{                                                         /*!< rpc32 register definition*/
  __IO  uint32_t                       rpc32;
  struct
  {
    __IO  uint32_t                       comp_addcmd          :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc32_TypeDef;

typedef union{                                                         /*!< rpc33 register definition*/
  __IO  uint32_t                       rpc33;
  struct
  {
    __IO  uint32_t                       comp_clkn            :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc33_TypeDef;

typedef union{                                                         /*!< rpc34 register definition*/
  __IO  uint32_t                       rpc34;
  struct
  {
    __IO  uint32_t                       comp_clkp            :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc34_TypeDef;

typedef union{                                                         /*!< rpc35 register definition*/
  __IO  uint32_t                       rpc35;
  struct
  {
    __IO  uint32_t                       comp_dq              :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc35_TypeDef;

typedef union{                                                         /*!< rpc36 register definition*/
  __IO  uint32_t                       rpc36;
  struct
  {
    __IO  uint32_t                       comp_dqsn            :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc36_TypeDef;

typedef union{                                                         /*!< rpc37 register definition*/
  __IO  uint32_t                       rpc37;
  struct
  {
    __IO  uint32_t                       comp_dqsp            :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc37_TypeDef;

typedef union{                                                         /*!< rpc38 register definition*/
  __IO  uint32_t                       rpc38;
  struct
  {
    __IO  uint32_t                       divclk_sel_addcmd    :2;
    __I   uint32_t                       reserved_01          :30;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc38_TypeDef;

typedef union{                                                         /*!< rpc39 register definition*/
  __IO  uint32_t                       rpc39;
  struct
  {
    __IO  uint32_t                       divclk_sel_data      :2;
    __I   uint32_t                       reserved_01          :30;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc39_TypeDef;

typedef union{                                                         /*!< rpc40 register definition*/
  __IO  uint32_t                       rpc40;
  struct
  {
    __IO  uint32_t                       div_addcmd           :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc40_TypeDef;

typedef union{                                                         /*!< rpc41 register definition*/
  __IO  uint32_t                       rpc41;
  struct
  {
    __IO  uint32_t                       div_data             :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc41_TypeDef;

typedef union{                                                         /*!< rpc42 register definition*/
  __IO  uint32_t                       rpc42;
  struct
  {
    __IO  uint32_t                       dly_md_addcmd        :2;
    __I   uint32_t                       reserved_01          :30;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc42_TypeDef;

typedef union{                                                         /*!< rpc43 register definition*/
  __IO  uint32_t                       rpc43;
  struct
  {
    __IO  uint32_t                       dly_md_clkn          :2;
    __I   uint32_t                       reserved_01          :30;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc43_TypeDef;

typedef union{                                                         /*!< rpc44 register definition*/
  __IO  uint32_t                       rpc44;
  struct
  {
    __IO  uint32_t                       dly_md_clkp          :2;
    __I   uint32_t                       reserved_01          :30;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc44_TypeDef;

typedef union{                                                         /*!< rpc45 register definition*/
  __IO  uint32_t                       rpc45;
  struct
  {
    __IO  uint32_t                       dly_md_dq            :2;
    __I   uint32_t                       reserved_01          :30;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc45_TypeDef;

typedef union{                                                         /*!< rpc46 register definition*/
  __IO  uint32_t                       rpc46;
  struct
  {
    __IO  uint32_t                       dly_md_dqsn          :2;
    __I   uint32_t                       reserved_01          :30;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc46_TypeDef;

typedef union{                                                         /*!< rpc47 register definition*/
  __IO  uint32_t                       rpc47;
  struct
  {
    __IO  uint32_t                       dly_md_dqsp          :2;
    __I   uint32_t                       reserved_01          :30;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc47_TypeDef;

typedef union{                                                         /*!< rpc48 register definition*/
  __IO  uint32_t                       rpc48;
  struct
  {
    __IO  uint32_t                       dqs_md_data          :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc48_TypeDef;

typedef union{                                                         /*!< rpc49 register definition*/
  __IO  uint32_t                       rpc49;
  struct
  {
    __IO  uint32_t                       dynen_addcmd         :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc49_TypeDef;

typedef union{                                                         /*!< rpc50 register definition*/
  __IO  uint32_t                       rpc50;
  struct
  {
    __IO  uint32_t                       dynen_data           :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc50_TypeDef;

typedef union{                                                         /*!< rpc51 register definition*/
  __IO  uint32_t                       rpc51;
  struct
  {
    __IO  uint32_t                       dynen_soft_reset_addcmd :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc51_TypeDef;

typedef union{                                                         /*!< rpc52 register definition*/
  __IO  uint32_t                       rpc52;
  struct
  {
    __IO  uint32_t                       dynen_soft_reset_data :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc52_TypeDef;

typedef union{                                                         /*!< rpc53 register definition*/
  __IO  uint32_t                       rpc53;
  struct
  {
    __IO  uint32_t                       edgedet_addcmd       :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc53_TypeDef;

typedef union{                                                         /*!< rpc54 register definition*/
  __IO  uint32_t                       rpc54;
  struct
  {
    __IO  uint32_t                       edgedet_clkn         :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc54_TypeDef;

typedef union{                                                         /*!< rpc55 register definition*/
  __IO  uint32_t                       rpc55;
  struct
  {
    __IO  uint32_t                       edgedet_clkp         :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc55_TypeDef;

typedef union{                                                         /*!< rpc56 register definition*/
  __IO  uint32_t                       rpc56;
  struct
  {
    __IO  uint32_t                       edgedet_dq           :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc56_TypeDef;

typedef union{                                                         /*!< rpc57 register definition*/
  __IO  uint32_t                       rpc57;
  struct
  {
    __IO  uint32_t                       edgedet_dqsn         :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc57_TypeDef;

typedef union{                                                         /*!< rpc58 register definition*/
  __IO  uint32_t                       rpc58;
  struct
  {
    __IO  uint32_t                       edgedet_dqsp         :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc58_TypeDef;

typedef union{                                                         /*!< rpc59 register definition*/
  __IO  uint32_t                       rpc59;
  struct
  {
    __IO  uint32_t                       eyewidth_addcmd      :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc59_TypeDef;

typedef union{                                                         /*!< rpc60 register definition*/
  __IO  uint32_t                       rpc60;
  struct
  {
    __IO  uint32_t                       eyewidth_clkn        :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc60_TypeDef;

typedef union{                                                         /*!< rpc61 register definition*/
  __IO  uint32_t                       rpc61;
  struct
  {
    __IO  uint32_t                       eyewidth_clkp        :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc61_TypeDef;

typedef union{                                                         /*!< rpc62 register definition*/
  __IO  uint32_t                       rpc62;
  struct
  {
    __IO  uint32_t                       eyewidth_dq          :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc62_TypeDef;

typedef union{                                                         /*!< rpc63 register definition*/
  __IO  uint32_t                       rpc63;
  struct
  {
    __IO  uint32_t                       eyewidth_dqsn        :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc63_TypeDef;

typedef union{                                                         /*!< rpc64 register definition*/
  __IO  uint32_t                       rpc64;
  struct
  {
    __IO  uint32_t                       eyewidth_dqsp        :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc64_TypeDef;

typedef union{                                                         /*!< rpc65 register definition*/
  __IO  uint32_t                       rpc65;
  struct
  {
    __IO  uint32_t                       eyewidth_sel_addcmd  :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc65_TypeDef;

typedef union{                                                         /*!< rpc66 register definition*/
  __IO  uint32_t                       rpc66;
  struct
  {
    __IO  uint32_t                       eyewidth_sel_clkn    :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc66_TypeDef;

typedef union{                                                         /*!< rpc67 register definition*/
  __IO  uint32_t                       rpc67;
  struct
  {
    __IO  uint32_t                       eyewidth_sel_clkp    :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc67_TypeDef;

typedef union{                                                         /*!< rpc68 register definition*/
  __IO  uint32_t                       rpc68;
  struct
  {
    __IO  uint32_t                       eyewidth_sel_dq      :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc68_TypeDef;

typedef union{                                                         /*!< rpc69 register definition*/
  __IO  uint32_t                       rpc69;
  struct
  {
    __IO  uint32_t                       eyewidth_sel_dqsn    :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc69_TypeDef;

typedef union{                                                         /*!< rpc70 register definition*/
  __IO  uint32_t                       rpc70;
  struct
  {
    __IO  uint32_t                       eyewidth_sel_dqsp    :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc70_TypeDef;

typedef union{                                                         /*!< rpc71 register definition*/
  __IO  uint32_t                       rpc71;
  struct
  {
    __IO  uint32_t                       eye_en_addcmd        :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc71_TypeDef;

typedef union{                                                         /*!< rpc72 register definition*/
  __IO  uint32_t                       rpc72;
  struct
  {
    __IO  uint32_t                       eye_en_clkn          :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc72_TypeDef;

typedef union{                                                         /*!< rpc73 register definition*/
  __IO  uint32_t                       rpc73;
  struct
  {
    __IO  uint32_t                       eye_en_clkp          :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc73_TypeDef;

typedef union{                                                         /*!< rpc74 register definition*/
  __IO  uint32_t                       rpc74;
  struct
  {
    __IO  uint32_t                       eye_en_dq            :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc74_TypeDef;

typedef union{                                                         /*!< rpc75 register definition*/
  __IO  uint32_t                       rpc75;
  struct
  {
    __IO  uint32_t                       eye_en_dqsn          :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc75_TypeDef;

typedef union{                                                         /*!< rpc76 register definition*/
  __IO  uint32_t                       rpc76;
  struct
  {
    __IO  uint32_t                       eye_en_dqsp          :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc76_TypeDef;

typedef union{                                                         /*!< rpc77 register definition*/
  __IO  uint32_t                       rpc77;
  struct
  {
    __IO  uint32_t                       eye_sdr_addcmd       :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc77_TypeDef;

typedef union{                                                         /*!< rpc78 register definition*/
  __IO  uint32_t                       rpc78;
  struct
  {
    __IO  uint32_t                       eye_sdr_clkn         :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc78_TypeDef;

typedef union{                                                         /*!< rpc79 register definition*/
  __IO  uint32_t                       rpc79;
  struct
  {
    __IO  uint32_t                       eye_sdr_clkp         :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc79_TypeDef;

typedef union{                                                         /*!< rpc80 register definition*/
  __IO  uint32_t                       rpc80;
  struct
  {
    __IO  uint32_t                       eye_sdr_dq           :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc80_TypeDef;

typedef union{                                                         /*!< rpc81 register definition*/
  __IO  uint32_t                       rpc81;
  struct
  {
    __IO  uint32_t                       eye_sdr_dqsn         :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc81_TypeDef;

typedef union{                                                         /*!< rpc82 register definition*/
  __IO  uint32_t                       rpc82;
  struct
  {
    __IO  uint32_t                       eye_sdr_dqsp         :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc82_TypeDef;

typedef union{                                                         /*!< rpc83 register definition*/
  __IO  uint32_t                       rpc83;
  struct
  {
    __IO  uint32_t                       fifowe_addcmd        :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc83_TypeDef;

typedef union{                                                         /*!< rpc84 register definition*/
  __IO  uint32_t                       rpc84;
  struct
  {
    __IO  uint32_t                       fifowe_clkn          :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc84_TypeDef;

typedef union{                                                         /*!< rpc85 register definition*/
  __IO  uint32_t                       rpc85;
  struct
  {
    __IO  uint32_t                       fifowe_clkp          :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc85_TypeDef;

typedef union{                                                         /*!< rpc86 register definition*/
  __IO  uint32_t                       rpc86;
  struct
  {
    __IO  uint32_t                       fifowe_dq            :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc86_TypeDef;

typedef union{                                                         /*!< rpc87 register definition*/
  __IO  uint32_t                       rpc87;
  struct
  {
    __IO  uint32_t                       fifowe_dqsn          :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc87_TypeDef;

typedef union{                                                         /*!< rpc88 register definition*/
  __IO  uint32_t                       rpc88;
  struct
  {
    __IO  uint32_t                       fifowe_dqsp          :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc88_TypeDef;

typedef union{                                                         /*!< rpc89 register definition*/
  __IO  uint32_t                       rpc89;
  struct
  {
    __IO  uint32_t                       fifo_en_addcmd       :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc89_TypeDef;

typedef union{                                                         /*!< rpc90 register definition*/
  __IO  uint32_t                       rpc90;
  struct
  {
    __IO  uint32_t                       fifo_en_data         :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc90_TypeDef;

typedef union{                                                         /*!< rpc91 register definition*/
  __IO  uint32_t                       rpc91;
  struct
  {
    __IO  uint32_t                       fifo_run_addcmd      :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc91_TypeDef;

typedef union{                                                         /*!< rpc92 register definition*/
  __IO  uint32_t                       rpc92;
  struct
  {
    __IO  uint32_t                       fifo_run_data        :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc92_TypeDef;

typedef union{                                                         /*!< rpc93 register definition*/
  __IO  uint32_t                       rpc93;
  struct
  {
    __IO  uint32_t                       gsr_disable_addcmd   :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc93_TypeDef;

typedef union{                                                         /*!< rpc94 register definition*/
  __IO  uint32_t                       rpc94;
  struct
  {
    __IO  uint32_t                       gsr_disable_data     :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc94_TypeDef;

typedef union{                                                         /*!< rpc95 register definition*/
  __IO  uint32_t                       rpc95;
  struct
  {
    __IO  uint32_t                       ibufmd_addcmd        :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc95_TypeDef;

typedef union{                                                         /*!< rpc96 register definition*/
  __IO  uint32_t                       rpc96;
  struct
  {
    __IO  uint32_t                       ibufmd_clk           :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc96_TypeDef;

typedef union{                                                         /*!< rpc97 register definition*/
  __IO  uint32_t                       rpc97;
  struct
  {
    __IO  uint32_t                       ibufmd_dq            :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc97_TypeDef;

typedef union{                                                         /*!< rpc98 register definition*/
  __IO  uint32_t                       rpc98;
  struct
  {
    __IO  uint32_t                       ibufmd_dqs           :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc98_TypeDef;

typedef union{                                                         /*!< rpc99 register definition*/
  __IO  uint32_t                       rpc99;
  struct
  {
    __IO  uint32_t                       indly_sel_addcmd     :2;
    __I   uint32_t                       reserved_01          :30;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc99_TypeDef;

typedef union{                                                         /*!< rpc100 register definition*/
  __IO  uint32_t                       rpc100;
  struct
  {
    __IO  uint32_t                       indly_sel_clkn       :2;
    __I   uint32_t                       reserved_01          :30;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc100_TypeDef;

typedef union{                                                         /*!< rpc101 register definition*/
  __IO  uint32_t                       rpc101;
  struct
  {
    __IO  uint32_t                       indly_sel_clkp       :2;
    __I   uint32_t                       reserved_01          :30;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc101_TypeDef;

typedef union{                                                         /*!< rpc102 register definition*/
  __IO  uint32_t                       rpc102;
  struct
  {
    __IO  uint32_t                       indly_sel_dq         :2;
    __I   uint32_t                       reserved_01          :30;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc102_TypeDef;

typedef union{                                                         /*!< rpc103 register definition*/
  __IO  uint32_t                       rpc103;
  struct
  {
    __IO  uint32_t                       indly_sel_dqsn       :2;
    __I   uint32_t                       reserved_01          :30;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc103_TypeDef;

typedef union{                                                         /*!< rpc104 register definition*/
  __IO  uint32_t                       rpc104;
  struct
  {
    __IO  uint32_t                       indly_sel_dqsp       :2;
    __I   uint32_t                       reserved_01          :30;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc104_TypeDef;

typedef union{                                                         /*!< rpc105 register definition*/
  __IO  uint32_t                       rpc105;
  struct
  {
    __IO  uint32_t                       lane_pvt_addcmd      :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc105_TypeDef;

typedef union{                                                         /*!< rpc106 register definition*/
  __IO  uint32_t                       rpc106;
  struct
  {
    __IO  uint32_t                       lane_pvt_data        :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc106_TypeDef;

typedef union{                                                         /*!< rpc107 register definition*/
  __IO  uint32_t                       rpc107;
  struct
  {
    __IO  uint32_t                       lsr_disable_addcmd   :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc107_TypeDef;

typedef union{                                                         /*!< rpc108 register definition*/
  __IO  uint32_t                       rpc108;
  struct
  {
    __IO  uint32_t                       lsr_disable_clkn     :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc108_TypeDef;

typedef union{                                                         /*!< rpc109 register definition*/
  __IO  uint32_t                       rpc109;
  struct
  {
    __IO  uint32_t                       lsr_disable_clkp     :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc109_TypeDef;

typedef union{                                                         /*!< rpc110 register definition*/
  __IO  uint32_t                       rpc110;
  struct
  {
    __IO  uint32_t                       lsr_disable_dq       :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc110_TypeDef;

typedef union{                                                         /*!< rpc111 register definition*/
  __IO  uint32_t                       rpc111;
  struct
  {
    __IO  uint32_t                       lsr_disable_dqsn     :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc111_TypeDef;

typedef union{                                                         /*!< rpc112 register definition*/
  __IO  uint32_t                       rpc112;
  struct
  {
    __IO  uint32_t                       lsr_disable_dqsp     :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc112_TypeDef;

typedef union{                                                         /*!< rpc113 register definition*/
  __IO  uint32_t                       rpc113;
  struct
  {
    __IO  uint32_t                       mvdly_en_addcmd      :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc113_TypeDef;

typedef union{                                                         /*!< rpc114 register definition*/
  __IO  uint32_t                       rpc114;
  struct
  {
    __IO  uint32_t                       mvdly_en_clkn        :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc114_TypeDef;

typedef union{                                                         /*!< rpc115 register definition*/
  __IO  uint32_t                       rpc115;
  struct
  {
    __IO  uint32_t                       mvdly_en_clkp        :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc115_TypeDef;

typedef union{                                                         /*!< rpc116 register definition*/
  __IO  uint32_t                       rpc116;
  struct
  {
    __IO  uint32_t                       mvdly_en_dq          :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc116_TypeDef;

typedef union{                                                         /*!< rpc117 register definition*/
  __IO  uint32_t                       rpc117;
  struct
  {
    __IO  uint32_t                       mvdly_en_dqsn        :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc117_TypeDef;

typedef union{                                                         /*!< rpc118 register definition*/
  __IO  uint32_t                       rpc118;
  struct
  {
    __IO  uint32_t                       mvdly_en_dqsp        :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc118_TypeDef;

typedef union{                                                         /*!< rpc119 register definition*/
  __IO  uint32_t                       rpc119;
  struct
  {
    __IO  uint32_t                       oeclk_inv_addcmd     :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc119_TypeDef;

typedef union{                                                         /*!< rpc120 register definition*/
  __IO  uint32_t                       rpc120;
  struct
  {
    __IO  uint32_t                       oeclk_inv_clkn       :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc120_TypeDef;

typedef union{                                                         /*!< rpc121 register definition*/
  __IO  uint32_t                       rpc121;
  struct
  {
    __IO  uint32_t                       oeclk_inv_clkp       :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc121_TypeDef;

typedef union{                                                         /*!< rpc122 register definition*/
  __IO  uint32_t                       rpc122;
  struct
  {
    __IO  uint32_t                       oeclk_inv_dq         :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc122_TypeDef;

typedef union{                                                         /*!< rpc123 register definition*/
  __IO  uint32_t                       rpc123;
  struct
  {
    __IO  uint32_t                       oeclk_inv_dqsn       :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc123_TypeDef;

typedef union{                                                         /*!< rpc124 register definition*/
  __IO  uint32_t                       rpc124;
  struct
  {
    __IO  uint32_t                       oeclk_inv_dqsp       :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc124_TypeDef;

typedef union{                                                         /*!< rpc125 register definition*/
  __IO  uint32_t                       rpc125;
  struct
  {
    __IO  uint32_t                       oe_md_addcmd         :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc125_TypeDef;

typedef union{                                                         /*!< rpc126 register definition*/
  __IO  uint32_t                       rpc126;
  struct
  {
    __IO  uint32_t                       oe_md_clkn           :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc126_TypeDef;

typedef union{                                                         /*!< rpc127 register definition*/
  __IO  uint32_t                       rpc127;
  struct
  {
    __IO  uint32_t                       oe_md_clkp           :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc127_TypeDef;

typedef union{                                                         /*!< rpc128 register definition*/
  __IO  uint32_t                       rpc128;
  struct
  {
    __IO  uint32_t                       oe_md_dq             :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc128_TypeDef;

typedef union{                                                         /*!< rpc129 register definition*/
  __IO  uint32_t                       rpc129;
  struct
  {
    __IO  uint32_t                       oe_md_dqsn           :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc129_TypeDef;

typedef union{                                                         /*!< rpc130 register definition*/
  __IO  uint32_t                       rpc130;
  struct
  {
    __IO  uint32_t                       oe_md_dqsp           :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc130_TypeDef;

typedef union{                                                         /*!< rpc131 register definition*/
  __IO  uint32_t                       rpc131;
  struct
  {
    __IO  uint32_t                       pause_en_addcmd      :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc131_TypeDef;

typedef union{                                                         /*!< rpc132 register definition*/
  __IO  uint32_t                       rpc132;
  struct
  {
    __IO  uint32_t                       pause_en_data        :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc132_TypeDef;

typedef union{                                                         /*!< rpc133 register definition*/
  __IO  uint32_t                       rpc133;
  struct
  {
    __IO  uint32_t                       qdr_addcmd           :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc133_TypeDef;

typedef union{                                                         /*!< rpc134 register definition*/
  __IO  uint32_t                       rpc134;
  struct
  {
    __IO  uint32_t                       qdr_data             :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc134_TypeDef;

typedef union{                                                         /*!< rpc135 register definition*/
  __IO  uint32_t                       rpc135;
  struct
  {
    __IO  uint32_t                       qdr_md_addcmd        :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc135_TypeDef;

typedef union{                                                         /*!< rpc136 register definition*/
  __IO  uint32_t                       rpc136;
  struct
  {
    __IO  uint32_t                       qdr_md_clkn          :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc136_TypeDef;

typedef union{                                                         /*!< rpc137 register definition*/
  __IO  uint32_t                       rpc137;
  struct
  {
    __IO  uint32_t                       qdr_md_clkp          :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc137_TypeDef;

typedef union{                                                         /*!< rpc138 register definition*/
  __IO  uint32_t                       rpc138;
  struct
  {
    __IO  uint32_t                       qdr_md_dq            :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc138_TypeDef;

typedef union{                                                         /*!< rpc139 register definition*/
  __IO  uint32_t                       rpc139;
  struct
  {
    __IO  uint32_t                       qdr_md_dqsn          :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc139_TypeDef;

typedef union{                                                         /*!< rpc140 register definition*/
  __IO  uint32_t                       rpc140;
  struct
  {
    __IO  uint32_t                       qdr_md_dqsp          :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc140_TypeDef;

typedef union{                                                         /*!< rpc141 register definition*/
  __IO  uint32_t                       rpc141;
  struct
  {
    __IO  uint32_t                       rank2_addcmd         :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc141_TypeDef;

typedef union{                                                         /*!< rpc142 register definition*/
  __IO  uint32_t                       rpc142;
  struct
  {
    __IO  uint32_t                       rank2_data           :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc142_TypeDef;

typedef union{                                                         /*!< rpc143 register definition*/
  __IO  uint32_t                       rpc143;
  struct
  {
    __IO  uint32_t                       rst_inv_addcmd       :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc143_TypeDef;

typedef union{                                                         /*!< rpc144 register definition*/
  __IO  uint32_t                       rpc144;
  struct
  {
    __IO  uint32_t                       rst_inv_data         :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc144_TypeDef;

typedef union{                                                         /*!< rpc145 register definition*/
  __IO  uint32_t                       rpc145;
  struct
  {
    __IO  uint32_t                       rxdly_addcmd         :7;
    __I   uint32_t                       reserved_01          :25;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc145_TypeDef;

typedef union{                                                         /*!< rpc146 register definition*/
  __IO  uint32_t                       rpc146;
  struct
  {
    __IO  uint32_t                       rxdly_clkn           :7;
    __I   uint32_t                       reserved_01          :25;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc146_TypeDef;

typedef union{                                                         /*!< rpc147 register definition*/
  __IO  uint32_t                       rpc147;
  struct
  {
    __IO  uint32_t                       rxdly_clkp           :7;
    __I   uint32_t                       reserved_01          :25;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc147_TypeDef;

typedef union{                                                         /*!< rpc148 register definition*/
  __IO  uint32_t                       rpc148;
  struct
  {
    __IO  uint32_t                       rxdly_dir_addcmd     :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc148_TypeDef;

typedef union{                                                         /*!< rpc149 register definition*/
  __IO  uint32_t                       rpc149;
  struct
  {
    __IO  uint32_t                       rxdly_dir_data       :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc149_TypeDef;

typedef union{                                                         /*!< rpc150 register definition*/
  __IO  uint32_t                       rpc150;
  struct
  {
    __IO  uint32_t                       rxdly_dq             :7;
    __I   uint32_t                       reserved_01          :25;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc150_TypeDef;

typedef union{                                                         /*!< rpc151 register definition*/
  __IO  uint32_t                       rpc151;
  struct
  {
    __IO  uint32_t                       rxdly_dqsn           :7;
    __I   uint32_t                       reserved_01          :25;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc151_TypeDef;

typedef union{                                                         /*!< rpc152 register definition*/
  __IO  uint32_t                       rpc152;
  struct
  {
    __IO  uint32_t                       rxdly_dqsp           :7;
    __I   uint32_t                       reserved_01          :25;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc152_TypeDef;

typedef union{                                                         /*!< rpc153 register definition*/
  __IO  uint32_t                       rpc153;
  struct
  {
    __IO  uint32_t                       rxdly_en_addcmd      :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc153_TypeDef;

typedef union{                                                         /*!< rpc154 register definition*/
  __IO  uint32_t                       rpc154;
  struct
  {
    __IO  uint32_t                       rxdly_en_data        :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc154_TypeDef;

typedef union{                                                         /*!< rpc155 register definition*/
  __IO  uint32_t                       rpc155;
  struct
  {
    __IO  uint32_t                       rxdly_offset_addcmd  :8;
    __I   uint32_t                       reserved_01          :24;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc155_TypeDef;

typedef union{                                                         /*!< rpc156 register definition*/
  __IO  uint32_t                       rpc156;
  struct
  {
    __IO  uint32_t                       rxdly_offset_data    :8;
    __I   uint32_t                       reserved_01          :24;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc156_TypeDef;

typedef union{                                                         /*!< rpc157 register definition*/
  __IO  uint32_t                       rpc157;
  struct
  {
    __IO  uint32_t                       rxdly_wide_addcmd    :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc157_TypeDef;

typedef union{                                                         /*!< rpc158 register definition*/
  __IO  uint32_t                       rpc158;
  struct
  {
    __IO  uint32_t                       rxdly_wide_clkn      :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc158_TypeDef;

typedef union{                                                         /*!< rpc159 register definition*/
  __IO  uint32_t                       rpc159;
  struct
  {
    __IO  uint32_t                       rxdly_wide_clkp      :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc159_TypeDef;

typedef union{                                                         /*!< rpc160 register definition*/
  __IO  uint32_t                       rpc160;
  struct
  {
    __IO  uint32_t                       rxdly_wide_dq        :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc160_TypeDef;

typedef union{                                                         /*!< rpc161 register definition*/
  __IO  uint32_t                       rpc161;
  struct
  {
    __IO  uint32_t                       rxdly_wide_dqsn      :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc161_TypeDef;

typedef union{                                                         /*!< rpc162 register definition*/
  __IO  uint32_t                       rpc162;
  struct
  {
    __IO  uint32_t                       rxdly_wide_dqsp      :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc162_TypeDef;

typedef union{                                                         /*!< rpc163 register definition*/
  __IO  uint32_t                       rpc163;
  struct
  {
    __IO  uint32_t                       rxmvdly_en_addcmd    :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc163_TypeDef;

typedef union{                                                         /*!< rpc164 register definition*/
  __IO  uint32_t                       rpc164;
  struct
  {
    __IO  uint32_t                       rxmvdly_en_data      :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc164_TypeDef;

typedef union{                                                         /*!< rpc165 register definition*/
  __IO  uint32_t                       rpc165;
  struct
  {
    __IO  uint32_t                       rxptr_addcmd         :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc165_TypeDef;

typedef union{                                                         /*!< rpc166 register definition*/
  __IO  uint32_t                       rpc166;
  struct
  {
    __IO  uint32_t                       rxptr_data           :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc166_TypeDef;

typedef union{                                                         /*!< rpc167 register definition*/
  __IO  uint32_t                       rpc167;
  struct
  {
    __IO  uint32_t                       rx_md_addcmd         :4;
    __I   uint32_t                       reserved_01          :28;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc167_TypeDef;

typedef union{                                                         /*!< rpc168 register definition*/
  __IO  uint32_t                       rpc168;
  struct
  {
    __IO  uint32_t                       rx_md_clkn           :4;
    __I   uint32_t                       reserved_01          :28;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc168_TypeDef;

typedef union{                                                         /*!< rpc169 register definition*/
  __IO  uint32_t                       rpc169;
  struct
  {
    __IO  uint32_t                       rx_md_clkp           :4;
    __I   uint32_t                       reserved_01          :28;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc169_TypeDef;

typedef union{                                                         /*!< rpc170 register definition*/
  __IO  uint32_t                       rpc170;
  struct
  {
    __IO  uint32_t                       rx_md_dq             :4;
    __I   uint32_t                       reserved_01          :28;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc170_TypeDef;

typedef union{                                                         /*!< rpc171 register definition*/
  __IO  uint32_t                       rpc171;
  struct
  {
    __IO  uint32_t                       rx_md_dqsn           :4;
    __I   uint32_t                       reserved_01          :28;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc171_TypeDef;

typedef union{                                                         /*!< rpc172 register definition*/
  __IO  uint32_t                       rpc172;
  struct
  {
    __IO  uint32_t                       rx_md_dqsp           :4;
    __I   uint32_t                       reserved_01          :28;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc172_TypeDef;

typedef union{                                                         /*!< rpc173 register definition*/
  __IO  uint32_t                       rpc173;
  struct
  {
    __IO  uint32_t                       sclk0_en_addcmd      :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc173_TypeDef;

typedef union{                                                         /*!< rpc174 register definition*/
  __IO  uint32_t                       rpc174;
  struct
  {
    __IO  uint32_t                       sclk0_en_clkn        :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc174_TypeDef;

typedef union{                                                         /*!< rpc175 register definition*/
  __IO  uint32_t                       rpc175;
  struct
  {
    __IO  uint32_t                       sclk0_en_clkp        :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc175_TypeDef;

typedef union{                                                         /*!< rpc176 register definition*/
  __IO  uint32_t                       rpc176;
  struct
  {
    __IO  uint32_t                       sclk0_en_dq          :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc176_TypeDef;

typedef union{                                                         /*!< rpc177 register definition*/
  __IO  uint32_t                       rpc177;
  struct
  {
    __IO  uint32_t                       sclk0_en_dqsn        :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc177_TypeDef;

typedef union{                                                         /*!< rpc178 register definition*/
  __IO  uint32_t                       rpc178;
  struct
  {
    __IO  uint32_t                       sclk0_en_dqsp        :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc178_TypeDef;

typedef union{                                                         /*!< rpc179 register definition*/
  __IO  uint32_t                       rpc179;
  struct
  {
    __IO  uint32_t                       sclk0_inv_addcmd     :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc179_TypeDef;

typedef union{                                                         /*!< rpc180 register definition*/
  __IO  uint32_t                       rpc180;
  struct
  {
    __IO  uint32_t                       sclk0_inv_clkn       :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc180_TypeDef;

typedef union{                                                         /*!< rpc181 register definition*/
  __IO  uint32_t                       rpc181;
  struct
  {
    __IO  uint32_t                       sclk0_inv_clkp       :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc181_TypeDef;

typedef union{                                                         /*!< rpc182 register definition*/
  __IO  uint32_t                       rpc182;
  struct
  {
    __IO  uint32_t                       sclk0_inv_dq         :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc182_TypeDef;

typedef union{                                                         /*!< rpc183 register definition*/
  __IO  uint32_t                       rpc183;
  struct
  {
    __IO  uint32_t                       sclk0_inv_dqsn       :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc183_TypeDef;

typedef union{                                                         /*!< rpc184 register definition*/
  __IO  uint32_t                       rpc184;
  struct
  {
    __IO  uint32_t                       sclk0_inv_dqsp       :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc184_TypeDef;

typedef union{                                                         /*!< rpc185 register definition*/
  __IO  uint32_t                       rpc185;
  struct
  {
    __IO  uint32_t                       sclk1_en_addcmd      :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc185_TypeDef;

typedef union{                                                         /*!< rpc186 register definition*/
  __IO  uint32_t                       rpc186;
  struct
  {
    __IO  uint32_t                       sclk1_en_clkn        :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc186_TypeDef;

typedef union{                                                         /*!< rpc187 register definition*/
  __IO  uint32_t                       rpc187;
  struct
  {
    __IO  uint32_t                       sclk1_en_clkp        :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc187_TypeDef;

typedef union{                                                         /*!< rpc188 register definition*/
  __IO  uint32_t                       rpc188;
  struct
  {
    __IO  uint32_t                       sclk1_en_dq          :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc188_TypeDef;

typedef union{                                                         /*!< rpc189 register definition*/
  __IO  uint32_t                       rpc189;
  struct
  {
    __IO  uint32_t                       sclk1_en_dqsn        :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc189_TypeDef;

typedef union{                                                         /*!< rpc190 register definition*/
  __IO  uint32_t                       rpc190;
  struct
  {
    __IO  uint32_t                       sclk1_en_dqsp        :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc190_TypeDef;

typedef union{                                                         /*!< rpc191 register definition*/
  __IO  uint32_t                       rpc191;
  struct
  {
    __IO  uint32_t                       sclk1_inv_addcmd     :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc191_TypeDef;

typedef union{                                                         /*!< rpc192 register definition*/
  __IO  uint32_t                       rpc192;
  struct
  {
    __IO  uint32_t                       sclk1_inv_clkn       :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc192_TypeDef;

typedef union{                                                         /*!< rpc193 register definition*/
  __IO  uint32_t                       rpc193;
  struct
  {
    __IO  uint32_t                       sclk1_inv_clkp       :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc193_TypeDef;

typedef union{                                                         /*!< rpc194 register definition*/
  __IO  uint32_t                       rpc194;
  struct
  {
    __IO  uint32_t                       sclk1_inv_dq         :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc194_TypeDef;

typedef union{                                                         /*!< rpc195 register definition*/
  __IO  uint32_t                       rpc195;
  struct
  {
    __IO  uint32_t                       sclk1_inv_dqsn       :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc195_TypeDef;

typedef union{                                                         /*!< rpc196 register definition*/
  __IO  uint32_t                       rpc196;
  struct
  {
    __IO  uint32_t                       sclk1_inv_dqsp       :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc196_TypeDef;

typedef union{                                                         /*!< rpc197 register definition*/
  __IO  uint32_t                       rpc197;
  struct
  {
    __IO  uint32_t                       soft_reset_addcmd    :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc197_TypeDef;

typedef union{                                                         /*!< rpc198 register definition*/
  __IO  uint32_t                       rpc198;
  struct
  {
    __IO  uint32_t                       soft_reset_data      :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc198_TypeDef;

typedef union{                                                         /*!< rpc199 register definition*/
  __IO  uint32_t                       rpc199;
  struct
  {
    __IO  uint32_t                       spare_iog_addcmd     :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc199_TypeDef;

typedef union{                                                         /*!< rpc200 register definition*/
  __IO  uint32_t                       rpc200;
  struct
  {
    __IO  uint32_t                       spare_iog_clkn       :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc200_TypeDef;

typedef union{                                                         /*!< rpc201 register definition*/
  __IO  uint32_t                       rpc201;
  struct
  {
    __IO  uint32_t                       spare_iog_clkp       :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc201_TypeDef;

typedef union{                                                         /*!< rpc202 register definition*/
  __IO  uint32_t                       rpc202;
  struct
  {
    __IO  uint32_t                       spare_iog_dq         :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc202_TypeDef;

typedef union{                                                         /*!< rpc203 register definition*/
  __IO  uint32_t                       rpc203;
  struct
  {
    __IO  uint32_t                       spare_iog_dqsn       :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc203_TypeDef;

typedef union{                                                         /*!< rpc204 register definition*/
  __IO  uint32_t                       rpc204;
  struct
  {
    __IO  uint32_t                       spare_iog_dqsp       :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc204_TypeDef;

typedef union{                                                         /*!< rpc205 register definition*/
  __IO  uint32_t                       rpc205;
  struct
  {
    __IO  uint32_t                       spio_sel_di_dqsn     :2;
    __I   uint32_t                       reserved_01          :30;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc205_TypeDef;

typedef union{                                                         /*!< rpc206 register definition*/
  __IO  uint32_t                       rpc206;
  struct
  {
    __IO  uint32_t                       spio_sel_di_dqsp     :2;
    __I   uint32_t                       reserved_01          :30;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc206_TypeDef;

typedef union{                                                         /*!< rpc207 register definition*/
  __IO  uint32_t                       rpc207;
  struct
  {
    __IO  uint32_t                       stop_sel_addcmd      :2;
    __I   uint32_t                       reserved_01          :30;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc207_TypeDef;

typedef union{                                                         /*!< rpc208 register definition*/
  __IO  uint32_t                       rpc208;
  struct
  {
    __IO  uint32_t                       stop_sel_data        :2;
    __I   uint32_t                       reserved_01          :30;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc208_TypeDef;

typedef union{                                                         /*!< rpc209 register definition*/
  __IO  uint32_t                       rpc209;
  struct
  {
    __IO  uint32_t                       txclk_sel_addcmd     :2;
    __I   uint32_t                       reserved_01          :30;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc209_TypeDef;

typedef union{                                                         /*!< rpc210 register definition*/
  __IO  uint32_t                       rpc210;
  struct
  {
    __IO  uint32_t                       txclk_sel_clkn       :2;
    __I   uint32_t                       reserved_01          :30;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc210_TypeDef;

typedef union{                                                         /*!< rpc211 register definition*/
  __IO  uint32_t                       rpc211;
  struct
  {
    __IO  uint32_t                       txclk_sel_clkp       :2;
    __I   uint32_t                       reserved_01          :30;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc211_TypeDef;

typedef union{                                                         /*!< rpc212 register definition*/
  __IO  uint32_t                       rpc212;
  struct
  {
    __IO  uint32_t                       txclk_sel_dq         :2;
    __I   uint32_t                       reserved_01          :30;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc212_TypeDef;

typedef union{                                                         /*!< rpc213 register definition*/
  __IO  uint32_t                       rpc213;
  struct
  {
    __IO  uint32_t                       txclk_sel_dqsn       :2;
    __I   uint32_t                       reserved_01          :30;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc213_TypeDef;

typedef union{                                                         /*!< rpc214 register definition*/
  __IO  uint32_t                       rpc214;
  struct
  {
    __IO  uint32_t                       txclk_sel_dqsp       :2;
    __I   uint32_t                       reserved_01          :30;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc214_TypeDef;

typedef union{                                                         /*!< rpc215 register definition*/
  __IO  uint32_t                       rpc215;
  struct
  {
    __IO  uint32_t                       txdly_addcmd         :7;
    __I   uint32_t                       reserved_01          :25;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc215_TypeDef;

typedef union{                                                         /*!< rpc216 register definition*/
  __IO  uint32_t                       rpc216;
  struct
  {
    __IO  uint32_t                       txdly_clkn           :7;
    __I   uint32_t                       reserved_01          :25;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc216_TypeDef;

typedef union{                                                         /*!< rpc217 register definition*/
  __IO  uint32_t                       rpc217;
  struct
  {
    __IO  uint32_t                       txdly_clkp           :7;
    __I   uint32_t                       reserved_01          :25;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc217_TypeDef;

typedef union{                                                         /*!< rpc218 register definition*/
  __IO  uint32_t                       rpc218;
  struct
  {
    __IO  uint32_t                       txdly_dir_addcmd     :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc218_TypeDef;

typedef union{                                                         /*!< rpc219 register definition*/
  __IO  uint32_t                       rpc219;
  struct
  {
    __IO  uint32_t                       txdly_dir_data       :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc219_TypeDef;

typedef union{                                                         /*!< rpc220 register definition*/
  __IO  uint32_t                       rpc220;
  struct
  {
    __IO  uint32_t                       txdly_dq             :7;
    __I   uint32_t                       reserved_01          :25;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc220_TypeDef;

typedef union{                                                         /*!< rpc221 register definition*/
  __IO  uint32_t                       rpc221;
  struct
  {
    __IO  uint32_t                       txdly_dqsn           :7;
    __I   uint32_t                       reserved_01          :25;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc221_TypeDef;

typedef union{                                                         /*!< rpc222 register definition*/
  __IO  uint32_t                       rpc222;
  struct
  {
    __IO  uint32_t                       txdly_dqsp           :7;
    __I   uint32_t                       reserved_01          :25;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc222_TypeDef;

typedef union{                                                         /*!< rpc223 register definition*/
  __IO  uint32_t                       rpc223;
  struct
  {
    __IO  uint32_t                       txdly_en_addcmd      :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc223_TypeDef;

typedef union{                                                         /*!< rpc224 register definition*/
  __IO  uint32_t                       rpc224;
  struct
  {
    __IO  uint32_t                       txdly_en_data        :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc224_TypeDef;

typedef union{                                                         /*!< rpc225 register definition*/
  __IO  uint32_t                       rpc225;
  struct
  {
    __IO  uint32_t                       txdly_offset_addcmd  :8;
    __I   uint32_t                       reserved_01          :24;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc225_TypeDef;

typedef union{                                                         /*!< rpc226 register definition*/
  __IO  uint32_t                       rpc226;
  struct
  {
    __IO  uint32_t                       txdly_offset_data    :8;
    __I   uint32_t                       reserved_01          :24;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc226_TypeDef;

typedef union{                                                         /*!< rpc227 register definition*/
  __IO  uint32_t                       rpc227;
  struct
  {
    __IO  uint32_t                       txmvdly_en_addcmd    :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc227_TypeDef;

typedef union{                                                         /*!< rpc228 register definition*/
  __IO  uint32_t                       rpc228;
  struct
  {
    __IO  uint32_t                       txmvdly_en_data      :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc228_TypeDef;

typedef union{                                                         /*!< rpc229 register definition*/
  __IO  uint32_t                       rpc229;
  struct
  {
    __IO  uint32_t                       tx_md_addcmd         :7;
    __I   uint32_t                       reserved_01          :25;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc229_TypeDef;

typedef union{                                                         /*!< rpc230 register definition*/
  __IO  uint32_t                       rpc230;
  struct
  {
    __IO  uint32_t                       tx_md_clkn           :7;
    __I   uint32_t                       reserved_01          :25;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc230_TypeDef;

typedef union{                                                         /*!< rpc231 register definition*/
  __IO  uint32_t                       rpc231;
  struct
  {
    __IO  uint32_t                       tx_md_clkp           :7;
    __I   uint32_t                       reserved_01          :25;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc231_TypeDef;

typedef union{                                                         /*!< rpc232 register definition*/
  __IO  uint32_t                       rpc232;
  struct
  {
    __IO  uint32_t                       tx_md_dq             :7;
    __I   uint32_t                       reserved_01          :25;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc232_TypeDef;

typedef union{                                                         /*!< rpc233 register definition*/
  __IO  uint32_t                       rpc233;
  struct
  {
    __IO  uint32_t                       tx_md_dqsn           :7;
    __I   uint32_t                       reserved_01          :25;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc233_TypeDef;

typedef union{                                                         /*!< rpc234 register definition*/
  __IO  uint32_t                       rpc234;
  struct
  {
    __IO  uint32_t                       tx_md_dqsp           :7;
    __I   uint32_t                       reserved_01          :25;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc234_TypeDef;

typedef union{                                                         /*!< rpc235 register definition*/
  __IO  uint32_t                       rpc235;
  struct
  {
    __IO  uint32_t                       wpd_addcmd0          :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc235_TypeDef;

typedef union{                                                         /*!< rpc236 register definition*/
  __IO  uint32_t                       rpc236;
  struct
  {
    __IO  uint32_t                       wpd_addcmd1          :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc236_TypeDef;

typedef union{                                                         /*!< rpc237 register definition*/
  __IO  uint32_t                       rpc237;
  struct
  {
    __IO  uint32_t                       wpd_addcmd2          :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc237_TypeDef;

typedef union{                                                         /*!< rpc238 register definition*/
  __IO  uint32_t                       rpc238;
  struct
  {
    __IO  uint32_t                       wpd_data0            :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc238_TypeDef;

typedef union{                                                         /*!< rpc239 register definition*/
  __IO  uint32_t                       rpc239;
  struct
  {
    __IO  uint32_t                       wpd_data1            :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc239_TypeDef;

typedef union{                                                         /*!< rpc240 register definition*/
  __IO  uint32_t                       rpc240;
  struct
  {
    __IO  uint32_t                       wpd_data2            :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc240_TypeDef;

typedef union{                                                         /*!< rpc241 register definition*/
  __IO  uint32_t                       rpc241;
  struct
  {
    __IO  uint32_t                       wpd_data3            :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc241_TypeDef;

typedef union{                                                         /*!< rpc242 register definition*/
  __IO  uint32_t                       rpc242;
  struct
  {
    __IO  uint32_t                       wpd_ecc              :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc242_TypeDef;

typedef union{                                                         /*!< rpc243 register definition*/
  __IO  uint32_t                       rpc243;
  struct
  {
    __IO  uint32_t                       wpu_addcmd0          :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc243_TypeDef;

typedef union{                                                         /*!< rpc244 register definition*/
  __IO  uint32_t                       rpc244;
  struct
  {
    __IO  uint32_t                       wpu_addcmd1          :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc244_TypeDef;

typedef union{                                                         /*!< rpc245 register definition*/
  __IO  uint32_t                       rpc245;
  struct
  {
    __IO  uint32_t                       wpu_addcmd2          :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc245_TypeDef;

typedef union{                                                         /*!< rpc246 register definition*/
  __IO  uint32_t                       rpc246;
  struct
  {
    __IO  uint32_t                       wpu_data0            :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc246_TypeDef;

typedef union{                                                         /*!< rpc247 register definition*/
  __IO  uint32_t                       rpc247;
  struct
  {
    __IO  uint32_t                       wpu_data1            :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc247_TypeDef;

typedef union{                                                         /*!< rpc248 register definition*/
  __IO  uint32_t                       rpc248;
  struct
  {
    __IO  uint32_t                       wpu_data2            :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc248_TypeDef;

typedef union{                                                         /*!< rpc249 register definition*/
  __IO  uint32_t                       rpc249;
  struct
  {
    __IO  uint32_t                       wpu_data3            :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc249_TypeDef;

typedef union{                                                         /*!< rpc250 register definition*/
  __IO  uint32_t                       rpc250;
  struct
  {
    __IO  uint32_t                       wpu_ecc              :12;
    __I   uint32_t                       reserved_01          :20;
  } bitfield;
} CFG_DDR_SGMII_PHY_rpc250_TypeDef;

typedef union{                                                         /*!< spio251 register definition*/
  __IO  uint32_t                       spio251;
  struct
  {
    __IO  uint32_t                       sel_refclk0          :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_spio251_TypeDef;

typedef union{                                                         /*!< spio252 register definition*/
  __IO  uint32_t                       spio252;
  struct
  {
    __IO  uint32_t                       sel_refclk1          :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_spio252_TypeDef;

typedef union{                                                         /*!< spio253 register definition*/
  __IO  uint32_t                       spio253;
  struct
  {
    __IO  uint32_t                       sel_refclk2          :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_spio253_TypeDef;

typedef union{                                                         /*!< SOFT_RESET_TIP register definition*/
  __IO  uint32_t                       SOFT_RESET_TIP;
  struct
  {
    __O   CFG_DDR_SGMII_PHY_SOFT_RESET_TIP_NV_MAP_TIP_TypeDef NV_MAP_TIP           :1;
    __O   CFG_DDR_SGMII_PHY_SOFT_RESET_TIP_V_MAP_TIP_TypeDef V_MAP_TIP            :1;
    __I   uint32_t                       reserved_01          :6;
    __O   CFG_DDR_SGMII_PHY_SOFT_RESET_TIP_PERIPH_TIP_TypeDef PERIPH_TIP           :1;
    __I   uint32_t                       reserved_02          :7;
    __I   uint32_t                       BLOCKID_TIP          :16;
  } bitfield;
} CFG_DDR_SGMII_PHY_SOFT_RESET_TIP_TypeDef;

typedef union{                                                         /*!< rank_select register definition*/
  __IO  uint32_t                       rank_select;
  struct
  {
    __IO  uint32_t                       rank                 :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_rank_select_TypeDef;

typedef union{                                                         /*!< lane_select register definition*/
  __IO  uint32_t                       lane_select;
  struct
  {
    __IO  uint32_t                       lane                 :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_lane_select_TypeDef;

typedef union{                                                         /*!< training_skip register definition*/
  __IO  uint32_t                       training_skip;
  struct
  {
    __IO  uint32_t                       skip_bclksclk        :1;
    __IO  uint32_t                       skip_addcmd          :1;
    __IO  uint32_t                       skip_wrlvl           :1;
    __IO  uint32_t                       skip_rdgate          :1;
    __IO  uint32_t                       skip_dq_dqs_opt      :1;
    __IO  uint32_t                       skip_write_calibration :1;
    __IO  uint32_t                       skip_vref_mr6        :1;
    __IO  uint32_t                       step7                :1;
    __I   uint32_t                       reserved_01          :24;
  } bitfield;
} CFG_DDR_SGMII_PHY_training_skip_TypeDef;

typedef union{                                                         /*!< training_start register definition*/
  __IO  uint32_t                       training_start;
  struct
  {
    __IO  uint32_t                       start                :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_training_start_TypeDef;

typedef union{                                                         /*!< training_status register definition*/
  __I   uint32_t                       training_status;
  struct
  {
    __I   uint32_t                       status               :8;
    __I   uint32_t                       reserved_01          :24;
  } bitfield;
} CFG_DDR_SGMII_PHY_training_status_TypeDef;

typedef union{                                                         /*!< training_reset register definition*/
  __IO  uint32_t                       training_reset;
  struct
  {
    __IO  uint32_t                       reset                :1;
    __I   uint32_t                       reserved_01          :31;
  } bitfield;
} CFG_DDR_SGMII_PHY_training_reset_TypeDef;

typedef union{                                                         /*!< gt_err_comb register definition*/
  __I   uint32_t                       gt_err_comb;
  struct
  {
    __I   uint32_t                       error_comb_lanex     :6;
    __I   uint32_t                       reserved_01          :26;
  } bitfield;
} CFG_DDR_SGMII_PHY_gt_err_comb_TypeDef;

typedef union{                                                         /*!< gt_clk_sel register definition*/
  __I   uint32_t                       gt_clk_sel;
  struct
  {
    __I   uint32_t                       clk_sel_lanex_rankx  :3;
    __I   uint32_t                       reserved_01          :29;
  } bitfield;
} CFG_DDR_SGMII_PHY_gt_clk_sel_TypeDef;

typedef union{                                                         /*!< gt_txdly register definition*/
  __I   uint32_t                       gt_txdly;
  struct
  {
    __I   uint32_t                       txdly0_lanex         :8;
    __I   uint32_t                       txdly1_lanex         :8;
    __I   uint32_t                       txdly2_lanex         :8;
    __I   uint32_t                       txdly3_lanex         :8;
  } bitfield;
} CFG_DDR_SGMII_PHY_gt_txdly_TypeDef;

typedef union{                                                         /*!< gt_steps_180 register definition*/
  __I   uint32_t                       gt_steps_180;
  struct
  {
    __I   uint32_t                       steps_180_lanex_rankx :4;
    __I   uint32_t                       reserved_01          :28;
  } bitfield;
} CFG_DDR_SGMII_PHY_gt_steps_180_TypeDef;

typedef union{                                                         /*!< gt_state register definition*/
  __I   uint32_t                       gt_state;
  struct
  {
    __I   uint32_t                       gt_state_lanex       :4;
    __I   uint32_t                       reserved_01          :28;
  } bitfield;
} CFG_DDR_SGMII_PHY_gt_state_TypeDef;

typedef union{                                                         /*!< wl_delay_0 register definition*/
  __I   uint32_t                       wl_delay_0;
  struct
  {
    __I   uint32_t                       wldelay_lanex_rankx  :8;
    __I   uint32_t                       reserved_01          :24;
  } bitfield;
} CFG_DDR_SGMII_PHY_wl_delay_0_TypeDef;

typedef union{                                                         /*!< dq_dqs_err_done register definition*/
  __I   uint32_t                       dq_dqs_err_done;
  struct
  {
    __I   uint32_t                       dq_dqs_error_done_lanex_rankx :4;
    __I   uint32_t                       reserved_01          :28;
  } bitfield;
} CFG_DDR_SGMII_PHY_dq_dqs_err_done_TypeDef;

typedef union{                                                         /*!< dqdqs_window register definition*/
  __I   uint32_t                       dqdqs_window;
  struct
  {
    __I   uint32_t                       ils_lanex_rankx      :8;
    __I   uint32_t                       irs_lanex_rankx      :8;
    __I   uint32_t                       reserved_01          :16;
  } bitfield;
} CFG_DDR_SGMII_PHY_dqdqs_window_TypeDef;

typedef union{                                                         /*!< dqdqs_state register definition*/
  __I   uint32_t                       dqdqs_state;
  struct
  {
    __I   uint32_t                       state_lanex_rankx    :8;
    __I   uint32_t                       reserved_01          :24;
  } bitfield;
} CFG_DDR_SGMII_PHY_dqdqs_state_TypeDef;

typedef union{                                                         /*!< delta0 register definition*/
  __I   uint32_t                       delta0;
  struct
  {
    __I   uint32_t                       delay0_lanex         :8;
    __I   uint32_t                       delay1_lanex         :8;
    __I   uint32_t                       delay2_lanex         :8;
    __I   uint32_t                       delay3_lanex         :8;
  } bitfield;
} CFG_DDR_SGMII_PHY_delta0_TypeDef;

typedef union{                                                         /*!< delta1 register definition*/
  __I   uint32_t                       delta1;
  struct
  {
    __I   uint32_t                       delay4_lanex         :8;
    __I   uint32_t                       delay5_lanex         :8;
    __I   uint32_t                       delay6_lanex         :8;
    __I   uint32_t                       delay7_lanex         :8;
  } bitfield;
} CFG_DDR_SGMII_PHY_delta1_TypeDef;

typedef union{                                                         /*!< dqdqs_status0 register definition*/
  __I   uint32_t                       dqdqs_status0;
  struct
  {
    __I   uint32_t                       init_dly_lanex       :8;
    __I   uint32_t                       reserved_01          :24;
  } bitfield;
} CFG_DDR_SGMII_PHY_dqdqs_status0_TypeDef;

typedef union{                                                         /*!< dqdqs_status1 register definition*/
  __I   uint32_t                       dqdqs_status1;
  struct
  {
    __I   uint32_t                       dqs_dly_lanex_rankx  :8;
    __I   uint32_t                       reserved_01          :24;
  } bitfield;
} CFG_DDR_SGMII_PHY_dqdqs_status1_TypeDef;

typedef union{                                                         /*!< dqdqs_status2 register definition*/
  __I   uint32_t                       dqdqs_status2;
  struct
  {
    __I   uint32_t                       bit_width_lanex      :8;
    __I   uint32_t                       reserved_01          :24;
  } bitfield;
} CFG_DDR_SGMII_PHY_dqdqs_status2_TypeDef;

typedef union{                                                         /*!< dqdqs_status3 register definition*/
  __I   uint32_t                       dqdqs_status3;
  struct
  {
    __I   uint32_t                       initldqs_2_mid_lanex_rankx :8;
    __I   uint32_t                       reserved_01          :24;
  } bitfield;
} CFG_DDR_SGMII_PHY_dqdqs_status3_TypeDef;

typedef union{                                                         /*!< dqdqs_status4 register definition*/
  __I   uint32_t                       dqdqs_status4;
  struct
  {
    __I   uint32_t                       mid_2_initldqs_lanex_rankx :8;
    __I   uint32_t                       reserved_01          :24;
  } bitfield;
} CFG_DDR_SGMII_PHY_dqdqs_status4_TypeDef;

typedef union{                                                         /*!< dqdqs_status5 register definition*/
  __I   uint32_t                       dqdqs_status5;
  struct
  {
    __I   uint32_t                       stw_2_initldqs_lanex_rankx :8;
    __I   uint32_t                       reserved_01          :24;
  } bitfield;
} CFG_DDR_SGMII_PHY_dqdqs_status5_TypeDef;

typedef union{                                                         /*!< dqdqs_status6 register definition*/
  __I   uint32_t                       dqdqs_status6;
  struct
  {
    __I   uint32_t                       initldqs_2_stw_lanex_rankx :8;
    __I   uint32_t                       reserved_01          :24;
  } bitfield;
} CFG_DDR_SGMII_PHY_dqdqs_status6_TypeDef;

typedef union{                                                         /*!< addcmd_status0 register definition*/
  __I   uint32_t                       addcmd_status0;
  struct
  {
    __I   uint32_t                       delay_vcophs_sel0    :8;
    __I   uint32_t                       delay_vcophs_sel1    :8;
    __I   uint32_t                       delay_vcophs_sel2    :8;
    __I   uint32_t                       delay_vcophs_sel3    :8;
  } bitfield;
} CFG_DDR_SGMII_PHY_addcmd_status0_TypeDef;

typedef union{                                                         /*!< addcmd_status1 register definition*/
  __I   uint32_t                       addcmd_status1;
  struct
  {
    __I   uint32_t                       delay_vcophs_sel4    :8;
    __I   uint32_t                       delay_vcophs_sel5    :8;
    __I   uint32_t                       delay_vcophs_sel6    :8;
    __I   uint32_t                       delay_vcophs_sel7    :8;
  } bitfield;
} CFG_DDR_SGMII_PHY_addcmd_status1_TypeDef;

typedef union{                                                         /*!< addcmd_answer register definition*/
  __I   uint32_t                       addcmd_answer;
  struct
  {
    __I   uint32_t                       vcophs_sel_after_training :4;
    __I   uint32_t                       reserved_01          :28;
  } bitfield;
} CFG_DDR_SGMII_PHY_addcmd_answer_TypeDef;

typedef union{                                                         /*!< bclksclk_answer register definition*/
  __I   uint32_t                       bclksclk_answer;
  struct
  {
    __I   uint32_t                       bclk0_vcophs_sel     :4;
    __I   uint32_t                       reserved_01          :28;
  } bitfield;
} CFG_DDR_SGMII_PHY_bclksclk_answer_TypeDef;

typedef union{                                                         /*!< dqdqs_wrcalib_offset register definition*/
  __I   uint32_t                       dqdqs_wrcalib_offset;
  struct
  {
    __I   uint32_t                       wrcalib_offset_lanex :8;
    __I   uint32_t                       reserved_01          :24;
  } bitfield;
} CFG_DDR_SGMII_PHY_dqdqs_wrcalib_offset_TypeDef;

typedef union{                                                         /*!< expert_mode_en register definition*/
  __IO  uint32_t                       expert_mode_en;
  struct
  {
    __IO  uint32_t                       dyn_ovr_dlycnt_en    :1;
    __IO  uint32_t                       dyn_ovr_pllcnt_en    :1;
    __IO  uint32_t                       dyn_ovr_rdgate_en    :1;
    __IO  uint32_t                       dyn_ovr_wrcalib_en   :1;
    __IO  uint32_t                       dyn_ovr_calif_en     :1;
    __IO  uint32_t                       dyn_ovr_dfi_shim_en  :1;
    __I   uint32_t                       reserved_01          :26;
  } bitfield;
} CFG_DDR_SGMII_PHY_expert_mode_en_TypeDef;

typedef union{                                                         /*!< expert_dlycnt_move_reg0 register definition*/
  __IO  uint32_t                       expert_dlycnt_move_reg0;
  struct
  {
    __IO  uint32_t                       dyn_ovr_dlycnt_dq_move0 :8;
    __IO  uint32_t                       dyn_ovr_dlycnt_dq_move1 :8;
    __IO  uint32_t                       dyn_ovr_dlycnt_dq_move2 :8;
    __IO  uint32_t                       dyn_ovr_dlycnt_dq_move3 :8;
  } bitfield;
} CFG_DDR_SGMII_PHY_expert_dlycnt_move_reg0_TypeDef;

typedef union{                                                         /*!< expert_dlycnt_move_reg1 register definition*/
  __IO  uint32_t                       expert_dlycnt_move_reg1;
  struct
  {
    __IO  uint32_t                       dyn_ovr_dlycnt_dq_move4 :4;
    __IO  uint32_t                       dyn_ovr_dlycnt_lanectrl_move0 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_lanectrl_move1 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_lanectrl_move2 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_lanectrl_move3 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_lanectrl_move4 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_dqsw270_move0 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_dqsw270_move1 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_dqsw270_move2 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_dqsw270_move3 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_dqsw270_move4 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_dqsw_move0 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_dqsw_move1 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_dqsw_move2 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_dqsw_move3 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_dqsw_move4 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_catrn_move :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_ca_move :1;
    __I   uint32_t                       reserved_01          :11;
  } bitfield;
} CFG_DDR_SGMII_PHY_expert_dlycnt_move_reg1_TypeDef;

typedef union{                                                         /*!< expert_dlycnt_direction_reg0 register definition*/
  __IO  uint32_t                       expert_dlycnt_direction_reg0;
  struct
  {
    __IO  uint32_t                       dyn_ovr_dlycnt_dq_direction0 :8;
    __IO  uint32_t                       dyn_ovr_dlycnt_dq_direction1 :8;
    __IO  uint32_t                       dyn_ovr_dlycnt_dq_direction2 :8;
    __IO  uint32_t                       dyn_ovr_dlycnt_dq_direction3 :8;
  } bitfield;
} CFG_DDR_SGMII_PHY_expert_dlycnt_direction_reg0_TypeDef;

typedef union{                                                         /*!< expert_dlycnt_direction_reg1 register definition*/
  __IO  uint32_t                       expert_dlycnt_direction_reg1;
  struct
  {
    __IO  uint32_t                       dyn_ovr_dlycnt_dq_direction4 :4;
    __IO  uint32_t                       dyn_ovr_dlycnt_lanectrl_direction0 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_lanectrl_direction1 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_lanectrl_direction2 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_lanectrl_direction3 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_lanectrl_direction4 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_dqsw270_direction0 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_dqsw270_direction1 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_dqsw270_direction2 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_dqsw270_direction3 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_dqsw270_direction4 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_dqsw_direction0 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_dqsw_direction1 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_dqsw_direction2 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_dqsw_direction3 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_dqsw_direction4 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_catrn_direction :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_ca_direction :1;
    __I   uint32_t                       reserved_01          :11;
  } bitfield;
} CFG_DDR_SGMII_PHY_expert_dlycnt_direction_reg1_TypeDef;

typedef union{                                                         /*!< expert_dlycnt_load_reg0 register definition*/
  __IO  uint32_t                       expert_dlycnt_load_reg0;
  struct
  {
    __IO  uint32_t                       dyn_ovr_dlycnt_dq_load0 :8;
    __IO  uint32_t                       dyn_ovr_dlycnt_dq_load1 :8;
    __IO  uint32_t                       dyn_ovr_dlycnt_dq_load2 :8;
    __IO  uint32_t                       dyn_ovr_dlycnt_dq_load3 :8;
  } bitfield;
} CFG_DDR_SGMII_PHY_expert_dlycnt_load_reg0_TypeDef;

typedef union{                                                         /*!< expert_dlycnt_load_reg1 register definition*/
  __IO  uint32_t                       expert_dlycnt_load_reg1;
  struct
  {
    __IO  uint32_t                       dyn_ovr_dlycnt_dq_load4 :4;
    __IO  uint32_t                       dyn_ovr_dlycnt_lanectrl_load0 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_lanectrl_load1 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_lanectrl_load2 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_lanectrl_load3 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_lanectrl_load4 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_dqsw270_load0 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_dqsw270_load1 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_dqsw270_load2 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_dqsw270_load3 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_dqsw270_load4 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_dqsw_load0 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_dqsw_load1 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_dqsw_load2 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_dqsw_load3 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_dqsw_load4 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_catrn_load :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_ca_load :1;
    __I   uint32_t                       reserved_01          :11;
  } bitfield;
} CFG_DDR_SGMII_PHY_expert_dlycnt_load_reg1_TypeDef;

typedef union{                                                         /*!< expert_dlycnt_oor_reg0 register definition*/
  __I   uint32_t                       expert_dlycnt_oor_reg0;
  struct
  {
    __I   uint32_t                       dyn_ovr_dlycnt_dq_oor0 :8;
    __I   uint32_t                       dyn_ovr_dlycnt_dq_oor1 :8;
    __I   uint32_t                       dyn_ovr_dlycnt_dq_oor2 :8;
    __I   uint32_t                       dyn_ovr_dlycnt_dq_oor3 :8;
  } bitfield;
} CFG_DDR_SGMII_PHY_expert_dlycnt_oor_reg0_TypeDef;

typedef union{                                                         /*!< expert_dlycnt_oor_reg1 register definition*/
  __I   uint32_t                       expert_dlycnt_oor_reg1;
  struct
  {
    __I   uint32_t                       dyn_ovr_dlycnt_dq_oor4 :4;
    __I   uint32_t                       dyn_ovr_dlycnt_lanectrl_oor0 :1;
    __I   uint32_t                       dyn_ovr_dlycnt_lanectrl_oor1 :1;
    __I   uint32_t                       dyn_ovr_dlycnt_lanectrl_oor2 :1;
    __I   uint32_t                       dyn_ovr_dlycnt_lanectrl_oor3 :1;
    __I   uint32_t                       dyn_ovr_dlycnt_lanectrl_oor4 :1;
    __I   uint32_t                       dyn_ovr_dlycnt_dqsw270_oor0 :1;
    __I   uint32_t                       dyn_ovr_dlycnt_dqsw270_oor1 :1;
    __I   uint32_t                       dyn_ovr_dlycnt_dqsw270_oor2 :1;
    __I   uint32_t                       dyn_ovr_dlycnt_dqsw270_oor3 :1;
    __I   uint32_t                       dyn_ovr_dlycnt_dqsw270_oor4 :1;
    __I   uint32_t                       dyn_ovr_dlycnt_dqsw_oor0 :1;
    __I   uint32_t                       dyn_ovr_dlycnt_dqsw_oor1 :1;
    __I   uint32_t                       dyn_ovr_dlycnt_dqsw_oor2 :1;
    __I   uint32_t                       dyn_ovr_dlycnt_dqsw_oor3 :1;
    __I   uint32_t                       dyn_ovr_dlycnt_dqsw_oor4 :1;
    __I   uint32_t                       dyn_ovr_dlycnt_catrn_oor :1;
    __I   uint32_t                       dyn_ovr_dlycnt_ca_oor :1;
    __I   uint32_t                       reserved_01          :11;
  } bitfield;
} CFG_DDR_SGMII_PHY_expert_dlycnt_oor_reg1_TypeDef;

typedef union{                                                         /*!< expert_dlycnt_mv_rd_dly_reg register definition*/
  __IO  uint32_t                       expert_dlycnt_mv_rd_dly_reg;
  struct
  {
    __IO  uint32_t                       dyn_ovr_dlycnt_lanectrl_mv_rd_dly0 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_lanectrl_mv_rd_dly1 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_lanectrl_mv_rd_dly2 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_lanectrl_mv_rd_dly3 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_lanectrl_mv_rd_dly4 :1;
    __I   uint32_t                       reserved_01          :27;
  } bitfield;
} CFG_DDR_SGMII_PHY_expert_dlycnt_mv_rd_dly_reg_TypeDef;

typedef union{                                                         /*!< expert_dlycnt_pause register definition*/
  __IO  uint32_t                       expert_dlycnt_pause;
  struct
  {
    __IO  uint32_t                       dyn_ovr_dlycnt_lanectrl_pause_addcmd :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_lanectrl_pause_data0 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_lanectrl_pause_data1 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_lanectrl_pause_data2 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_lanectrl_pause_data3 :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_lanectrl_pause_data4 :1;
    __I   uint32_t                       reserved_01          :26;
  } bitfield;
} CFG_DDR_SGMII_PHY_expert_dlycnt_pause_TypeDef;

typedef union{                                                         /*!< expert_pllcnt register definition*/
  __IO  uint32_t                       expert_pllcnt;
  struct
  {
    __IO  uint32_t                       dyn_ovr_dlycnt_rotate :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_direction :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_loadphs_b :1;
    __IO  uint32_t                       dyn_ovr_dlycnt_phsel :4;
    __I   uint32_t                       reserved_01          :25;
  } bitfield;
} CFG_DDR_SGMII_PHY_expert_pllcnt_TypeDef;

typedef union{                                                         /*!< expert_dqlane_readback register definition*/
  __I   uint32_t                       expert_dqlane_readback;
  struct
  {
    __I   uint32_t                       dq_or                :5;
    __I   uint32_t                       dq_and               :5;
    __I   uint32_t                       burst_valid          :5;
    __I   uint32_t                       reserved_01          :17;
  } bitfield;
} CFG_DDR_SGMII_PHY_expert_dqlane_readback_TypeDef;

typedef union{                                                         /*!< expert_addcmd_ln_readback register definition*/
  __I   uint32_t                       expert_addcmd_ln_readback;
  struct
  {
    __I   uint32_t                       rx_refclk            :8;
    __I   uint32_t                       rx_addcmd            :4;
    __I   uint32_t                       rx_bclksclk          :2;
    __I   uint32_t                       reserved_01          :18;
  } bitfield;
} CFG_DDR_SGMII_PHY_expert_addcmd_ln_readback_TypeDef;

typedef union{                                                         /*!< expert_read_gate_controls register definition*/
  __IO  uint32_t                       expert_read_gate_controls;
  struct
  {
    __IO  uint32_t                       dyn_ovr_rdgate_clksel :10;
    __IO  uint32_t                       dyn_ovr_rdgate_steps180 :20;
    __I   uint32_t                       reserved_01          :2;
  } bitfield;
} CFG_DDR_SGMII_PHY_expert_read_gate_controls_TypeDef;

typedef union{                                                         /*!< expert_dq_dqs_optimization0 register definition*/
  __I   uint32_t                       expert_dq_dqs_optimization0;
  struct
  {
    __I   uint32_t                       dyn_ovr_dqdqs_data_match_lane0 :8;
    __I   uint32_t                       dyn_ovr_dqdqs_data_match_lane1 :8;
    __I   uint32_t                       dyn_ovr_dqdqs_data_match_lane2 :8;
    __I   uint32_t                       dyn_ovr_dqdqs_data_match_lane3 :8;
  } bitfield;
} CFG_DDR_SGMII_PHY_expert_dq_dqs_optimization0_TypeDef;

typedef union{                                                         /*!< expert_dq_dqs_optimization1 register definition*/
  __I   uint32_t                       expert_dq_dqs_optimization1;
  struct
  {
    __I   uint32_t                       dyn_ovr_dqdqs_data_match_lane4 :8;
    __I   uint32_t                       reserved_01          :24;
  } bitfield;
} CFG_DDR_SGMII_PHY_expert_dq_dqs_optimization1_TypeDef;

typedef union{                                                         /*!< expert_wrcalib register definition*/
  __IO  uint32_t                       expert_wrcalib;
  struct
  {
    __IO  uint32_t                       dyn_ovr_wrcalib_offset_lane0 :4;
    __IO  uint32_t                       dyn_ovr_wrcalib_offset_lane1 :4;
    __IO  uint32_t                       dyn_ovr_wrcalib_offset_lane2 :4;
    __IO  uint32_t                       dyn_ovr_wrcalib_offset_lane3 :4;
    __IO  uint32_t                       dyn_ovr_wrcalib_offset_lane4 :4;
    __I   uint32_t                       reserved_01          :12;
  } bitfield;
} CFG_DDR_SGMII_PHY_expert_wrcalib_TypeDef;

typedef union{                                                         /*!< expert_calif register definition*/
  __IO  uint32_t                       expert_calif;
  struct
  {
    __IO  uint32_t                       dyn_ovr_calif_read   :1;
    __IO  uint32_t                       dyn_ovr_calif_write  :1;
    __IO  uint32_t                       dyn_ovr_pattern_sel  :4;
    __I   uint32_t                       reserved_01          :26;
  } bitfield;
} CFG_DDR_SGMII_PHY_expert_calif_TypeDef;

typedef union{                                                         /*!< expert_calif_readback register definition*/
  __I   uint32_t                       expert_calif_readback;
  struct
  {
    __I   uint32_t                       wrcalib_pattern_match_lane0 :8;
    __I   uint32_t                       wrcalib_pattern_match_lane1 :8;
    __I   uint32_t                       wrcalib_pattern_match_lane2 :8;
    __I   uint32_t                       wrcalib_pattern_match_lane3 :8;
  } bitfield;
} CFG_DDR_SGMII_PHY_expert_calif_readback_TypeDef;

typedef union{                                                         /*!< expert_calif_readback1 register definition*/
  __I   uint32_t                       expert_calif_readback1;
  struct
  {
    __I   uint32_t                       wrcalib_pattern_match_lane4 :8;
    __I   uint32_t                       reserved_01          :24;
  } bitfield;
} CFG_DDR_SGMII_PHY_expert_calif_readback1_TypeDef;

typedef union{                                                         /*!< expert_dfi_status_override_to_shim register definition*/
  __IO  uint32_t                       expert_dfi_status_override_to_shim;
  struct
  {
    __IO  uint32_t                       dfi_init_complete_shim :1;
    __IO  uint32_t                       dfi_training_complete_shim :1;
    __IO  uint32_t                       dfi_wrlvl_en_shim    :1;
    __IO  uint32_t                       dfi_rdlvl_en_shim    :1;
    __IO  uint32_t                       dfi_rdlvl_gate_en_shim :1;
    __I   uint32_t                       reserved_01          :27;
  } bitfield;
} CFG_DDR_SGMII_PHY_expert_dfi_status_override_to_shim_TypeDef;

typedef union{                                                         /*!< tip_cfg_params register definition*/
  __IO  uint32_t                       tip_cfg_params;
  struct
  {
    __IO  uint32_t                       addcmd_offset        :3;
    __IO  uint32_t                       bcklsclk_offset      :3;
    __IO  uint32_t                       wrcalib_write_count  :7;
    __IO  uint32_t                       read_gate_min_reads  :9;
    __IO  uint32_t                       addrcmd_wait_count   :9;
    __I   uint32_t                       reserved_01          :1;
  } bitfield;
} CFG_DDR_SGMII_PHY_tip_cfg_params_TypeDef;

typedef union{                                                         /*!< tip_vref_param register definition*/
  __IO  uint32_t                       tip_vref_param;
  struct
  {
    __IO  uint32_t                       vref_override        :1;
    __IO  uint32_t                       data_vref            :8;
    __IO  uint32_t                       ca_vref              :8;
    __I   uint32_t                       reserved_01          :15;
  } bitfield;
} CFG_DDR_SGMII_PHY_tip_vref_param_TypeDef;

typedef union{                                                         /*!< lane_alignment_fifo_control register definition*/
  __IO  uint32_t                       lane_alignment_fifo_control;
  struct
  {
    __IO  uint32_t                       block_fifo           :1;
    __IO  uint32_t                       fifo_reset_n         :1;
    __I   uint32_t                       reserved_01          :30;
  } bitfield;
} CFG_DDR_SGMII_PHY_lane_alignment_fifo_control_TypeDef;

typedef union{                                                         /*!< SOFT_RESET_SGMII register definition*/
  __IO  uint32_t                       SOFT_RESET_SGMII;
  struct
  {
    __O   uint32_t                       nv_map_SGMII         :1;
    __O   uint32_t                       v_map_SGMII          :1;
    __I   uint32_t                       reserved_01          :6;
    __O   uint32_t                       periph_SGMII         :1;
    __I   uint32_t                       reserved_02          :7;
    __I   uint32_t                       blockid_SGMII        :16;
  } bitfield;
} CFG_DDR_SGMII_PHY_SOFT_RESET_SGMII_TypeDef;

typedef union{                                                         /*!< SGMII_MODE register definition*/
  __IO  uint32_t                       SGMII_MODE;
  struct
  {
    __IO  uint32_t                       reg_pll_en           :1;
    __IO  uint32_t                       reg_dll_en           :1;
    __IO  uint32_t                       reg_pvt_en           :1;
    __IO  uint32_t                       reg_bc_vrgen_en      :1;
    __IO  uint32_t                       reg_tx0_en           :1;
    __IO  uint32_t                       reg_rx0_en           :1;
    __IO  uint32_t                       reg_tx1_en           :1;
    __IO  uint32_t                       reg_rx1_en           :1;
    __IO  uint32_t                       reg_dll_lock_flt     :2;
    __IO  uint32_t                       reg_dll_adj_code     :4;
    __IO  uint32_t                       reg_rx0_cdr_reset_b  :1;
    __IO  uint32_t                       reg_rx1_cdr_reset_b  :1;
    __IO  uint32_t                       reg_bc_vrgen         :6;
    __IO  uint32_t                       reg_cdr_move_step    :1;
    __IO  uint32_t                       reg_refclk_en_rdiff  :1;
    __IO  uint32_t                       reg_bc_vs            :4;
    __IO  uint32_t                       reg_refclk_en_udrive_p :1;
    __IO  uint32_t                       reg_refclk_en_ins_hyst_p :1;
    __IO  uint32_t                       reg_refclk_en_udrive_n :1;
    __IO  uint32_t                       reg_refclk_en_ins_hyst_n :1;
  } bitfield;
} CFG_DDR_SGMII_PHY_SGMII_MODE_TypeDef;

typedef union{                                                         /*!< PLL_CNTL register definition*/
  __IO  uint32_t                       PLL_CNTL;
  struct
  {
    __IO  uint32_t                       reg_pll_postdiv      :7;
    __I   uint32_t                       aro_pll0_lock        :1;
    __IO  uint32_t                       reg_pll_rfdiv        :6;
    __IO  uint32_t                       reg_pll_reg_rfclk_sel :1;
    __IO  uint32_t                       reg_pll_lp_requires_lock :1;
    __IO  uint32_t                       reg_pll_intin        :12;
    __IO  uint32_t                       reg_pll_bwi          :2;
    __IO  uint32_t                       reg_pll_bwp          :2;
  } bitfield;
} CFG_DDR_SGMII_PHY_PLL_CNTL_TypeDef;

typedef union{                                                         /*!< CH0_CNTL register definition*/
  __IO  uint32_t                       CH0_CNTL;
  struct
  {
    __IO  uint32_t                       reg_tx0_wpu_p        :1;
    __IO  uint32_t                       reg_tx0_wpd_p        :1;
    __IO  uint32_t                       reg_tx0_slew_p       :2;
    __IO  uint32_t                       reg_tx0_drv_p        :4;
    __IO  uint32_t                       reg_tx0_odt_p        :4;
    __IO  uint32_t                       reg_tx0_odt_static_p :3;
    __IO  uint32_t                       reg_rx0_tim_long     :1;
    __IO  uint32_t                       reg_rx0_wpu_p        :1;
    __IO  uint32_t                       reg_rx0_wpd_p        :1;
    __IO  uint32_t                       reg_rx0_ibufmd_p     :3;
    __IO  uint32_t                       reg_rx0_eyewidth_p   :3;
    __IO  uint32_t                       reg_rx0_odt_p        :4;
    __IO  uint32_t                       reg_rx0_odt_static_p :3;
    __I   uint32_t                       reserved_01          :1;
  } bitfield;
} CFG_DDR_SGMII_PHY_CH0_CNTL_TypeDef;

typedef union{                                                         /*!< CH1_CNTL register definition*/
  __IO  uint32_t                       CH1_CNTL;
  struct
  {
    __IO  uint32_t                       reg_tx1_wpu_p        :1;
    __IO  uint32_t                       reg_tx1_wpd_p        :1;
    __IO  uint32_t                       reg_tx1_slew_p       :2;
    __IO  uint32_t                       reg_tx1_drv_p        :4;
    __IO  uint32_t                       reg_tx1_odt_p        :4;
    __IO  uint32_t                       reg_tx1_odt_static_p :3;
    __IO  uint32_t                       reg_rx1_tim_long     :1;
    __IO  uint32_t                       reg_rx1_wpu_p        :1;
    __IO  uint32_t                       reg_rx1_wpd_p        :1;
    __IO  uint32_t                       reg_rx1_ibufmd_p     :3;
    __IO  uint32_t                       reg_rx1_eyewidth_p   :3;
    __IO  uint32_t                       reg_rx1_odt_p        :4;
    __IO  uint32_t                       reg_rx1_odt_static_p :3;
    __I   uint32_t                       reserved_01          :1;
  } bitfield;
} CFG_DDR_SGMII_PHY_CH1_CNTL_TypeDef;

typedef union{                                                         /*!< RECAL_CNTL register definition*/
  __IO  uint32_t                       RECAL_CNTL;
  struct
  {
    __IO  uint32_t                       reg_recal_diff_range :5;
    __IO  uint32_t                       reg_recal_start_en   :1;
    __IO  uint32_t                       reg_pvt_calib_start  :1;
    __IO  uint32_t                       reg_pvt_calib_lock   :1;
    __IO  uint32_t                       reg_recal_upd        :1;
    __IO  uint32_t                       bc_vrgen_direction   :1;
    __IO  uint32_t                       bc_vrgen_load        :1;
    __IO  uint32_t                       bc_vrgen_move        :1;
    __IO  uint32_t                       reg_pvt_reg_calib_clkdiv :2;
    __IO  uint32_t                       reg_pvt_reg_calib_diffr_vsel :2;
    __I   uint32_t                       sro_dll_90_code      :7;
    __I   uint32_t                       sro_dll_lock         :1;
    __I   uint32_t                       sro_dll_st_code      :7;
    __I   uint32_t                       sro_recal_start      :1;
  } bitfield;
} CFG_DDR_SGMII_PHY_RECAL_CNTL_TypeDef;

typedef union{                                                         /*!< CLK_CNTL register definition*/
  __IO  uint32_t                       CLK_CNTL;
  struct
  {
    __IO  uint32_t                       reg_refclk_en_term_p :2;
    __IO  uint32_t                       reg_refclk_en_rxmode_p :2;
    __IO  uint32_t                       reg_refclk_en_term_n :2;
    __IO  uint32_t                       reg_refclk_en_rxmode_n :2;
    __IO  uint32_t                       reg_refclk_clkbuf_en_pullup :1;
    __IO  uint32_t                       reg_clkmux_fclk_sel  :3;
    __IO  uint32_t                       reg_clkmux_pll0_rfclk0_sel :2;
    __IO  uint32_t                       reg_clkmux_pll0_rfclk1_sel :2;
    __IO  uint32_t                       reg_clkmux_spare0    :16;
  } bitfield;
} CFG_DDR_SGMII_PHY_CLK_CNTL_TypeDef;

typedef union{                                                         /*!< DYN_CNTL register definition*/
  __IO  uint32_t                       DYN_CNTL;
  struct
  {
    __IO  uint32_t                       reg_pll_dynen        :1;
    __IO  uint32_t                       reg_dll_dynen        :1;
    __IO  uint32_t                       reg_pvt_dynen        :1;
    __IO  uint32_t                       reg_bc_dynen         :1;
    __IO  uint32_t                       reg_clkmux_dynen     :1;
    __IO  uint32_t                       reg_lane0_dynen      :1;
    __IO  uint32_t                       reg_lane1_dynen      :1;
    __I   uint32_t                       bc_vrgen_oor         :1;
    __IO  uint32_t                       reg_pll_soft_reset_periph :1;
    __IO  uint32_t                       reg_dll_soft_reset_periph :1;
    __IO  uint32_t                       reg_pvt_soft_reset_periph :1;
    __IO  uint32_t                       reg_bc_soft_reset_periph :1;
    __IO  uint32_t                       reg_clkmux_soft_reset_periph :1;
    __IO  uint32_t                       reg_lane0_soft_reset_periph :1;
    __IO  uint32_t                       reg_lane1_soft_reset_periph :1;
    __I   uint32_t                       pvt_calib_status     :1;
    __I   uint32_t                       aro_pll0_vco0ph_sel  :3;
    __I   uint32_t                       aro_pll0_vco1ph_sel  :3;
    __I   uint32_t                       aro_pll0_vco2ph_sel  :3;
    __I   uint32_t                       aro_pll0_vco3ph_sel  :3;
    __I   uint32_t                       aro_ref_diffr        :4;
  } bitfield;
} CFG_DDR_SGMII_PHY_DYN_CNTL_TypeDef;

typedef union{                                                         /*!< PVT_STAT register definition*/
  __IO  uint32_t                       PVT_STAT;
  struct
  {
    __I   uint32_t                       aro_ref_pcode        :6;
    __I   uint32_t                       aro_ioen_bnk         :1;
    __I   uint32_t                       aro_ioen_bnk_b       :1;
    __I   uint32_t                       aro_ref_ncode        :6;
    __I   uint32_t                       aro_calib_status     :1;
    __I   uint32_t                       aro_calib_status_b   :1;
    __I   uint32_t                       aro_pcode            :6;
    __I   uint32_t                       aro_calib_intrpt     :1;
    __I   uint32_t                       pvt_calib_intrpt     :1;
    __I   uint32_t                       aro_ncode            :6;
    __IO  uint32_t                       pvt_calib_lock       :1;
    __IO  uint32_t                       pvt_calib_start      :1;
  } bitfield;
} CFG_DDR_SGMII_PHY_PVT_STAT_TypeDef;

typedef union{                                                         /*!< SPARE_CNTL register definition*/
  __IO  uint32_t                       SPARE_CNTL;
  struct
  {
    __IO  uint32_t                       reg_spare            :32;
  } bitfield;
} CFG_DDR_SGMII_PHY_SPARE_CNTL_TypeDef;

typedef union{                                                         /*!< SPARE_STAT register definition*/
  __I   uint32_t                       SPARE_STAT;
  struct
  {
    __I   uint32_t                       sro_spare            :32;
  } bitfield;
} CFG_DDR_SGMII_PHY_SPARE_STAT_TypeDef;

/*------------ CFG_DDR_SGMII_PHY definition -----------*/
typedef struct
{
  __IO  CFG_DDR_SGMII_PHY_SOFT_RESET_DDR_PHY_TypeDef SOFT_RESET_DDR_PHY;                                 /*!< Offset: 0x0  */
  __IO  CFG_DDR_SGMII_PHY_DDRPHY_MODE_TypeDef DDRPHY_MODE;                                        /*!< Offset: 0x4  */
  __IO  CFG_DDR_SGMII_PHY_DDRPHY_STARTUP_TypeDef DDRPHY_STARTUP;                                     /*!< Offset: 0x8  */
  __IO   uint32_t                       UNUSED_SPACE0[29];                                  /*!< Offset: 0xc */
  __IO  CFG_DDR_SGMII_PHY_SOFT_RESET_MAIN_PLL_TypeDef SOFT_RESET_MAIN_PLL;                                /*!< Offset: 0x80  */
  __IO  CFG_DDR_SGMII_PHY_PLL_CTRL_MAIN_TypeDef PLL_CTRL_MAIN;                                      /*!< Offset: 0x84  */
  __IO  CFG_DDR_SGMII_PHY_PLL_REF_FB_MAIN_TypeDef PLL_REF_FB_MAIN;                                    /*!< Offset: 0x88  */
  __I  CFG_DDR_SGMII_PHY_PLL_FRACN_MAIN_TypeDef PLL_FRACN_MAIN;                                     /*!< Offset: 0x8c  */
  __IO  CFG_DDR_SGMII_PHY_PLL_DIV_0_1_MAIN_TypeDef PLL_DIV_0_1_MAIN;                                   /*!< Offset: 0x90  */
  __IO  CFG_DDR_SGMII_PHY_PLL_DIV_2_3_MAIN_TypeDef PLL_DIV_2_3_MAIN;                                   /*!< Offset: 0x94  */
  __IO  CFG_DDR_SGMII_PHY_PLL_CTRL2_MAIN_TypeDef PLL_CTRL2_MAIN;                                     /*!< Offset: 0x98  */
  __I   CFG_DDR_SGMII_PHY_PLL_CAL_MAIN_TypeDef PLL_CAL_MAIN;                                       /*!< Offset: 0x9c  */
  __IO  CFG_DDR_SGMII_PHY_PLL_PHADJ_MAIN_TypeDef PLL_PHADJ_MAIN;                                     /*!< Offset: 0xa0  */
  __I  CFG_DDR_SGMII_PHY_SSCG_REG_0_MAIN_TypeDef SSCG_REG_0_MAIN;                                    /*!< Offset: 0xa4  */
  __I  CFG_DDR_SGMII_PHY_SSCG_REG_1_MAIN_TypeDef SSCG_REG_1_MAIN;                                    /*!< Offset: 0xa8  */
  __IO  CFG_DDR_SGMII_PHY_SSCG_REG_2_MAIN_TypeDef SSCG_REG_2_MAIN;                                    /*!< Offset: 0xac  */
  __I  CFG_DDR_SGMII_PHY_SSCG_REG_3_MAIN_TypeDef SSCG_REG_3_MAIN;                                    /*!< Offset: 0xb0  */
  __IO  CFG_DDR_SGMII_PHY_RPC_RESET_MAIN_PLL_TypeDef RPC_RESET_MAIN_PLL;                                 /*!< Offset: 0xb4  */
  __I   uint32_t                       UNUSED_SPACE1[18];                                  /*!< Offset: 0xb8 */
  __IO  CFG_DDR_SGMII_PHY_SOFT_RESET_IOSCB_PLL_TypeDef SOFT_RESET_IOSCB_PLL;                               /*!< Offset: 0x100  */
  __IO  CFG_DDR_SGMII_PHY_PLL_CTRL_IOSCB_TypeDef PLL_CTRL_IOSCB;                                     /*!< Offset: 0x104  */
  __IO  CFG_DDR_SGMII_PHY_PLL_REF_FB_IOSCB_TypeDef PLL_REF_FB_IOSCB;                                   /*!< Offset: 0x108  */
  __I   CFG_DDR_SGMII_PHY_PLL_FRACN_IOSCB_TypeDef PLL_FRACN_IOSCB;                                    /*!< Offset: 0x10c  */
  __IO  CFG_DDR_SGMII_PHY_PLL_DIV_0_1_IOSCB_TypeDef PLL_DIV_0_1_IOSCB;                                  /*!< Offset: 0x110  */
  __IO  CFG_DDR_SGMII_PHY_PLL_DIV_2_3_IOSCB_TypeDef PLL_DIV_2_3_IOSCB;                                  /*!< Offset: 0x114  */
  __IO  CFG_DDR_SGMII_PHY_PLL_CTRL2_IOSCB_TypeDef PLL_CTRL2_IOSCB;                                    /*!< Offset: 0x118  */
  __I  CFG_DDR_SGMII_PHY_PLL_CAL_IOSCB_TypeDef PLL_CAL_IOSCB;                                      /*!< Offset: 0x11c  */
  __IO  CFG_DDR_SGMII_PHY_PLL_PHADJ_IOSCB_TypeDef PLL_PHADJ_IOSCB;                                    /*!< Offset: 0x120  */
  __I   CFG_DDR_SGMII_PHY_SSCG_REG_0_IOSCB_TypeDef SSCG_REG_0_IOSCB;                                   /*!< Offset: 0x124  */
  __I   CFG_DDR_SGMII_PHY_SSCG_REG_1_IOSCB_TypeDef SSCG_REG_1_IOSCB;                                   /*!< Offset: 0x128  */
  __IO  CFG_DDR_SGMII_PHY_SSCG_REG_2_IOSCB_TypeDef SSCG_REG_2_IOSCB;                                   /*!< Offset: 0x12c  */
  __I   CFG_DDR_SGMII_PHY_SSCG_REG_3_IOSCB_TypeDef SSCG_REG_3_IOSCB;                                   /*!< Offset: 0x130  */
  __IO  CFG_DDR_SGMII_PHY_RPC_RESET_IOSCB_TypeDef RPC_RESET_IOSCB;                                    /*!< Offset: 0x134  */
  __I   uint32_t                       UNUSED_SPACE2[18];                                  /*!< Offset: 0x138 */
  __IO  CFG_DDR_SGMII_PHY_SOFT_RESET_BANK_CTRL_TypeDef SOFT_RESET_BANK_CTRL;                               /*!< Offset: 0x180  */
  __IO  CFG_DDR_SGMII_PHY_DPC_BITS_TypeDef DPC_BITS;                                           /*!< Offset: 0x184  */
  __I   CFG_DDR_SGMII_PHY_BANK_STATUS_TypeDef BANK_STATUS;                                        /*!< Offset: 0x188  */
  __IO  CFG_DDR_SGMII_PHY_RPC_RESET_BANK_CTRL_TypeDef RPC_RESET_BANK_CTRL;                                /*!< Offset: 0x18c  */
  __I   uint32_t                       UNUSED_SPACE3[28];                                  /*!< Offset: 0x190 */
  __IO  CFG_DDR_SGMII_PHY_SOFT_RESET_IOCALIB_TypeDef SOFT_RESET_IOCALIB;                       /*!< Offset: 0x200  */
  __IO  CFG_DDR_SGMII_PHY_IOC_REG0_TypeDef IOC_REG0;                                           /*!< Offset: 0x204  */
  __I   CFG_DDR_SGMII_PHY_IOC_REG1_TypeDef IOC_REG1;                                           /*!< Offset: 0x208  */
  __I   CFG_DDR_SGMII_PHY_IOC_REG2_TypeDef IOC_REG2;                                           /*!< Offset: 0x20c  */
  __I   CFG_DDR_SGMII_PHY_IOC_REG3_TypeDef IOC_REG3;                                           /*!< Offset: 0x210  */
  __I   CFG_DDR_SGMII_PHY_IOC_REG4_TypeDef IOC_REG4;                                           /*!< Offset: 0x214  */
  __I   CFG_DDR_SGMII_PHY_IOC_REG5_TypeDef IOC_REG5;                                           /*!< Offset: 0x218  */
  __IO  CFG_DDR_SGMII_PHY_IOC_REG6_TypeDef IOC_REG6;                                           /*!< Offset: 0x21c  */
  __IO  CFG_DDR_SGMII_PHY_RPC_RESET_IOCALIB_TypeDef RPC_RESET_IOCALIB;                                  /*!< Offset: 0x220  */
  __IO  CFG_DDR_SGMII_PHY_rpc_calib_TypeDef rpc_calib;                                          /*!< Offset: 0x224  */
  __I   uint32_t                       UNUSED_SPACE4[22];                                  /*!< Offset: 0x228 */
  __IO  CFG_DDR_SGMII_PHY_SOFT_RESET_CFM_TypeDef SOFT_RESET_CFM;                                     /*!< Offset: 0x280  */
  __IO  CFG_DDR_SGMII_PHY_BCLKMUX_TypeDef BCLKMUX;                                            /*!< Offset: 0x284  */
  __IO  CFG_DDR_SGMII_PHY_PLL_CKMUX_TypeDef PLL_CKMUX;                                          /*!< Offset: 0x288  */
  __IO  CFG_DDR_SGMII_PHY_MSSCLKMUX_TypeDef MSSCLKMUX;                                          /*!< Offset: 0x28c  */
  __IO  CFG_DDR_SGMII_PHY_SPARE0_TypeDef SPARE0;                                             /*!< Offset: 0x290  */
  __I   CFG_DDR_SGMII_PHY_FMETER_ADDR_TypeDef FMETER_ADDR;                                        /*!< Offset: 0x294  */
  __I   CFG_DDR_SGMII_PHY_FMETER_DATAW_TypeDef FMETER_DATAW;                                       /*!< Offset: 0x298  */
  __I   CFG_DDR_SGMII_PHY_FMETER_DATAR_TypeDef FMETER_DATAR;                                       /*!< Offset: 0x29c  */
  __I   CFG_DDR_SGMII_PHY_TEST_CTRL_TypeDef TEST_CTRL;                                          /*!< Offset: 0x2a0  */
  __IO  CFG_DDR_SGMII_PHY_RPC_RESET_CFM_TypeDef RPC_RESET_CFM;                                      /*!< Offset: 0x2a4  */
  __I   uint32_t                       UNUSED_SPACE5[22];                                  /*!< Offset: 0x2a8 */
  __IO  CFG_DDR_SGMII_PHY_SOFT_RESET_DECODER_DRIVER_TypeDef SOFT_RESET_DECODER_DRIVER;                          /*!< Offset: 0x300  */
  __IO  CFG_DDR_SGMII_PHY_rpc1_DRV_TypeDef rpc1_DRV;                                           /*!< Offset: 0x304  */
  __IO  CFG_DDR_SGMII_PHY_rpc2_DRV_TypeDef rpc2_DRV;                                           /*!< Offset: 0x308  */
  __IO  CFG_DDR_SGMII_PHY_rpc3_DRV_TypeDef rpc3_DRV;                                           /*!< Offset: 0x30c  */
  __IO  CFG_DDR_SGMII_PHY_rpc4_DRV_TypeDef rpc4_DRV;                                           /*!< Offset: 0x310  */
  __I   uint32_t                       UNUSED_SPACE6[27];                                  /*!< Offset: 0x314 */
  __IO  CFG_DDR_SGMII_PHY_SOFT_RESET_DECODER_ODT_TypeDef SOFT_RESET_DECODER_ODT;                             /*!< Offset: 0x380  */
  __IO  CFG_DDR_SGMII_PHY_rpc1_ODT_TypeDef rpc1_ODT;                                           /*!< Offset: 0x384  */
  __IO  CFG_DDR_SGMII_PHY_rpc2_ODT_TypeDef rpc2_ODT;                                           /*!< Offset: 0x388  */
  __IO  CFG_DDR_SGMII_PHY_rpc3_ODT_TypeDef rpc3_ODT;                                           /*!< Offset: 0x38c  */
  __IO  CFG_DDR_SGMII_PHY_rpc4_ODT_TypeDef rpc4_ODT;                                           /*!< Offset: 0x390  */
  __IO  CFG_DDR_SGMII_PHY_rpc5_ODT_TypeDef rpc5_ODT;                                           /*!< Offset: 0x394  */
  __IO  CFG_DDR_SGMII_PHY_rpc6_ODT_TypeDef rpc6_ODT;                                           /*!< Offset: 0x398  */
  __IO  CFG_DDR_SGMII_PHY_rpc7_ODT_TypeDef rpc7_ODT;                                           /*!< Offset: 0x39c  */
  __IO  CFG_DDR_SGMII_PHY_rpc8_ODT_TypeDef rpc8_ODT;                                           /*!< Offset: 0x3a0  */
  __IO  CFG_DDR_SGMII_PHY_rpc9_ODT_TypeDef rpc9_ODT;                                           /*!< Offset: 0x3a4  */
  __IO  CFG_DDR_SGMII_PHY_rpc10_ODT_TypeDef rpc10_ODT;                                          /*!< Offset: 0x3a8  */
  __IO  CFG_DDR_SGMII_PHY_rpc11_ODT_TypeDef rpc11_ODT;                                          /*!< Offset: 0x3ac  */
  __I   uint32_t                       UNUSED_SPACE7[20];                                  /*!< Offset: 0x3b0 */
  __IO  CFG_DDR_SGMII_PHY_SOFT_RESET_DECODER_IO_TypeDef SOFT_RESET_DECODER_IO;                              /*!< Offset: 0x400  */
  __IO  CFG_DDR_SGMII_PHY_ovrt1_TypeDef ovrt1;                                              /*!< Offset: 0x404  */
  __IO  CFG_DDR_SGMII_PHY_ovrt2_TypeDef ovrt2;                                              /*!< Offset: 0x408  */
  __IO  CFG_DDR_SGMII_PHY_ovrt3_TypeDef ovrt3;                                              /*!< Offset: 0x40c  */
  __IO  CFG_DDR_SGMII_PHY_ovrt4_TypeDef ovrt4;                                              /*!< Offset: 0x410  */
  __IO  CFG_DDR_SGMII_PHY_ovrt5_TypeDef ovrt5;                                              /*!< Offset: 0x414  */
  __IO  CFG_DDR_SGMII_PHY_ovrt6_TypeDef ovrt6;                                              /*!< Offset: 0x418  */
  __IO  CFG_DDR_SGMII_PHY_ovrt7_TypeDef ovrt7;                                              /*!< Offset: 0x41c  */
  __IO  CFG_DDR_SGMII_PHY_ovrt8_TypeDef ovrt8;                                              /*!< Offset: 0x420  */
  __IO  CFG_DDR_SGMII_PHY_ovrt9_TypeDef ovrt9;                                              /*!< Offset: 0x424  */
  __IO  CFG_DDR_SGMII_PHY_ovrt10_TypeDef ovrt10;                                             /*!< Offset: 0x428  */
  __IO  CFG_DDR_SGMII_PHY_ovrt11_TypeDef ovrt11;                                             /*!< Offset: 0x42c  */
  __IO  CFG_DDR_SGMII_PHY_ovrt12_TypeDef ovrt12;                                             /*!< Offset: 0x430  */
  __IO  CFG_DDR_SGMII_PHY_ovrt13_TypeDef ovrt13;                                             /*!< Offset: 0x434  */
  __IO  CFG_DDR_SGMII_PHY_ovrt14_TypeDef ovrt14;                                             /*!< Offset: 0x438  */
  __IO  CFG_DDR_SGMII_PHY_ovrt15_TypeDef ovrt15;                                             /*!< Offset: 0x43c  */
  __IO  CFG_DDR_SGMII_PHY_ovrt16_TypeDef ovrt16;                                             /*!< Offset: 0x440  */
  __IO  CFG_DDR_SGMII_PHY_rpc17_TypeDef rpc17;                                              /*!< Offset: 0x444  */
  __IO  CFG_DDR_SGMII_PHY_rpc18_TypeDef rpc18;                                              /*!< Offset: 0x448  */
  __IO  CFG_DDR_SGMII_PHY_rpc19_TypeDef rpc19;                                              /*!< Offset: 0x44c  */
  __IO  CFG_DDR_SGMII_PHY_rpc20_TypeDef rpc20;                                              /*!< Offset: 0x450  */
  __IO  CFG_DDR_SGMII_PHY_rpc21_TypeDef rpc21;                                              /*!< Offset: 0x454  */
  __IO  CFG_DDR_SGMII_PHY_rpc22_TypeDef rpc22;                                              /*!< Offset: 0x458  */
  __IO  CFG_DDR_SGMII_PHY_rpc23_TypeDef rpc23;                                              /*!< Offset: 0x45c  */
  __IO  CFG_DDR_SGMII_PHY_rpc24_TypeDef rpc24;                                              /*!< Offset: 0x460  */
  __IO  CFG_DDR_SGMII_PHY_rpc25_TypeDef rpc25;                                              /*!< Offset: 0x464  */
  __IO  CFG_DDR_SGMII_PHY_rpc26_TypeDef rpc26;                                              /*!< Offset: 0x468  */
  __IO  CFG_DDR_SGMII_PHY_rpc27_TypeDef rpc27;                                              /*!< Offset: 0x46c  */
  __IO  CFG_DDR_SGMII_PHY_rpc28_TypeDef rpc28;                                              /*!< Offset: 0x470  */
  __IO  CFG_DDR_SGMII_PHY_rpc29_TypeDef rpc29;                                              /*!< Offset: 0x474  */
  __IO  CFG_DDR_SGMII_PHY_rpc30_TypeDef rpc30;                                              /*!< Offset: 0x478  */
  __IO  CFG_DDR_SGMII_PHY_rpc31_TypeDef rpc31;                                              /*!< Offset: 0x47c  */
  __IO  CFG_DDR_SGMII_PHY_rpc32_TypeDef rpc32;                                              /*!< Offset: 0x480  */
  __IO  CFG_DDR_SGMII_PHY_rpc33_TypeDef rpc33;                                              /*!< Offset: 0x484  */
  __IO  CFG_DDR_SGMII_PHY_rpc34_TypeDef rpc34;                                              /*!< Offset: 0x488  */
  __IO  CFG_DDR_SGMII_PHY_rpc35_TypeDef rpc35;                                              /*!< Offset: 0x48c  */
  __IO  CFG_DDR_SGMII_PHY_rpc36_TypeDef rpc36;                                              /*!< Offset: 0x490  */
  __IO  CFG_DDR_SGMII_PHY_rpc37_TypeDef rpc37;                                              /*!< Offset: 0x494  */
  __IO  CFG_DDR_SGMII_PHY_rpc38_TypeDef rpc38;                                              /*!< Offset: 0x498  */
  __IO  CFG_DDR_SGMII_PHY_rpc39_TypeDef rpc39;                                              /*!< Offset: 0x49c  */
  __IO  CFG_DDR_SGMII_PHY_rpc40_TypeDef rpc40;                                              /*!< Offset: 0x4a0  */
  __IO  CFG_DDR_SGMII_PHY_rpc41_TypeDef rpc41;                                              /*!< Offset: 0x4a4  */
  __IO  CFG_DDR_SGMII_PHY_rpc42_TypeDef rpc42;                                              /*!< Offset: 0x4a8  */
  __IO  CFG_DDR_SGMII_PHY_rpc43_TypeDef rpc43;                                              /*!< Offset: 0x4ac  */
  __IO  CFG_DDR_SGMII_PHY_rpc44_TypeDef rpc44;                                              /*!< Offset: 0x4b0  */
  __IO  CFG_DDR_SGMII_PHY_rpc45_TypeDef rpc45;                                              /*!< Offset: 0x4b4  */
  __IO  CFG_DDR_SGMII_PHY_rpc46_TypeDef rpc46;                                              /*!< Offset: 0x4b8  */
  __IO  CFG_DDR_SGMII_PHY_rpc47_TypeDef rpc47;                                              /*!< Offset: 0x4bc  */
  __IO  CFG_DDR_SGMII_PHY_rpc48_TypeDef rpc48;                                              /*!< Offset: 0x4c0  */
  __IO  CFG_DDR_SGMII_PHY_rpc49_TypeDef rpc49;                                              /*!< Offset: 0x4c4  */
  __IO  CFG_DDR_SGMII_PHY_rpc50_TypeDef rpc50;                                              /*!< Offset: 0x4c8  */
  __IO  CFG_DDR_SGMII_PHY_rpc51_TypeDef rpc51;                                              /*!< Offset: 0x4cc  */
  __IO  CFG_DDR_SGMII_PHY_rpc52_TypeDef rpc52;                                              /*!< Offset: 0x4d0  */
  __IO  CFG_DDR_SGMII_PHY_rpc53_TypeDef rpc53;                                              /*!< Offset: 0x4d4  */
  __IO  CFG_DDR_SGMII_PHY_rpc54_TypeDef rpc54;                                              /*!< Offset: 0x4d8  */
  __IO  CFG_DDR_SGMII_PHY_rpc55_TypeDef rpc55;                                              /*!< Offset: 0x4dc  */
  __IO  CFG_DDR_SGMII_PHY_rpc56_TypeDef rpc56;                                              /*!< Offset: 0x4e0  */
  __IO  CFG_DDR_SGMII_PHY_rpc57_TypeDef rpc57;                                              /*!< Offset: 0x4e4  */
  __IO  CFG_DDR_SGMII_PHY_rpc58_TypeDef rpc58;                                              /*!< Offset: 0x4e8  */
  __IO  CFG_DDR_SGMII_PHY_rpc59_TypeDef rpc59;                                              /*!< Offset: 0x4ec  */
  __IO  CFG_DDR_SGMII_PHY_rpc60_TypeDef rpc60;                                              /*!< Offset: 0x4f0  */
  __IO  CFG_DDR_SGMII_PHY_rpc61_TypeDef rpc61;                                              /*!< Offset: 0x4f4  */
  __IO  CFG_DDR_SGMII_PHY_rpc62_TypeDef rpc62;                                              /*!< Offset: 0x4f8  */
  __IO  CFG_DDR_SGMII_PHY_rpc63_TypeDef rpc63;                                              /*!< Offset: 0x4fc  */
  __IO  CFG_DDR_SGMII_PHY_rpc64_TypeDef rpc64;                                              /*!< Offset: 0x500  */
  __IO  CFG_DDR_SGMII_PHY_rpc65_TypeDef rpc65;                                              /*!< Offset: 0x504  */
  __IO  CFG_DDR_SGMII_PHY_rpc66_TypeDef rpc66;                                              /*!< Offset: 0x508  */
  __IO  CFG_DDR_SGMII_PHY_rpc67_TypeDef rpc67;                                              /*!< Offset: 0x50c  */
  __IO  CFG_DDR_SGMII_PHY_rpc68_TypeDef rpc68;                                              /*!< Offset: 0x510  */
  __IO  CFG_DDR_SGMII_PHY_rpc69_TypeDef rpc69;                                              /*!< Offset: 0x514  */
  __IO  CFG_DDR_SGMII_PHY_rpc70_TypeDef rpc70;                                              /*!< Offset: 0x518  */
  __IO  CFG_DDR_SGMII_PHY_rpc71_TypeDef rpc71;                                              /*!< Offset: 0x51c  */
  __IO  CFG_DDR_SGMII_PHY_rpc72_TypeDef rpc72;                                              /*!< Offset: 0x520  */
  __IO  CFG_DDR_SGMII_PHY_rpc73_TypeDef rpc73;                                              /*!< Offset: 0x524  */
  __IO  CFG_DDR_SGMII_PHY_rpc74_TypeDef rpc74;                                              /*!< Offset: 0x528  */
  __IO  CFG_DDR_SGMII_PHY_rpc75_TypeDef rpc75;                                              /*!< Offset: 0x52c  */
  __IO  CFG_DDR_SGMII_PHY_rpc76_TypeDef rpc76;                                              /*!< Offset: 0x530  */
  __IO  CFG_DDR_SGMII_PHY_rpc77_TypeDef rpc77;                                              /*!< Offset: 0x534  */
  __IO  CFG_DDR_SGMII_PHY_rpc78_TypeDef rpc78;                                              /*!< Offset: 0x538  */
  __IO  CFG_DDR_SGMII_PHY_rpc79_TypeDef rpc79;                                              /*!< Offset: 0x53c  */
  __IO  CFG_DDR_SGMII_PHY_rpc80_TypeDef rpc80;                                              /*!< Offset: 0x540  */
  __IO  CFG_DDR_SGMII_PHY_rpc81_TypeDef rpc81;                                              /*!< Offset: 0x544  */
  __IO  CFG_DDR_SGMII_PHY_rpc82_TypeDef rpc82;                                              /*!< Offset: 0x548  */
  __IO  CFG_DDR_SGMII_PHY_rpc83_TypeDef rpc83;                                              /*!< Offset: 0x54c  */
  __IO  CFG_DDR_SGMII_PHY_rpc84_TypeDef rpc84;                                              /*!< Offset: 0x550  */
  __IO  CFG_DDR_SGMII_PHY_rpc85_TypeDef rpc85;                                              /*!< Offset: 0x554  */
  __IO  CFG_DDR_SGMII_PHY_rpc86_TypeDef rpc86;                                              /*!< Offset: 0x558  */
  __IO  CFG_DDR_SGMII_PHY_rpc87_TypeDef rpc87;                                              /*!< Offset: 0x55c  */
  __IO  CFG_DDR_SGMII_PHY_rpc88_TypeDef rpc88;                                              /*!< Offset: 0x560  */
  __IO  CFG_DDR_SGMII_PHY_rpc89_TypeDef rpc89;                                              /*!< Offset: 0x564  */
  __IO  CFG_DDR_SGMII_PHY_rpc90_TypeDef rpc90;                                              /*!< Offset: 0x568  */
  __IO  CFG_DDR_SGMII_PHY_rpc91_TypeDef rpc91;                                              /*!< Offset: 0x56c  */
  __IO  CFG_DDR_SGMII_PHY_rpc92_TypeDef rpc92;                                              /*!< Offset: 0x570  */
  __IO  CFG_DDR_SGMII_PHY_rpc93_TypeDef rpc93;                                              /*!< Offset: 0x574  */
  __IO  CFG_DDR_SGMII_PHY_rpc94_TypeDef rpc94;                                              /*!< Offset: 0x578  */
  __IO  CFG_DDR_SGMII_PHY_rpc95_TypeDef rpc95;                                              /*!< Offset: 0x57c  */
  __IO  CFG_DDR_SGMII_PHY_rpc96_TypeDef rpc96;                                              /*!< Offset: 0x580  */
  __IO  CFG_DDR_SGMII_PHY_rpc97_TypeDef rpc97;                                              /*!< Offset: 0x584  */
  __IO  CFG_DDR_SGMII_PHY_rpc98_TypeDef rpc98;                                              /*!< Offset: 0x588  */
  __IO  CFG_DDR_SGMII_PHY_rpc99_TypeDef rpc99;                                              /*!< Offset: 0x58c  */
  __IO  CFG_DDR_SGMII_PHY_rpc100_TypeDef rpc100;                                             /*!< Offset: 0x590  */
  __IO  CFG_DDR_SGMII_PHY_rpc101_TypeDef rpc101;                                             /*!< Offset: 0x594  */
  __IO  CFG_DDR_SGMII_PHY_rpc102_TypeDef rpc102;                                             /*!< Offset: 0x598  */
  __IO  CFG_DDR_SGMII_PHY_rpc103_TypeDef rpc103;                                             /*!< Offset: 0x59c  */
  __IO  CFG_DDR_SGMII_PHY_rpc104_TypeDef rpc104;                                             /*!< Offset: 0x5a0  */
  __IO  CFG_DDR_SGMII_PHY_rpc105_TypeDef rpc105;                                             /*!< Offset: 0x5a4  */
  __IO  CFG_DDR_SGMII_PHY_rpc106_TypeDef rpc106;                                             /*!< Offset: 0x5a8  */
  __IO  CFG_DDR_SGMII_PHY_rpc107_TypeDef rpc107;                                             /*!< Offset: 0x5ac  */
  __IO  CFG_DDR_SGMII_PHY_rpc108_TypeDef rpc108;                                             /*!< Offset: 0x5b0  */
  __IO  CFG_DDR_SGMII_PHY_rpc109_TypeDef rpc109;                                             /*!< Offset: 0x5b4  */
  __IO  CFG_DDR_SGMII_PHY_rpc110_TypeDef rpc110;                                             /*!< Offset: 0x5b8  */
  __IO  CFG_DDR_SGMII_PHY_rpc111_TypeDef rpc111;                                             /*!< Offset: 0x5bc  */
  __IO  CFG_DDR_SGMII_PHY_rpc112_TypeDef rpc112;                                             /*!< Offset: 0x5c0  */
  __IO  CFG_DDR_SGMII_PHY_rpc113_TypeDef rpc113;                                             /*!< Offset: 0x5c4  */
  __IO  CFG_DDR_SGMII_PHY_rpc114_TypeDef rpc114;                                             /*!< Offset: 0x5c8  */
  __IO  CFG_DDR_SGMII_PHY_rpc115_TypeDef rpc115;                                             /*!< Offset: 0x5cc  */
  __IO  CFG_DDR_SGMII_PHY_rpc116_TypeDef rpc116;                                             /*!< Offset: 0x5d0  */
  __IO  CFG_DDR_SGMII_PHY_rpc117_TypeDef rpc117;                                             /*!< Offset: 0x5d4  */
  __IO  CFG_DDR_SGMII_PHY_rpc118_TypeDef rpc118;                                             /*!< Offset: 0x5d8  */
  __IO  CFG_DDR_SGMII_PHY_rpc119_TypeDef rpc119;                                             /*!< Offset: 0x5dc  */
  __IO  CFG_DDR_SGMII_PHY_rpc120_TypeDef rpc120;                                             /*!< Offset: 0x5e0  */
  __IO  CFG_DDR_SGMII_PHY_rpc121_TypeDef rpc121;                                             /*!< Offset: 0x5e4  */
  __IO  CFG_DDR_SGMII_PHY_rpc122_TypeDef rpc122;                                             /*!< Offset: 0x5e8  */
  __IO  CFG_DDR_SGMII_PHY_rpc123_TypeDef rpc123;                                             /*!< Offset: 0x5ec  */
  __IO  CFG_DDR_SGMII_PHY_rpc124_TypeDef rpc124;                                             /*!< Offset: 0x5f0  */
  __IO  CFG_DDR_SGMII_PHY_rpc125_TypeDef rpc125;                                             /*!< Offset: 0x5f4  */
  __IO  CFG_DDR_SGMII_PHY_rpc126_TypeDef rpc126;                                             /*!< Offset: 0x5f8  */
  __IO  CFG_DDR_SGMII_PHY_rpc127_TypeDef rpc127;                                             /*!< Offset: 0x5fc  */
  __IO  CFG_DDR_SGMII_PHY_rpc128_TypeDef rpc128;                                             /*!< Offset: 0x600  */
  __IO  CFG_DDR_SGMII_PHY_rpc129_TypeDef rpc129;                                             /*!< Offset: 0x604  */
  __IO  CFG_DDR_SGMII_PHY_rpc130_TypeDef rpc130;                                             /*!< Offset: 0x608  */
  __IO  CFG_DDR_SGMII_PHY_rpc131_TypeDef rpc131;                                             /*!< Offset: 0x60c  */
  __IO  CFG_DDR_SGMII_PHY_rpc132_TypeDef rpc132;                                             /*!< Offset: 0x610  */
  __IO  CFG_DDR_SGMII_PHY_rpc133_TypeDef rpc133;                                             /*!< Offset: 0x614  */
  __IO  CFG_DDR_SGMII_PHY_rpc134_TypeDef rpc134;                                             /*!< Offset: 0x618  */
  __IO  CFG_DDR_SGMII_PHY_rpc135_TypeDef rpc135;                                             /*!< Offset: 0x61c  */
  __IO  CFG_DDR_SGMII_PHY_rpc136_TypeDef rpc136;                                             /*!< Offset: 0x620  */
  __IO  CFG_DDR_SGMII_PHY_rpc137_TypeDef rpc137;                                             /*!< Offset: 0x624  */
  __IO  CFG_DDR_SGMII_PHY_rpc138_TypeDef rpc138;                                             /*!< Offset: 0x628  */
  __IO  CFG_DDR_SGMII_PHY_rpc139_TypeDef rpc139;                                             /*!< Offset: 0x62c  */
  __IO  CFG_DDR_SGMII_PHY_rpc140_TypeDef rpc140;                                             /*!< Offset: 0x630  */
  __IO  CFG_DDR_SGMII_PHY_rpc141_TypeDef rpc141;                                             /*!< Offset: 0x634  */
  __IO  CFG_DDR_SGMII_PHY_rpc142_TypeDef rpc142;                                             /*!< Offset: 0x638  */
  __IO  CFG_DDR_SGMII_PHY_rpc143_TypeDef rpc143;                                             /*!< Offset: 0x63c  */
  __IO  CFG_DDR_SGMII_PHY_rpc144_TypeDef rpc144;                                             /*!< Offset: 0x640  */
  __IO  CFG_DDR_SGMII_PHY_rpc145_TypeDef rpc145;                                             /*!< Offset: 0x644  */
  __IO  CFG_DDR_SGMII_PHY_rpc146_TypeDef rpc146;                                             /*!< Offset: 0x648  */
  __IO  CFG_DDR_SGMII_PHY_rpc147_TypeDef rpc147;                                             /*!< Offset: 0x64c  */
  __IO  CFG_DDR_SGMII_PHY_rpc148_TypeDef rpc148;                                             /*!< Offset: 0x650  */
  __IO  CFG_DDR_SGMII_PHY_rpc149_TypeDef rpc149;                                             /*!< Offset: 0x654  */
  __IO  CFG_DDR_SGMII_PHY_rpc150_TypeDef rpc150;                                             /*!< Offset: 0x658  */
  __IO  CFG_DDR_SGMII_PHY_rpc151_TypeDef rpc151;                                             /*!< Offset: 0x65c  */
  __IO  CFG_DDR_SGMII_PHY_rpc152_TypeDef rpc152;                                             /*!< Offset: 0x660  */
  __IO  CFG_DDR_SGMII_PHY_rpc153_TypeDef rpc153;                                             /*!< Offset: 0x664  */
  __IO  CFG_DDR_SGMII_PHY_rpc154_TypeDef rpc154;                                             /*!< Offset: 0x668  */
  __IO  CFG_DDR_SGMII_PHY_rpc155_TypeDef rpc155;                                             /*!< Offset: 0x66c  */
  __IO  CFG_DDR_SGMII_PHY_rpc156_TypeDef rpc156;                                             /*!< Offset: 0x670  */
  __IO  CFG_DDR_SGMII_PHY_rpc157_TypeDef rpc157;                                             /*!< Offset: 0x674  */
  __IO  CFG_DDR_SGMII_PHY_rpc158_TypeDef rpc158;                                             /*!< Offset: 0x678  */
  __IO  CFG_DDR_SGMII_PHY_rpc159_TypeDef rpc159;                                             /*!< Offset: 0x67c  */
  __IO  CFG_DDR_SGMII_PHY_rpc160_TypeDef rpc160;                                             /*!< Offset: 0x680  */
  __IO  CFG_DDR_SGMII_PHY_rpc161_TypeDef rpc161;                                             /*!< Offset: 0x684  */
  __IO  CFG_DDR_SGMII_PHY_rpc162_TypeDef rpc162;                                             /*!< Offset: 0x688  */
  __IO  CFG_DDR_SGMII_PHY_rpc163_TypeDef rpc163;                                             /*!< Offset: 0x68c  */
  __IO  CFG_DDR_SGMII_PHY_rpc164_TypeDef rpc164;                                             /*!< Offset: 0x690  */
  __IO  CFG_DDR_SGMII_PHY_rpc165_TypeDef rpc165;                                             /*!< Offset: 0x694  */
  __IO  CFG_DDR_SGMII_PHY_rpc166_TypeDef rpc166;                                             /*!< Offset: 0x698  */
  __IO  CFG_DDR_SGMII_PHY_rpc167_TypeDef rpc167;                                             /*!< Offset: 0x69c  */
  __IO  CFG_DDR_SGMII_PHY_rpc168_TypeDef rpc168;                                             /*!< Offset: 0x6a0  */
  __IO  CFG_DDR_SGMII_PHY_rpc169_TypeDef rpc169;                                             /*!< Offset: 0x6a4  */
  __IO  CFG_DDR_SGMII_PHY_rpc170_TypeDef rpc170;                                             /*!< Offset: 0x6a8  */
  __IO  CFG_DDR_SGMII_PHY_rpc171_TypeDef rpc171;                                             /*!< Offset: 0x6ac  */
  __IO  CFG_DDR_SGMII_PHY_rpc172_TypeDef rpc172;                                             /*!< Offset: 0x6b0  */
  __IO  CFG_DDR_SGMII_PHY_rpc173_TypeDef rpc173;                                             /*!< Offset: 0x6b4  */
  __IO  CFG_DDR_SGMII_PHY_rpc174_TypeDef rpc174;                                             /*!< Offset: 0x6b8  */
  __IO  CFG_DDR_SGMII_PHY_rpc175_TypeDef rpc175;                                             /*!< Offset: 0x6bc  */
  __IO  CFG_DDR_SGMII_PHY_rpc176_TypeDef rpc176;                                             /*!< Offset: 0x6c0  */
  __IO  CFG_DDR_SGMII_PHY_rpc177_TypeDef rpc177;                                             /*!< Offset: 0x6c4  */
  __IO  CFG_DDR_SGMII_PHY_rpc178_TypeDef rpc178;                                             /*!< Offset: 0x6c8  */
  __IO  CFG_DDR_SGMII_PHY_rpc179_TypeDef rpc179;                                             /*!< Offset: 0x6cc  */
  __IO  CFG_DDR_SGMII_PHY_rpc180_TypeDef rpc180;                                             /*!< Offset: 0x6d0  */
  __IO  CFG_DDR_SGMII_PHY_rpc181_TypeDef rpc181;                                             /*!< Offset: 0x6d4  */
  __IO  CFG_DDR_SGMII_PHY_rpc182_TypeDef rpc182;                                             /*!< Offset: 0x6d8  */
  __IO  CFG_DDR_SGMII_PHY_rpc183_TypeDef rpc183;                                             /*!< Offset: 0x6dc  */
  __IO  CFG_DDR_SGMII_PHY_rpc184_TypeDef rpc184;                                             /*!< Offset: 0x6e0  */
  __IO  CFG_DDR_SGMII_PHY_rpc185_TypeDef rpc185;                                             /*!< Offset: 0x6e4  */
  __IO  CFG_DDR_SGMII_PHY_rpc186_TypeDef rpc186;                                             /*!< Offset: 0x6e8  */
  __IO  CFG_DDR_SGMII_PHY_rpc187_TypeDef rpc187;                                             /*!< Offset: 0x6ec  */
  __IO  CFG_DDR_SGMII_PHY_rpc188_TypeDef rpc188;                                             /*!< Offset: 0x6f0  */
  __IO  CFG_DDR_SGMII_PHY_rpc189_TypeDef rpc189;                                             /*!< Offset: 0x6f4  */
  __IO  CFG_DDR_SGMII_PHY_rpc190_TypeDef rpc190;                                             /*!< Offset: 0x6f8  */
  __IO  CFG_DDR_SGMII_PHY_rpc191_TypeDef rpc191;                                             /*!< Offset: 0x6fc  */
  __IO  CFG_DDR_SGMII_PHY_rpc192_TypeDef rpc192;                                             /*!< Offset: 0x700  */
  __IO  CFG_DDR_SGMII_PHY_rpc193_TypeDef rpc193;                                             /*!< Offset: 0x704  */
  __IO  CFG_DDR_SGMII_PHY_rpc194_TypeDef rpc194;                                             /*!< Offset: 0x708  */
  __IO  CFG_DDR_SGMII_PHY_rpc195_TypeDef rpc195;                                             /*!< Offset: 0x70c  */
  __IO  CFG_DDR_SGMII_PHY_rpc196_TypeDef rpc196;                                             /*!< Offset: 0x710  */
  __IO  CFG_DDR_SGMII_PHY_rpc197_TypeDef rpc197;                                             /*!< Offset: 0x714  */
  __IO  CFG_DDR_SGMII_PHY_rpc198_TypeDef rpc198;                                             /*!< Offset: 0x718  */
  __IO  CFG_DDR_SGMII_PHY_rpc199_TypeDef rpc199;                                             /*!< Offset: 0x71c  */
  __IO  CFG_DDR_SGMII_PHY_rpc200_TypeDef rpc200;                                             /*!< Offset: 0x720  */
  __IO  CFG_DDR_SGMII_PHY_rpc201_TypeDef rpc201;                                             /*!< Offset: 0x724  */
  __IO  CFG_DDR_SGMII_PHY_rpc202_TypeDef rpc202;                                             /*!< Offset: 0x728  */
  __IO  CFG_DDR_SGMII_PHY_rpc203_TypeDef rpc203;                                             /*!< Offset: 0x72c  */
  __IO  CFG_DDR_SGMII_PHY_rpc204_TypeDef rpc204;                                             /*!< Offset: 0x730  */
  __IO  CFG_DDR_SGMII_PHY_rpc205_TypeDef rpc205;                                             /*!< Offset: 0x734  */
  __IO  CFG_DDR_SGMII_PHY_rpc206_TypeDef rpc206;                                             /*!< Offset: 0x738  */
  __IO  CFG_DDR_SGMII_PHY_rpc207_TypeDef rpc207;                                             /*!< Offset: 0x73c  */
  __IO  CFG_DDR_SGMII_PHY_rpc208_TypeDef rpc208;                                             /*!< Offset: 0x740  */
  __IO  CFG_DDR_SGMII_PHY_rpc209_TypeDef rpc209;                                             /*!< Offset: 0x744  */
  __IO  CFG_DDR_SGMII_PHY_rpc210_TypeDef rpc210;                                             /*!< Offset: 0x748  */
  __IO  CFG_DDR_SGMII_PHY_rpc211_TypeDef rpc211;                                             /*!< Offset: 0x74c  */
  __IO  CFG_DDR_SGMII_PHY_rpc212_TypeDef rpc212;                                             /*!< Offset: 0x750  */
  __IO  CFG_DDR_SGMII_PHY_rpc213_TypeDef rpc213;                                             /*!< Offset: 0x754  */
  __IO  CFG_DDR_SGMII_PHY_rpc214_TypeDef rpc214;                                             /*!< Offset: 0x758  */
  __IO  CFG_DDR_SGMII_PHY_rpc215_TypeDef rpc215;                                             /*!< Offset: 0x75c  */
  __IO  CFG_DDR_SGMII_PHY_rpc216_TypeDef rpc216;                                             /*!< Offset: 0x760  */
  __IO  CFG_DDR_SGMII_PHY_rpc217_TypeDef rpc217;                                             /*!< Offset: 0x764  */
  __IO  CFG_DDR_SGMII_PHY_rpc218_TypeDef rpc218;                                             /*!< Offset: 0x768  */
  __IO  CFG_DDR_SGMII_PHY_rpc219_TypeDef rpc219;                                             /*!< Offset: 0x76c  */
  __IO  CFG_DDR_SGMII_PHY_rpc220_TypeDef rpc220;                                             /*!< Offset: 0x770  */
  __IO  CFG_DDR_SGMII_PHY_rpc221_TypeDef rpc221;                                             /*!< Offset: 0x774  */
  __IO  CFG_DDR_SGMII_PHY_rpc222_TypeDef rpc222;                                             /*!< Offset: 0x778  */
  __IO  CFG_DDR_SGMII_PHY_rpc223_TypeDef rpc223;                                             /*!< Offset: 0x77c  */
  __IO  CFG_DDR_SGMII_PHY_rpc224_TypeDef rpc224;                                             /*!< Offset: 0x780  */
  __IO  CFG_DDR_SGMII_PHY_rpc225_TypeDef rpc225;                                             /*!< Offset: 0x784  */
  __IO  CFG_DDR_SGMII_PHY_rpc226_TypeDef rpc226;                                             /*!< Offset: 0x788  */
  __IO  CFG_DDR_SGMII_PHY_rpc227_TypeDef rpc227;                                             /*!< Offset: 0x78c  */
  __IO  CFG_DDR_SGMII_PHY_rpc228_TypeDef rpc228;                                             /*!< Offset: 0x790  */
  __IO  CFG_DDR_SGMII_PHY_rpc229_TypeDef rpc229;                                             /*!< Offset: 0x794  */
  __IO  CFG_DDR_SGMII_PHY_rpc230_TypeDef rpc230;                                             /*!< Offset: 0x798  */
  __IO  CFG_DDR_SGMII_PHY_rpc231_TypeDef rpc231;                                             /*!< Offset: 0x79c  */
  __IO  CFG_DDR_SGMII_PHY_rpc232_TypeDef rpc232;                                             /*!< Offset: 0x7a0  */
  __IO  CFG_DDR_SGMII_PHY_rpc233_TypeDef rpc233;                                             /*!< Offset: 0x7a4  */
  __IO  CFG_DDR_SGMII_PHY_rpc234_TypeDef rpc234;                                             /*!< Offset: 0x7a8  */
  __IO  CFG_DDR_SGMII_PHY_rpc235_TypeDef rpc235;                                             /*!< Offset: 0x7ac  */
  __IO  CFG_DDR_SGMII_PHY_rpc236_TypeDef rpc236;                                             /*!< Offset: 0x7b0  */
  __IO  CFG_DDR_SGMII_PHY_rpc237_TypeDef rpc237;                                             /*!< Offset: 0x7b4  */
  __IO  CFG_DDR_SGMII_PHY_rpc238_TypeDef rpc238;                                             /*!< Offset: 0x7b8  */
  __IO  CFG_DDR_SGMII_PHY_rpc239_TypeDef rpc239;                                             /*!< Offset: 0x7bc  */
  __IO  CFG_DDR_SGMII_PHY_rpc240_TypeDef rpc240;                                             /*!< Offset: 0x7c0  */
  __IO  CFG_DDR_SGMII_PHY_rpc241_TypeDef rpc241;                                             /*!< Offset: 0x7c4  */
  __IO  CFG_DDR_SGMII_PHY_rpc242_TypeDef rpc242;                                             /*!< Offset: 0x7c8  */
  __IO  CFG_DDR_SGMII_PHY_rpc243_TypeDef rpc243;                                             /*!< Offset: 0x7cc  */
  __IO  CFG_DDR_SGMII_PHY_rpc244_TypeDef rpc244;                                             /*!< Offset: 0x7d0  */
  __IO  CFG_DDR_SGMII_PHY_rpc245_TypeDef rpc245;                                             /*!< Offset: 0x7d4  */
  __IO  CFG_DDR_SGMII_PHY_rpc246_TypeDef rpc246;                                             /*!< Offset: 0x7d8  */
  __IO  CFG_DDR_SGMII_PHY_rpc247_TypeDef rpc247;                                             /*!< Offset: 0x7dc  */
  __IO  CFG_DDR_SGMII_PHY_rpc248_TypeDef rpc248;                                             /*!< Offset: 0x7e0  */
  __IO  CFG_DDR_SGMII_PHY_rpc249_TypeDef rpc249;                                             /*!< Offset: 0x7e4  */
  __IO  CFG_DDR_SGMII_PHY_rpc250_TypeDef rpc250;                                             /*!< Offset: 0x7e8  */
  __IO  CFG_DDR_SGMII_PHY_spio251_TypeDef spio251;                                            /*!< Offset: 0x7ec  */
  __IO  CFG_DDR_SGMII_PHY_spio252_TypeDef spio252;                                            /*!< Offset: 0x7f0  */
  __IO  CFG_DDR_SGMII_PHY_spio253_TypeDef spio253;                                            /*!< Offset: 0x7f4  */
  __I   uint32_t                       UNUSED_SPACE8[2];                                   /*!< Offset: 0x7f8 */
  __IO  CFG_DDR_SGMII_PHY_SOFT_RESET_TIP_TypeDef SOFT_RESET_TIP;                                     /*!< Offset: 0x800  */
  __IO  CFG_DDR_SGMII_PHY_rank_select_TypeDef rank_select;                                        /*!< Offset: 0x804  */
  __IO  CFG_DDR_SGMII_PHY_lane_select_TypeDef lane_select;                                        /*!< Offset: 0x808  */
  __IO  CFG_DDR_SGMII_PHY_training_skip_TypeDef training_skip;                                      /*!< Offset: 0x80c  */
  __IO  CFG_DDR_SGMII_PHY_training_start_TypeDef training_start;                                     /*!< Offset: 0x810  */
  __I   CFG_DDR_SGMII_PHY_training_status_TypeDef training_status;                                    /*!< Offset: 0x814  */
  __IO  CFG_DDR_SGMII_PHY_training_reset_TypeDef training_reset;                                     /*!< Offset: 0x818  */
  __I   CFG_DDR_SGMII_PHY_gt_err_comb_TypeDef gt_err_comb;                                        /*!< Offset: 0x81c  */
  __I   CFG_DDR_SGMII_PHY_gt_clk_sel_TypeDef gt_clk_sel;                                         /*!< Offset: 0x820  */
  __I   CFG_DDR_SGMII_PHY_gt_txdly_TypeDef gt_txdly;                                           /*!< Offset: 0x824  */
  __I   CFG_DDR_SGMII_PHY_gt_steps_180_TypeDef gt_steps_180;                                       /*!< Offset: 0x828  */
  __I   CFG_DDR_SGMII_PHY_gt_state_TypeDef gt_state;                                           /*!< Offset: 0x82c  */
  __I   CFG_DDR_SGMII_PHY_wl_delay_0_TypeDef wl_delay_0;                                         /*!< Offset: 0x830  */
  __I   CFG_DDR_SGMII_PHY_dq_dqs_err_done_TypeDef dq_dqs_err_done;                                    /*!< Offset: 0x834  */
  __I   CFG_DDR_SGMII_PHY_dqdqs_window_TypeDef dqdqs_window;                                       /*!< Offset: 0x838  */
  __I   CFG_DDR_SGMII_PHY_dqdqs_state_TypeDef dqdqs_state;                                        /*!< Offset: 0x83c  */
  __I   CFG_DDR_SGMII_PHY_delta0_TypeDef delta0;                                             /*!< Offset: 0x840  */
  __I   CFG_DDR_SGMII_PHY_delta1_TypeDef delta1;                                             /*!< Offset: 0x844  */
  __I   CFG_DDR_SGMII_PHY_dqdqs_status0_TypeDef dqdqs_status0;                                      /*!< Offset: 0x848  */
  __I   CFG_DDR_SGMII_PHY_dqdqs_status1_TypeDef dqdqs_status1;                                      /*!< Offset: 0x84c  */
  __I   CFG_DDR_SGMII_PHY_dqdqs_status2_TypeDef dqdqs_status2;                                      /*!< Offset: 0x850  */
  __I   CFG_DDR_SGMII_PHY_dqdqs_status3_TypeDef dqdqs_status3;                                      /*!< Offset: 0x854  */
  __I   CFG_DDR_SGMII_PHY_dqdqs_status4_TypeDef dqdqs_status4;                                      /*!< Offset: 0x858  */
  __I   CFG_DDR_SGMII_PHY_dqdqs_status5_TypeDef dqdqs_status5;                                      /*!< Offset: 0x85c  */
  __I   CFG_DDR_SGMII_PHY_dqdqs_status6_TypeDef dqdqs_status6;                                      /*!< Offset: 0x860  */
  __I   CFG_DDR_SGMII_PHY_addcmd_status0_TypeDef addcmd_status0;                                     /*!< Offset: 0x864  */
  __I   CFG_DDR_SGMII_PHY_addcmd_status1_TypeDef addcmd_status1;                                     /*!< Offset: 0x868  */
  __I   CFG_DDR_SGMII_PHY_addcmd_answer_TypeDef addcmd_answer;                                      /*!< Offset: 0x86c  */
  __I   CFG_DDR_SGMII_PHY_bclksclk_answer_TypeDef bclksclk_answer;                                    /*!< Offset: 0x870  */
  __I   CFG_DDR_SGMII_PHY_dqdqs_wrcalib_offset_TypeDef dqdqs_wrcalib_offset;                               /*!< Offset: 0x874  */
  __IO  CFG_DDR_SGMII_PHY_expert_mode_en_TypeDef expert_mode_en;                                     /*!< Offset: 0x878  */
  __IO  CFG_DDR_SGMII_PHY_expert_dlycnt_move_reg0_TypeDef expert_dlycnt_move_reg0;                            /*!< Offset: 0x87c  */
  __IO  CFG_DDR_SGMII_PHY_expert_dlycnt_move_reg1_TypeDef expert_dlycnt_move_reg1;                            /*!< Offset: 0x880  */
  __IO  CFG_DDR_SGMII_PHY_expert_dlycnt_direction_reg0_TypeDef expert_dlycnt_direction_reg0;                       /*!< Offset: 0x884  */
  __IO  CFG_DDR_SGMII_PHY_expert_dlycnt_direction_reg1_TypeDef expert_dlycnt_direction_reg1;                       /*!< Offset: 0x888  */
  __IO  CFG_DDR_SGMII_PHY_expert_dlycnt_load_reg0_TypeDef expert_dlycnt_load_reg0;                            /*!< Offset: 0x88c  */
  __IO  CFG_DDR_SGMII_PHY_expert_dlycnt_load_reg1_TypeDef expert_dlycnt_load_reg1;                            /*!< Offset: 0x890  */
  __I   CFG_DDR_SGMII_PHY_expert_dlycnt_oor_reg0_TypeDef expert_dlycnt_oor_reg0;                             /*!< Offset: 0x894  */
  __I   CFG_DDR_SGMII_PHY_expert_dlycnt_oor_reg1_TypeDef expert_dlycnt_oor_reg1;                             /*!< Offset: 0x898  */
  __IO  CFG_DDR_SGMII_PHY_expert_dlycnt_mv_rd_dly_reg_TypeDef expert_dlycnt_mv_rd_dly_reg;                        /*!< Offset: 0x89c  */
  __IO  CFG_DDR_SGMII_PHY_expert_dlycnt_pause_TypeDef expert_dlycnt_pause;                                /*!< Offset: 0x8a0  */
  __IO  CFG_DDR_SGMII_PHY_expert_pllcnt_TypeDef expert_pllcnt;                                      /*!< Offset: 0x8a4  */
  __I   CFG_DDR_SGMII_PHY_expert_dqlane_readback_TypeDef expert_dqlane_readback;                             /*!< Offset: 0x8a8  */
  __I   CFG_DDR_SGMII_PHY_expert_addcmd_ln_readback_TypeDef expert_addcmd_ln_readback;                          /*!< Offset: 0x8ac  */
  __IO  CFG_DDR_SGMII_PHY_expert_read_gate_controls_TypeDef expert_read_gate_controls;                          /*!< Offset: 0x8b0  */
  __I   CFG_DDR_SGMII_PHY_expert_dq_dqs_optimization0_TypeDef expert_dq_dqs_optimization0;                        /*!< Offset: 0x8b4  */
  __I   CFG_DDR_SGMII_PHY_expert_dq_dqs_optimization1_TypeDef expert_dq_dqs_optimization1;                        /*!< Offset: 0x8b8  */
  __IO  CFG_DDR_SGMII_PHY_expert_wrcalib_TypeDef expert_wrcalib;                                     /*!< Offset: 0x8bc  */
  __IO  CFG_DDR_SGMII_PHY_expert_calif_TypeDef expert_calif;                                       /*!< Offset: 0x8c0  */
  __I   CFG_DDR_SGMII_PHY_expert_calif_readback_TypeDef expert_calif_readback;                              /*!< Offset: 0x8c4  */
  __I   CFG_DDR_SGMII_PHY_expert_calif_readback1_TypeDef expert_calif_readback1;                             /*!< Offset: 0x8c8  */
  __IO  CFG_DDR_SGMII_PHY_expert_dfi_status_override_to_shim_TypeDef expert_dfi_status_override_to_shim;                 /*!< Offset: 0x8cc  */
  __IO  CFG_DDR_SGMII_PHY_tip_cfg_params_TypeDef tip_cfg_params;                                     /*!< Offset: 0x8d0  */
  __IO  CFG_DDR_SGMII_PHY_tip_vref_param_TypeDef tip_vref_param;                                     /*!< Offset: 0x8d4  */
  __IO  CFG_DDR_SGMII_PHY_lane_alignment_fifo_control_TypeDef lane_alignment_fifo_control;                        /*!< Offset: 0x8d8  */
  __I   uint32_t                       UNUSED_SPACE9[201];                                 /*!< Offset: 0x8dc */
  __IO  CFG_DDR_SGMII_PHY_SOFT_RESET_SGMII_TypeDef SOFT_RESET_SGMII;                                   /*!< Offset: 0xc00  */
  __IO  CFG_DDR_SGMII_PHY_SGMII_MODE_TypeDef SGMII_MODE;                                         /*!< Offset: 0xc04  */
  __IO  CFG_DDR_SGMII_PHY_PLL_CNTL_TypeDef PLL_CNTL;                                           /*!< Offset: 0xc08  */
  __IO  CFG_DDR_SGMII_PHY_CH0_CNTL_TypeDef CH0_CNTL;                                           /*!< Offset: 0xc0c  */
  __IO  CFG_DDR_SGMII_PHY_CH1_CNTL_TypeDef CH1_CNTL;                                           /*!< Offset: 0xc10  */
  __IO  CFG_DDR_SGMII_PHY_RECAL_CNTL_TypeDef RECAL_CNTL;                                         /*!< Offset: 0xc14  */
  __IO  CFG_DDR_SGMII_PHY_CLK_CNTL_TypeDef CLK_CNTL;                                           /*!< Offset: 0xc18  */
  __IO  CFG_DDR_SGMII_PHY_DYN_CNTL_TypeDef DYN_CNTL;                                           /*!< Offset: 0xc1c  */
  __IO  CFG_DDR_SGMII_PHY_PVT_STAT_TypeDef PVT_STAT;                                           /*!< Offset: 0xc20  */
  __IO  CFG_DDR_SGMII_PHY_SPARE_CNTL_TypeDef SPARE_CNTL;                                         /*!< Offset: 0xc24  */
  __I   CFG_DDR_SGMII_PHY_SPARE_STAT_TypeDef SPARE_STAT;                                         /*!< Offset: 0xc28  */
} CFG_DDR_SGMII_PHY_TypeDef;


/******************************************************************************/
/*              finish of   CFG_DDR_SGMII_PHY definitions                     */
/******************************************************************************/



#ifdef __cplusplus
}
#endif

#endif /* MSS_DDR_SGMII_PHY_DEFS_H_ */