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
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
|
/*
* Copyright (c) 2023, STMicroelectronics - All Rights Reserved
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef STM32MP2_RCC_H
#define STM32MP2_RCC_H
#include <lib/utils_def.h>
#define RCC_SECCFGR0 U(0x0)
#define RCC_SECCFGR1 U(0x4)
#define RCC_SECCFGR2 U(0x8)
#define RCC_SECCFGR3 U(0xC)
#define RCC_PRIVCFGR0 U(0x10)
#define RCC_PRIVCFGR1 U(0x14)
#define RCC_PRIVCFGR2 U(0x18)
#define RCC_PRIVCFGR3 U(0x1C)
#define RCC_RCFGLOCKR0 U(0x20)
#define RCC_RCFGLOCKR1 U(0x24)
#define RCC_RCFGLOCKR2 U(0x28)
#define RCC_RCFGLOCKR3 U(0x2C)
#define RCC_R0CIDCFGR U(0x30)
#define RCC_R0SEMCR U(0x34)
#define RCC_R1CIDCFGR U(0x38)
#define RCC_R1SEMCR U(0x3C)
#define RCC_R2CIDCFGR U(0x40)
#define RCC_R2SEMCR U(0x44)
#define RCC_R3CIDCFGR U(0x48)
#define RCC_R3SEMCR U(0x4C)
#define RCC_R4CIDCFGR U(0x50)
#define RCC_R4SEMCR U(0x54)
#define RCC_R5CIDCFGR U(0x58)
#define RCC_R5SEMCR U(0x5C)
#define RCC_R6CIDCFGR U(0x60)
#define RCC_R6SEMCR U(0x64)
#define RCC_R7CIDCFGR U(0x68)
#define RCC_R7SEMCR U(0x6C)
#define RCC_R8CIDCFGR U(0x70)
#define RCC_R8SEMCR U(0x74)
#define RCC_R9CIDCFGR U(0x78)
#define RCC_R9SEMCR U(0x7C)
#define RCC_R10CIDCFGR U(0x80)
#define RCC_R10SEMCR U(0x84)
#define RCC_R11CIDCFGR U(0x88)
#define RCC_R11SEMCR U(0x8C)
#define RCC_R12CIDCFGR U(0x90)
#define RCC_R12SEMCR U(0x94)
#define RCC_R13CIDCFGR U(0x98)
#define RCC_R13SEMCR U(0x9C)
#define RCC_R14CIDCFGR U(0xA0)
#define RCC_R14SEMCR U(0xA4)
#define RCC_R15CIDCFGR U(0xA8)
#define RCC_R15SEMCR U(0xAC)
#define RCC_R16CIDCFGR U(0xB0)
#define RCC_R16SEMCR U(0xB4)
#define RCC_R17CIDCFGR U(0xB8)
#define RCC_R17SEMCR U(0xBC)
#define RCC_R18CIDCFGR U(0xC0)
#define RCC_R18SEMCR U(0xC4)
#define RCC_R19CIDCFGR U(0xC8)
#define RCC_R19SEMCR U(0xCC)
#define RCC_R20CIDCFGR U(0xD0)
#define RCC_R20SEMCR U(0xD4)
#define RCC_R21CIDCFGR U(0xD8)
#define RCC_R21SEMCR U(0xDC)
#define RCC_R22CIDCFGR U(0xE0)
#define RCC_R22SEMCR U(0xE4)
#define RCC_R23CIDCFGR U(0xE8)
#define RCC_R23SEMCR U(0xEC)
#define RCC_R24CIDCFGR U(0xF0)
#define RCC_R24SEMCR U(0xF4)
#define RCC_R25CIDCFGR U(0xF8)
#define RCC_R25SEMCR U(0xFC)
#define RCC_R26CIDCFGR U(0x100)
#define RCC_R26SEMCR U(0x104)
#define RCC_R27CIDCFGR U(0x108)
#define RCC_R27SEMCR U(0x10C)
#define RCC_R28CIDCFGR U(0x110)
#define RCC_R28SEMCR U(0x114)
#define RCC_R29CIDCFGR U(0x118)
#define RCC_R29SEMCR U(0x11C)
#define RCC_R30CIDCFGR U(0x120)
#define RCC_R30SEMCR U(0x124)
#define RCC_R31CIDCFGR U(0x128)
#define RCC_R31SEMCR U(0x12C)
#define RCC_R32CIDCFGR U(0x130)
#define RCC_R32SEMCR U(0x134)
#define RCC_R33CIDCFGR U(0x138)
#define RCC_R33SEMCR U(0x13C)
#define RCC_R34CIDCFGR U(0x140)
#define RCC_R34SEMCR U(0x144)
#define RCC_R35CIDCFGR U(0x148)
#define RCC_R35SEMCR U(0x14C)
#define RCC_R36CIDCFGR U(0x150)
#define RCC_R36SEMCR U(0x154)
#define RCC_R37CIDCFGR U(0x158)
#define RCC_R37SEMCR U(0x15C)
#define RCC_R38CIDCFGR U(0x160)
#define RCC_R38SEMCR U(0x164)
#define RCC_R39CIDCFGR U(0x168)
#define RCC_R39SEMCR U(0x16C)
#define RCC_R40CIDCFGR U(0x170)
#define RCC_R40SEMCR U(0x174)
#define RCC_R41CIDCFGR U(0x178)
#define RCC_R41SEMCR U(0x17C)
#define RCC_R42CIDCFGR U(0x180)
#define RCC_R42SEMCR U(0x184)
#define RCC_R43CIDCFGR U(0x188)
#define RCC_R43SEMCR U(0x18C)
#define RCC_R44CIDCFGR U(0x190)
#define RCC_R44SEMCR U(0x194)
#define RCC_R45CIDCFGR U(0x198)
#define RCC_R45SEMCR U(0x19C)
#define RCC_R46CIDCFGR U(0x1A0)
#define RCC_R46SEMCR U(0x1A4)
#define RCC_R47CIDCFGR U(0x1A8)
#define RCC_R47SEMCR U(0x1AC)
#define RCC_R48CIDCFGR U(0x1B0)
#define RCC_R48SEMCR U(0x1B4)
#define RCC_R49CIDCFGR U(0x1B8)
#define RCC_R49SEMCR U(0x1BC)
#define RCC_R50CIDCFGR U(0x1C0)
#define RCC_R50SEMCR U(0x1C4)
#define RCC_R51CIDCFGR U(0x1C8)
#define RCC_R51SEMCR U(0x1CC)
#define RCC_R52CIDCFGR U(0x1D0)
#define RCC_R52SEMCR U(0x1D4)
#define RCC_R53CIDCFGR U(0x1D8)
#define RCC_R53SEMCR U(0x1DC)
#define RCC_R54CIDCFGR U(0x1E0)
#define RCC_R54SEMCR U(0x1E4)
#define RCC_R55CIDCFGR U(0x1E8)
#define RCC_R55SEMCR U(0x1EC)
#define RCC_R56CIDCFGR U(0x1F0)
#define RCC_R56SEMCR U(0x1F4)
#define RCC_R57CIDCFGR U(0x1F8)
#define RCC_R57SEMCR U(0x1FC)
#define RCC_R58CIDCFGR U(0x200)
#define RCC_R58SEMCR U(0x204)
#define RCC_R59CIDCFGR U(0x208)
#define RCC_R59SEMCR U(0x20C)
#define RCC_R60CIDCFGR U(0x210)
#define RCC_R60SEMCR U(0x214)
#define RCC_R61CIDCFGR U(0x218)
#define RCC_R61SEMCR U(0x21C)
#define RCC_R62CIDCFGR U(0x220)
#define RCC_R62SEMCR U(0x224)
#define RCC_R63CIDCFGR U(0x228)
#define RCC_R63SEMCR U(0x22C)
#define RCC_R64CIDCFGR U(0x230)
#define RCC_R64SEMCR U(0x234)
#define RCC_R65CIDCFGR U(0x238)
#define RCC_R65SEMCR U(0x23C)
#define RCC_R66CIDCFGR U(0x240)
#define RCC_R66SEMCR U(0x244)
#define RCC_R67CIDCFGR U(0x248)
#define RCC_R67SEMCR U(0x24C)
#define RCC_R68CIDCFGR U(0x250)
#define RCC_R68SEMCR U(0x254)
#define RCC_R69CIDCFGR U(0x258)
#define RCC_R69SEMCR U(0x25C)
#define RCC_R70CIDCFGR U(0x260)
#define RCC_R70SEMCR U(0x264)
#define RCC_R71CIDCFGR U(0x268)
#define RCC_R71SEMCR U(0x26C)
#define RCC_R72CIDCFGR U(0x270)
#define RCC_R72SEMCR U(0x274)
#define RCC_R73CIDCFGR U(0x278)
#define RCC_R73SEMCR U(0x27C)
#define RCC_R74CIDCFGR U(0x280)
#define RCC_R74SEMCR U(0x284)
#define RCC_R75CIDCFGR U(0x288)
#define RCC_R75SEMCR U(0x28C)
#define RCC_R76CIDCFGR U(0x290)
#define RCC_R76SEMCR U(0x294)
#define RCC_R77CIDCFGR U(0x298)
#define RCC_R77SEMCR U(0x29C)
#define RCC_R78CIDCFGR U(0x2A0)
#define RCC_R78SEMCR U(0x2A4)
#define RCC_R79CIDCFGR U(0x2A8)
#define RCC_R79SEMCR U(0x2AC)
#define RCC_R80CIDCFGR U(0x2B0)
#define RCC_R80SEMCR U(0x2B4)
#define RCC_R81CIDCFGR U(0x2B8)
#define RCC_R81SEMCR U(0x2BC)
#define RCC_R82CIDCFGR U(0x2C0)
#define RCC_R82SEMCR U(0x2C4)
#define RCC_R83CIDCFGR U(0x2C8)
#define RCC_R83SEMCR U(0x2CC)
#define RCC_R84CIDCFGR U(0x2D0)
#define RCC_R84SEMCR U(0x2D4)
#define RCC_R85CIDCFGR U(0x2D8)
#define RCC_R85SEMCR U(0x2DC)
#define RCC_R86CIDCFGR U(0x2E0)
#define RCC_R86SEMCR U(0x2E4)
#define RCC_R87CIDCFGR U(0x2E8)
#define RCC_R87SEMCR U(0x2EC)
#define RCC_R88CIDCFGR U(0x2F0)
#define RCC_R88SEMCR U(0x2F4)
#define RCC_R89CIDCFGR U(0x2F8)
#define RCC_R89SEMCR U(0x2FC)
#define RCC_R90CIDCFGR U(0x300)
#define RCC_R90SEMCR U(0x304)
#define RCC_R91CIDCFGR U(0x308)
#define RCC_R91SEMCR U(0x30C)
#define RCC_R92CIDCFGR U(0x310)
#define RCC_R92SEMCR U(0x314)
#define RCC_R93CIDCFGR U(0x318)
#define RCC_R93SEMCR U(0x31C)
#define RCC_R94CIDCFGR U(0x320)
#define RCC_R94SEMCR U(0x324)
#define RCC_R95CIDCFGR U(0x328)
#define RCC_R95SEMCR U(0x32C)
#define RCC_R96CIDCFGR U(0x330)
#define RCC_R96SEMCR U(0x334)
#define RCC_R97CIDCFGR U(0x338)
#define RCC_R97SEMCR U(0x33C)
#define RCC_R98CIDCFGR U(0x340)
#define RCC_R98SEMCR U(0x344)
#define RCC_R99CIDCFGR U(0x348)
#define RCC_R99SEMCR U(0x34C)
#define RCC_R100CIDCFGR U(0x350)
#define RCC_R100SEMCR U(0x354)
#define RCC_R101CIDCFGR U(0x358)
#define RCC_R101SEMCR U(0x35C)
#define RCC_R102CIDCFGR U(0x360)
#define RCC_R102SEMCR U(0x364)
#define RCC_R103CIDCFGR U(0x368)
#define RCC_R103SEMCR U(0x36C)
#define RCC_R104CIDCFGR U(0x370)
#define RCC_R104SEMCR U(0x374)
#define RCC_R105CIDCFGR U(0x378)
#define RCC_R105SEMCR U(0x37C)
#define RCC_R106CIDCFGR U(0x380)
#define RCC_R106SEMCR U(0x384)
#define RCC_R107CIDCFGR U(0x388)
#define RCC_R107SEMCR U(0x38C)
#define RCC_R108CIDCFGR U(0x390)
#define RCC_R108SEMCR U(0x394)
#define RCC_R109CIDCFGR U(0x398)
#define RCC_R109SEMCR U(0x39C)
#define RCC_R110CIDCFGR U(0x3A0)
#define RCC_R110SEMCR U(0x3A4)
#define RCC_R111CIDCFGR U(0x3A8)
#define RCC_R111SEMCR U(0x3AC)
#define RCC_R112CIDCFGR U(0x3B0)
#define RCC_R112SEMCR U(0x3B4)
#define RCC_R113CIDCFGR U(0x3B8)
#define RCC_R113SEMCR U(0x3BC)
#define RCC_GRSTCSETR U(0x400)
#define RCC_C1RSTCSETR U(0x404)
#define RCC_C1P1RSTCSETR U(0x408)
#define RCC_C2RSTCSETR U(0x40C)
#define RCC_HWRSTSCLRR U(0x410)
#define RCC_C1HWRSTSCLRR U(0x414)
#define RCC_C2HWRSTSCLRR U(0x418)
#define RCC_C1BOOTRSTSSETR U(0x41C)
#define RCC_C1BOOTRSTSCLRR U(0x420)
#define RCC_C2BOOTRSTSSETR U(0x424)
#define RCC_C2BOOTRSTSCLRR U(0x428)
#define RCC_C1SREQSETR U(0x42C)
#define RCC_C1SREQCLRR U(0x430)
#define RCC_CPUBOOTCR U(0x434)
#define RCC_STBYBOOTCR U(0x438)
#define RCC_LEGBOOTCR U(0x43C)
#define RCC_BDCR U(0x440)
#define RCC_D3DCR U(0x444)
#define RCC_D3DSR U(0x448)
#define RCC_RDCR U(0x44C)
#define RCC_C1MSRDCR U(0x450)
#define RCC_PWRLPDLYCR U(0x454)
#define RCC_C1CIESETR U(0x458)
#define RCC_C1CIFCLRR U(0x45C)
#define RCC_C2CIESETR U(0x460)
#define RCC_C2CIFCLRR U(0x464)
#define RCC_IWDGC1FZSETR U(0x468)
#define RCC_IWDGC1FZCLRR U(0x46C)
#define RCC_IWDGC1CFGSETR U(0x470)
#define RCC_IWDGC1CFGCLRR U(0x474)
#define RCC_IWDGC2FZSETR U(0x478)
#define RCC_IWDGC2FZCLRR U(0x47C)
#define RCC_IWDGC2CFGSETR U(0x480)
#define RCC_IWDGC2CFGCLRR U(0x484)
#define RCC_IWDGC3CFGSETR U(0x488)
#define RCC_IWDGC3CFGCLRR U(0x48C)
#define RCC_C3CFGR U(0x490)
#define RCC_MCO1CFGR U(0x494)
#define RCC_MCO2CFGR U(0x498)
#define RCC_OCENSETR U(0x49C)
#define RCC_OCENCLRR U(0x4A0)
#define RCC_OCRDYR U(0x4A4)
#define RCC_HSICFGR U(0x4A8)
#define RCC_CSICFGR U(0x4AC)
#define RCC_RTCDIVR U(0x4B0)
#define RCC_APB1DIVR U(0x4B4)
#define RCC_APB2DIVR U(0x4B8)
#define RCC_APB3DIVR U(0x4BC)
#define RCC_APB4DIVR U(0x4C0)
#define RCC_APBDBGDIVR U(0x4C4)
#define RCC_TIMG1PRER U(0x4C8)
#define RCC_TIMG2PRER U(0x4CC)
#define RCC_LSMCUDIVR U(0x4D0)
#define RCC_DDRCPCFGR U(0x4D4)
#define RCC_DDRCAPBCFGR U(0x4D8)
#define RCC_DDRPHYCAPBCFGR U(0x4DC)
#define RCC_DDRPHYCCFGR U(0x4E0)
#define RCC_DDRCFGR U(0x4E4)
#define RCC_DDRITFCFGR U(0x4E8)
#define RCC_SYSRAMCFGR U(0x4F0)
#define RCC_VDERAMCFGR U(0x4F4)
#define RCC_SRAM1CFGR U(0x4F8)
#define RCC_SRAM2CFGR U(0x4FC)
#define RCC_RETRAMCFGR U(0x500)
#define RCC_BKPSRAMCFGR U(0x504)
#define RCC_LPSRAM1CFGR U(0x508)
#define RCC_LPSRAM2CFGR U(0x50C)
#define RCC_LPSRAM3CFGR U(0x510)
#define RCC_OSPI1CFGR U(0x514)
#define RCC_OSPI2CFGR U(0x518)
#define RCC_FMCCFGR U(0x51C)
#define RCC_DBGCFGR U(0x520)
#define RCC_STM500CFGR U(0x524)
#define RCC_ETRCFGR U(0x528)
#define RCC_GPIOACFGR U(0x52C)
#define RCC_GPIOBCFGR U(0x530)
#define RCC_GPIOCCFGR U(0x534)
#define RCC_GPIODCFGR U(0x538)
#define RCC_GPIOECFGR U(0x53C)
#define RCC_GPIOFCFGR U(0x540)
#define RCC_GPIOGCFGR U(0x544)
#define RCC_GPIOHCFGR U(0x548)
#define RCC_GPIOICFGR U(0x54C)
#define RCC_GPIOJCFGR U(0x550)
#define RCC_GPIOKCFGR U(0x554)
#define RCC_GPIOZCFGR U(0x558)
#define RCC_HPDMA1CFGR U(0x55C)
#define RCC_HPDMA2CFGR U(0x560)
#define RCC_HPDMA3CFGR U(0x564)
#define RCC_LPDMACFGR U(0x568)
#define RCC_HSEMCFGR U(0x56C)
#define RCC_IPCC1CFGR U(0x570)
#define RCC_IPCC2CFGR U(0x574)
#define RCC_RTCCFGR U(0x578)
#define RCC_SYSCPU1CFGR U(0x580)
#define RCC_BSECCFGR U(0x584)
#define RCC_IS2MCFGR U(0x58C)
#define RCC_PLL2CFGR1 U(0x590)
#define RCC_PLL2CFGR2 U(0x594)
#define RCC_PLL2CFGR3 U(0x598)
#define RCC_PLL2CFGR4 U(0x59C)
#define RCC_PLL2CFGR5 U(0x5A0)
#define RCC_PLL2CFGR6 U(0x5A8)
#define RCC_PLL2CFGR7 U(0x5AC)
#define RCC_PLL3CFGR1 U(0x5B8)
#define RCC_PLL3CFGR2 U(0x5BC)
#define RCC_PLL3CFGR3 U(0x5C0)
#define RCC_PLL3CFGR4 U(0x5C4)
#define RCC_PLL3CFGR5 U(0x5C8)
#define RCC_PLL3CFGR6 U(0x5D0)
#define RCC_PLL3CFGR7 U(0x5D4)
#define RCC_HSIFMONCR U(0x5E0)
#define RCC_HSIFVALR U(0x5E4)
#define RCC_TIM1CFGR U(0x700)
#define RCC_TIM2CFGR U(0x704)
#define RCC_TIM3CFGR U(0x708)
#define RCC_TIM4CFGR U(0x70C)
#define RCC_TIM5CFGR U(0x710)
#define RCC_TIM6CFGR U(0x714)
#define RCC_TIM7CFGR U(0x718)
#define RCC_TIM8CFGR U(0x71C)
#define RCC_TIM10CFGR U(0x720)
#define RCC_TIM11CFGR U(0x724)
#define RCC_TIM12CFGR U(0x728)
#define RCC_TIM13CFGR U(0x72C)
#define RCC_TIM14CFGR U(0x730)
#define RCC_TIM15CFGR U(0x734)
#define RCC_TIM16CFGR U(0x738)
#define RCC_TIM17CFGR U(0x73C)
#define RCC_TIM20CFGR U(0x740)
#define RCC_LPTIM1CFGR U(0x744)
#define RCC_LPTIM2CFGR U(0x748)
#define RCC_LPTIM3CFGR U(0x74C)
#define RCC_LPTIM4CFGR U(0x750)
#define RCC_LPTIM5CFGR U(0x754)
#define RCC_SPI1CFGR U(0x758)
#define RCC_SPI2CFGR U(0x75C)
#define RCC_SPI3CFGR U(0x760)
#define RCC_SPI4CFGR U(0x764)
#define RCC_SPI5CFGR U(0x768)
#define RCC_SPI6CFGR U(0x76C)
#define RCC_SPI7CFGR U(0x770)
#define RCC_SPI8CFGR U(0x774)
#define RCC_SPDIFRXCFGR U(0x778)
#define RCC_USART1CFGR U(0x77C)
#define RCC_USART2CFGR U(0x780)
#define RCC_USART3CFGR U(0x784)
#define RCC_UART4CFGR U(0x788)
#define RCC_UART5CFGR U(0x78C)
#define RCC_USART6CFGR U(0x790)
#define RCC_UART7CFGR U(0x794)
#define RCC_UART8CFGR U(0x798)
#define RCC_UART9CFGR U(0x79C)
#define RCC_LPUART1CFGR U(0x7A0)
#define RCC_I2C1CFGR U(0x7A4)
#define RCC_I2C2CFGR U(0x7A8)
#define RCC_I2C3CFGR U(0x7AC)
#define RCC_I2C4CFGR U(0x7B0)
#define RCC_I2C5CFGR U(0x7B4)
#define RCC_I2C6CFGR U(0x7B8)
#define RCC_I2C7CFGR U(0x7BC)
#define RCC_I2C8CFGR U(0x7C0)
#define RCC_SAI1CFGR U(0x7C4)
#define RCC_SAI2CFGR U(0x7C8)
#define RCC_SAI3CFGR U(0x7CC)
#define RCC_SAI4CFGR U(0x7D0)
#define RCC_MDF1CFGR U(0x7D8)
#define RCC_ADF1CFGR U(0x7DC)
#define RCC_FDCANCFGR U(0x7E0)
#define RCC_HDPCFGR U(0x7E4)
#define RCC_ADC12CFGR U(0x7E8)
#define RCC_ADC3CFGR U(0x7EC)
#define RCC_ETH1CFGR U(0x7F0)
#define RCC_ETH2CFGR U(0x7F4)
#define RCC_USB2CFGR U(0x7FC)
#define RCC_USB2PHY1CFGR U(0x800)
#define RCC_USB2PHY2CFGR U(0x804)
#define RCC_USB3DRDCFGR U(0x808)
#define RCC_USB3PCIEPHYCFGR U(0x80C)
#define RCC_PCIECFGR U(0x810)
#define RCC_USBTCCFGR U(0x814)
#define RCC_ETHSWCFGR U(0x818)
#define RCC_ETHSWACMCFGR U(0x81C)
#define RCC_ETHSWACMMSGCFGR U(0x820)
#define RCC_STGENCFGR U(0x824)
#define RCC_SDMMC1CFGR U(0x830)
#define RCC_SDMMC2CFGR U(0x834)
#define RCC_SDMMC3CFGR U(0x838)
#define RCC_GPUCFGR U(0x83C)
#define RCC_LTDCCFGR U(0x840)
#define RCC_DSICFGR U(0x844)
#define RCC_LVDSCFGR U(0x850)
#define RCC_CSI2CFGR U(0x858)
#define RCC_DCMIPPCFGR U(0x85C)
#define RCC_CCICFGR U(0x860)
#define RCC_VDECCFGR U(0x864)
#define RCC_VENCCFGR U(0x868)
#define RCC_RNGCFGR U(0x870)
#define RCC_PKACFGR U(0x874)
#define RCC_SAESCFGR U(0x878)
#define RCC_HASHCFGR U(0x87C)
#define RCC_CRYP1CFGR U(0x880)
#define RCC_CRYP2CFGR U(0x884)
#define RCC_IWDG1CFGR U(0x888)
#define RCC_IWDG2CFGR U(0x88C)
#define RCC_IWDG3CFGR U(0x890)
#define RCC_IWDG4CFGR U(0x894)
#define RCC_IWDG5CFGR U(0x898)
#define RCC_WWDG1CFGR U(0x89C)
#define RCC_WWDG2CFGR U(0x8A0)
#define RCC_BUSPERFMCFGR U(0x8A4)
#define RCC_VREFCFGR U(0x8A8)
#define RCC_TMPSENSCFGR U(0x8AC)
#define RCC_CRCCFGR U(0x8B4)
#define RCC_SERCCFGR U(0x8B8)
#define RCC_OSPIIOMCFGR U(0x8BC)
#define RCC_GICV2MCFGR U(0x8C0)
#define RCC_I3C1CFGR U(0x8C8)
#define RCC_I3C2CFGR U(0x8CC)
#define RCC_I3C3CFGR U(0x8D0)
#define RCC_I3C4CFGR U(0x8D4)
#define RCC_MUXSELCFGR U(0x1000)
#define RCC_XBAR0CFGR U(0x1018)
#define RCC_XBAR1CFGR U(0x101C)
#define RCC_XBAR2CFGR U(0x1020)
#define RCC_XBAR3CFGR U(0x1024)
#define RCC_XBAR4CFGR U(0x1028)
#define RCC_XBAR5CFGR U(0x102C)
#define RCC_XBAR6CFGR U(0x1030)
#define RCC_XBAR7CFGR U(0x1034)
#define RCC_XBAR8CFGR U(0x1038)
#define RCC_XBAR9CFGR U(0x103C)
#define RCC_XBAR10CFGR U(0x1040)
#define RCC_XBAR11CFGR U(0x1044)
#define RCC_XBAR12CFGR U(0x1048)
#define RCC_XBAR13CFGR U(0x104C)
#define RCC_XBAR14CFGR U(0x1050)
#define RCC_XBAR15CFGR U(0x1054)
#define RCC_XBAR16CFGR U(0x1058)
#define RCC_XBAR17CFGR U(0x105C)
#define RCC_XBAR18CFGR U(0x1060)
#define RCC_XBAR19CFGR U(0x1064)
#define RCC_XBAR20CFGR U(0x1068)
#define RCC_XBAR21CFGR U(0x106C)
#define RCC_XBAR22CFGR U(0x1070)
#define RCC_XBAR23CFGR U(0x1074)
#define RCC_XBAR24CFGR U(0x1078)
#define RCC_XBAR25CFGR U(0x107C)
#define RCC_XBAR26CFGR U(0x1080)
#define RCC_XBAR27CFGR U(0x1084)
#define RCC_XBAR28CFGR U(0x1088)
#define RCC_XBAR29CFGR U(0x108C)
#define RCC_XBAR30CFGR U(0x1090)
#define RCC_XBAR31CFGR U(0x1094)
#define RCC_XBAR32CFGR U(0x1098)
#define RCC_XBAR33CFGR U(0x109C)
#define RCC_XBAR34CFGR U(0x10A0)
#define RCC_XBAR35CFGR U(0x10A4)
#define RCC_XBAR36CFGR U(0x10A8)
#define RCC_XBAR37CFGR U(0x10AC)
#define RCC_XBAR38CFGR U(0x10B0)
#define RCC_XBAR39CFGR U(0x10B4)
#define RCC_XBAR40CFGR U(0x10B8)
#define RCC_XBAR41CFGR U(0x10BC)
#define RCC_XBAR42CFGR U(0x10C0)
#define RCC_XBAR43CFGR U(0x10C4)
#define RCC_XBAR44CFGR U(0x10C8)
#define RCC_XBAR45CFGR U(0x10CC)
#define RCC_XBAR46CFGR U(0x10D0)
#define RCC_XBAR47CFGR U(0x10D4)
#define RCC_XBAR48CFGR U(0x10D8)
#define RCC_XBAR49CFGR U(0x10DC)
#define RCC_XBAR50CFGR U(0x10E0)
#define RCC_XBAR51CFGR U(0x10E4)
#define RCC_XBAR52CFGR U(0x10E8)
#define RCC_XBAR53CFGR U(0x10EC)
#define RCC_XBAR54CFGR U(0x10F0)
#define RCC_XBAR55CFGR U(0x10F4)
#define RCC_XBAR56CFGR U(0x10F8)
#define RCC_XBAR57CFGR U(0x10FC)
#define RCC_XBAR58CFGR U(0x1100)
#define RCC_XBAR59CFGR U(0x1104)
#define RCC_XBAR60CFGR U(0x1108)
#define RCC_XBAR61CFGR U(0x110C)
#define RCC_XBAR62CFGR U(0x1110)
#define RCC_XBAR63CFGR U(0x1114)
#define RCC_PREDIV0CFGR U(0x1118)
#define RCC_PREDIV1CFGR U(0x111C)
#define RCC_PREDIV2CFGR U(0x1120)
#define RCC_PREDIV3CFGR U(0x1124)
#define RCC_PREDIV4CFGR U(0x1128)
#define RCC_PREDIV5CFGR U(0x112C)
#define RCC_PREDIV6CFGR U(0x1130)
#define RCC_PREDIV7CFGR U(0x1134)
#define RCC_PREDIV8CFGR U(0x1138)
#define RCC_PREDIV9CFGR U(0x113C)
#define RCC_PREDIV10CFGR U(0x1140)
#define RCC_PREDIV11CFGR U(0x1144)
#define RCC_PREDIV12CFGR U(0x1148)
#define RCC_PREDIV13CFGR U(0x114C)
#define RCC_PREDIV14CFGR U(0x1150)
#define RCC_PREDIV15CFGR U(0x1154)
#define RCC_PREDIV16CFGR U(0x1158)
#define RCC_PREDIV17CFGR U(0x115C)
#define RCC_PREDIV18CFGR U(0x1160)
#define RCC_PREDIV19CFGR U(0x1164)
#define RCC_PREDIV20CFGR U(0x1168)
#define RCC_PREDIV21CFGR U(0x116C)
#define RCC_PREDIV22CFGR U(0x1170)
#define RCC_PREDIV23CFGR U(0x1174)
#define RCC_PREDIV24CFGR U(0x1178)
#define RCC_PREDIV25CFGR U(0x117C)
#define RCC_PREDIV26CFGR U(0x1180)
#define RCC_PREDIV27CFGR U(0x1184)
#define RCC_PREDIV28CFGR U(0x1188)
#define RCC_PREDIV29CFGR U(0x118C)
#define RCC_PREDIV30CFGR U(0x1190)
#define RCC_PREDIV31CFGR U(0x1194)
#define RCC_PREDIV32CFGR U(0x1198)
#define RCC_PREDIV33CFGR U(0x119C)
#define RCC_PREDIV34CFGR U(0x11A0)
#define RCC_PREDIV35CFGR U(0x11A4)
#define RCC_PREDIV36CFGR U(0x11A8)
#define RCC_PREDIV37CFGR U(0x11AC)
#define RCC_PREDIV38CFGR U(0x11B0)
#define RCC_PREDIV39CFGR U(0x11B4)
#define RCC_PREDIV40CFGR U(0x11B8)
#define RCC_PREDIV41CFGR U(0x11BC)
#define RCC_PREDIV42CFGR U(0x11C0)
#define RCC_PREDIV43CFGR U(0x11C4)
#define RCC_PREDIV44CFGR U(0x11C8)
#define RCC_PREDIV45CFGR U(0x11CC)
#define RCC_PREDIV46CFGR U(0x11D0)
#define RCC_PREDIV47CFGR U(0x11D4)
#define RCC_PREDIV48CFGR U(0x11D8)
#define RCC_PREDIV49CFGR U(0x11DC)
#define RCC_PREDIV50CFGR U(0x11E0)
#define RCC_PREDIV51CFGR U(0x11E4)
#define RCC_PREDIV52CFGR U(0x11E8)
#define RCC_PREDIV53CFGR U(0x11EC)
#define RCC_PREDIV54CFGR U(0x11F0)
#define RCC_PREDIV55CFGR U(0x11F4)
#define RCC_PREDIV56CFGR U(0x11F8)
#define RCC_PREDIV57CFGR U(0x11FC)
#define RCC_PREDIV58CFGR U(0x1200)
#define RCC_PREDIV59CFGR U(0x1204)
#define RCC_PREDIV60CFGR U(0x1208)
#define RCC_PREDIV61CFGR U(0x120C)
#define RCC_PREDIV62CFGR U(0x1210)
#define RCC_PREDIV63CFGR U(0x1214)
#define RCC_PREDIVSR1 U(0x1218)
#define RCC_PREDIVSR2 U(0x121C)
#define RCC_FINDIV0CFGR U(0x1224)
#define RCC_FINDIV1CFGR U(0x1228)
#define RCC_FINDIV2CFGR U(0x122C)
#define RCC_FINDIV3CFGR U(0x1230)
#define RCC_FINDIV4CFGR U(0x1234)
#define RCC_FINDIV5CFGR U(0x1238)
#define RCC_FINDIV6CFGR U(0x123C)
#define RCC_FINDIV7CFGR U(0x1240)
#define RCC_FINDIV8CFGR U(0x1244)
#define RCC_FINDIV9CFGR U(0x1248)
#define RCC_FINDIV10CFGR U(0x124C)
#define RCC_FINDIV11CFGR U(0x1250)
#define RCC_FINDIV12CFGR U(0x1254)
#define RCC_FINDIV13CFGR U(0x1258)
#define RCC_FINDIV14CFGR U(0x125C)
#define RCC_FINDIV15CFGR U(0x1260)
#define RCC_FINDIV16CFGR U(0x1264)
#define RCC_FINDIV17CFGR U(0x1268)
#define RCC_FINDIV18CFGR U(0x126C)
#define RCC_FINDIV19CFGR U(0x1270)
#define RCC_FINDIV20CFGR U(0x1274)
#define RCC_FINDIV21CFGR U(0x1278)
#define RCC_FINDIV22CFGR U(0x127C)
#define RCC_FINDIV23CFGR U(0x1280)
#define RCC_FINDIV24CFGR U(0x1284)
#define RCC_FINDIV25CFGR U(0x1288)
#define RCC_FINDIV26CFGR U(0x128C)
#define RCC_FINDIV27CFGR U(0x1290)
#define RCC_FINDIV28CFGR U(0x1294)
#define RCC_FINDIV29CFGR U(0x1298)
#define RCC_FINDIV30CFGR U(0x129C)
#define RCC_FINDIV31CFGR U(0x12A0)
#define RCC_FINDIV32CFGR U(0x12A4)
#define RCC_FINDIV33CFGR U(0x12A8)
#define RCC_FINDIV34CFGR U(0x12AC)
#define RCC_FINDIV35CFGR U(0x12B0)
#define RCC_FINDIV36CFGR U(0x12B4)
#define RCC_FINDIV37CFGR U(0x12B8)
#define RCC_FINDIV38CFGR U(0x12BC)
#define RCC_FINDIV39CFGR U(0x12C0)
#define RCC_FINDIV40CFGR U(0x12C4)
#define RCC_FINDIV41CFGR U(0x12C8)
#define RCC_FINDIV42CFGR U(0x12CC)
#define RCC_FINDIV43CFGR U(0x12D0)
#define RCC_FINDIV44CFGR U(0x12D4)
#define RCC_FINDIV45CFGR U(0x12D8)
#define RCC_FINDIV46CFGR U(0x12DC)
#define RCC_FINDIV47CFGR U(0x12E0)
#define RCC_FINDIV48CFGR U(0x12E4)
#define RCC_FINDIV49CFGR U(0x12E8)
#define RCC_FINDIV50CFGR U(0x12EC)
#define RCC_FINDIV51CFGR U(0x12F0)
#define RCC_FINDIV52CFGR U(0x12F4)
#define RCC_FINDIV53CFGR U(0x12F8)
#define RCC_FINDIV54CFGR U(0x12FC)
#define RCC_FINDIV55CFGR U(0x1300)
#define RCC_FINDIV56CFGR U(0x1304)
#define RCC_FINDIV57CFGR U(0x1308)
#define RCC_FINDIV58CFGR U(0x130C)
#define RCC_FINDIV59CFGR U(0x1310)
#define RCC_FINDIV60CFGR U(0x1314)
#define RCC_FINDIV61CFGR U(0x1318)
#define RCC_FINDIV62CFGR U(0x131C)
#define RCC_FINDIV63CFGR U(0x1320)
#define RCC_FINDIVSR1 U(0x1324)
#define RCC_FINDIVSR2 U(0x1328)
#define RCC_FCALCOBS0CFGR U(0x1340)
#define RCC_FCALCOBS1CFGR U(0x1344)
#define RCC_FCALCREFCFGR U(0x1348)
#define RCC_FCALCCR1 U(0x134C)
#define RCC_FCALCCR2 U(0x1354)
#define RCC_FCALCSR U(0x1358)
#define RCC_PLL4CFGR1 U(0x1360)
#define RCC_PLL4CFGR2 U(0x1364)
#define RCC_PLL4CFGR3 U(0x1368)
#define RCC_PLL4CFGR4 U(0x136C)
#define RCC_PLL4CFGR5 U(0x1370)
#define RCC_PLL4CFGR6 U(0x1378)
#define RCC_PLL4CFGR7 U(0x137C)
#define RCC_PLL5CFGR1 U(0x1388)
#define RCC_PLL5CFGR2 U(0x138C)
#define RCC_PLL5CFGR3 U(0x1390)
#define RCC_PLL5CFGR4 U(0x1394)
#define RCC_PLL5CFGR5 U(0x1398)
#define RCC_PLL5CFGR6 U(0x13A0)
#define RCC_PLL5CFGR7 U(0x13A4)
#define RCC_PLL6CFGR1 U(0x13B0)
#define RCC_PLL6CFGR2 U(0x13B4)
#define RCC_PLL6CFGR3 U(0x13B8)
#define RCC_PLL6CFGR4 U(0x13BC)
#define RCC_PLL6CFGR5 U(0x13C0)
#define RCC_PLL6CFGR6 U(0x13C8)
#define RCC_PLL6CFGR7 U(0x13CC)
#define RCC_PLL7CFGR1 U(0x13D8)
#define RCC_PLL7CFGR2 U(0x13DC)
#define RCC_PLL7CFGR3 U(0x13E0)
#define RCC_PLL7CFGR4 U(0x13E4)
#define RCC_PLL7CFGR5 U(0x13E8)
#define RCC_PLL7CFGR6 U(0x13F0)
#define RCC_PLL7CFGR7 U(0x13F4)
#define RCC_PLL8CFGR1 U(0x1400)
#define RCC_PLL8CFGR2 U(0x1404)
#define RCC_PLL8CFGR3 U(0x1408)
#define RCC_PLL8CFGR4 U(0x140C)
#define RCC_PLL8CFGR5 U(0x1410)
#define RCC_PLL8CFGR6 U(0x1418)
#define RCC_PLL8CFGR7 U(0x141C)
#define RCC_VERR U(0xFFF4)
#define RCC_IDR U(0xFFF8)
#define RCC_SIDR U(0xFFFC)
/* Offset between RCC_MP_xxxENSETR and RCC_MP_xxxENCLRR registers */
#define RCC_MP_ENCLRR_OFFSET U(4)
/* RCC_SECCFGR3 register fields */
#define RCC_SECCFGR3_SEC_MASK GENMASK_32(17, 0)
#define RCC_SECCFGR3_SEC_SHIFT 0
/* RCC_PRIVCFGR3 register fields */
#define RCC_PRIVCFGR3_PRIV_MASK GENMASK_32(17, 0)
#define RCC_PRIVCFGR3_PRIV_SHIFT 0
/* RCC_RCFGLOCKR3 register fields */
#define RCC_RCFGLOCKR3_RLOCK_MASK GENMASK_32(17, 0)
#define RCC_RCFGLOCKR3_RLOCK_SHIFT 0
/* RCC_R0CIDCFGR register fields */
#define RCC_R0CIDCFGR_CFEN BIT(0)
#define RCC_R0CIDCFGR_SEM_EN BIT(1)
#define RCC_R0CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R0CIDCFGR_SCID_SHIFT 4
#define RCC_R0CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R0CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R0SEMCR register fields */
#define RCC_R0SEMCR_SEM_MUTEX BIT(0)
#define RCC_R0SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R0SEMCR_SEMCID_SHIFT 4
/* RCC_R1CIDCFGR register fields */
#define RCC_R1CIDCFGR_CFEN BIT(0)
#define RCC_R1CIDCFGR_SEM_EN BIT(1)
#define RCC_R1CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R1CIDCFGR_SCID_SHIFT 4
#define RCC_R1CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R1CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R1SEMCR register fields */
#define RCC_R1SEMCR_SEM_MUTEX BIT(0)
#define RCC_R1SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R1SEMCR_SEMCID_SHIFT 4
/* RCC_R2CIDCFGR register fields */
#define RCC_R2CIDCFGR_CFEN BIT(0)
#define RCC_R2CIDCFGR_SEM_EN BIT(1)
#define RCC_R2CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R2CIDCFGR_SCID_SHIFT 4
#define RCC_R2CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R2CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R2SEMCR register fields */
#define RCC_R2SEMCR_SEM_MUTEX BIT(0)
#define RCC_R2SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R2SEMCR_SEMCID_SHIFT 4
/* RCC_R3CIDCFGR register fields */
#define RCC_R3CIDCFGR_CFEN BIT(0)
#define RCC_R3CIDCFGR_SEM_EN BIT(1)
#define RCC_R3CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R3CIDCFGR_SCID_SHIFT 4
#define RCC_R3CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R3CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R3SEMCR register fields */
#define RCC_R3SEMCR_SEM_MUTEX BIT(0)
#define RCC_R3SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R3SEMCR_SEMCID_SHIFT 4
/* RCC_R4CIDCFGR register fields */
#define RCC_R4CIDCFGR_CFEN BIT(0)
#define RCC_R4CIDCFGR_SEM_EN BIT(1)
#define RCC_R4CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R4CIDCFGR_SCID_SHIFT 4
#define RCC_R4CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R4CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R4SEMCR register fields */
#define RCC_R4SEMCR_SEM_MUTEX BIT(0)
#define RCC_R4SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R4SEMCR_SEMCID_SHIFT 4
/* RCC_R5CIDCFGR register fields */
#define RCC_R5CIDCFGR_CFEN BIT(0)
#define RCC_R5CIDCFGR_SEM_EN BIT(1)
#define RCC_R5CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R5CIDCFGR_SCID_SHIFT 4
#define RCC_R5CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R5CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R5SEMCR register fields */
#define RCC_R5SEMCR_SEM_MUTEX BIT(0)
#define RCC_R5SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R5SEMCR_SEMCID_SHIFT 4
/* RCC_R6CIDCFGR register fields */
#define RCC_R6CIDCFGR_CFEN BIT(0)
#define RCC_R6CIDCFGR_SEM_EN BIT(1)
#define RCC_R6CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R6CIDCFGR_SCID_SHIFT 4
#define RCC_R6CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R6CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R6SEMCR register fields */
#define RCC_R6SEMCR_SEM_MUTEX BIT(0)
#define RCC_R6SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R6SEMCR_SEMCID_SHIFT 4
/* RCC_R7CIDCFGR register fields */
#define RCC_R7CIDCFGR_CFEN BIT(0)
#define RCC_R7CIDCFGR_SEM_EN BIT(1)
#define RCC_R7CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R7CIDCFGR_SCID_SHIFT 4
#define RCC_R7CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R7CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R7SEMCR register fields */
#define RCC_R7SEMCR_SEM_MUTEX BIT(0)
#define RCC_R7SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R7SEMCR_SEMCID_SHIFT 4
/* RCC_R8CIDCFGR register fields */
#define RCC_R8CIDCFGR_CFEN BIT(0)
#define RCC_R8CIDCFGR_SEM_EN BIT(1)
#define RCC_R8CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R8CIDCFGR_SCID_SHIFT 4
#define RCC_R8CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R8CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R8SEMCR register fields */
#define RCC_R8SEMCR_SEM_MUTEX BIT(0)
#define RCC_R8SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R8SEMCR_SEMCID_SHIFT 4
/* RCC_R9CIDCFGR register fields */
#define RCC_R9CIDCFGR_CFEN BIT(0)
#define RCC_R9CIDCFGR_SEM_EN BIT(1)
#define RCC_R9CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R9CIDCFGR_SCID_SHIFT 4
#define RCC_R9CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R9CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R9SEMCR register fields */
#define RCC_R9SEMCR_SEM_MUTEX BIT(0)
#define RCC_R9SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R9SEMCR_SEMCID_SHIFT 4
/* RCC_R10CIDCFGR register fields */
#define RCC_R10CIDCFGR_CFEN BIT(0)
#define RCC_R10CIDCFGR_SEM_EN BIT(1)
#define RCC_R10CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R10CIDCFGR_SCID_SHIFT 4
#define RCC_R10CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R10CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R10SEMCR register fields */
#define RCC_R10SEMCR_SEM_MUTEX BIT(0)
#define RCC_R10SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R10SEMCR_SEMCID_SHIFT 4
/* RCC_R11CIDCFGR register fields */
#define RCC_R11CIDCFGR_CFEN BIT(0)
#define RCC_R11CIDCFGR_SEM_EN BIT(1)
#define RCC_R11CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R11CIDCFGR_SCID_SHIFT 4
#define RCC_R11CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R11CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R11SEMCR register fields */
#define RCC_R11SEMCR_SEM_MUTEX BIT(0)
#define RCC_R11SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R11SEMCR_SEMCID_SHIFT 4
/* RCC_R12CIDCFGR register fields */
#define RCC_R12CIDCFGR_CFEN BIT(0)
#define RCC_R12CIDCFGR_SEM_EN BIT(1)
#define RCC_R12CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R12CIDCFGR_SCID_SHIFT 4
#define RCC_R12CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R12CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R12SEMCR register fields */
#define RCC_R12SEMCR_SEM_MUTEX BIT(0)
#define RCC_R12SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R12SEMCR_SEMCID_SHIFT 4
/* RCC_R13CIDCFGR register fields */
#define RCC_R13CIDCFGR_CFEN BIT(0)
#define RCC_R13CIDCFGR_SEM_EN BIT(1)
#define RCC_R13CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R13CIDCFGR_SCID_SHIFT 4
#define RCC_R13CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R13CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R13SEMCR register fields */
#define RCC_R13SEMCR_SEM_MUTEX BIT(0)
#define RCC_R13SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R13SEMCR_SEMCID_SHIFT 4
/* RCC_R14CIDCFGR register fields */
#define RCC_R14CIDCFGR_CFEN BIT(0)
#define RCC_R14CIDCFGR_SEM_EN BIT(1)
#define RCC_R14CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R14CIDCFGR_SCID_SHIFT 4
#define RCC_R14CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R14CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R14SEMCR register fields */
#define RCC_R14SEMCR_SEM_MUTEX BIT(0)
#define RCC_R14SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R14SEMCR_SEMCID_SHIFT 4
/* RCC_R15CIDCFGR register fields */
#define RCC_R15CIDCFGR_CFEN BIT(0)
#define RCC_R15CIDCFGR_SEM_EN BIT(1)
#define RCC_R15CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R15CIDCFGR_SCID_SHIFT 4
#define RCC_R15CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R15CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R15SEMCR register fields */
#define RCC_R15SEMCR_SEM_MUTEX BIT(0)
#define RCC_R15SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R15SEMCR_SEMCID_SHIFT 4
/* RCC_R16CIDCFGR register fields */
#define RCC_R16CIDCFGR_CFEN BIT(0)
#define RCC_R16CIDCFGR_SEM_EN BIT(1)
#define RCC_R16CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R16CIDCFGR_SCID_SHIFT 4
#define RCC_R16CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R16CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R16SEMCR register fields */
#define RCC_R16SEMCR_SEM_MUTEX BIT(0)
#define RCC_R16SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R16SEMCR_SEMCID_SHIFT 4
/* RCC_R17CIDCFGR register fields */
#define RCC_R17CIDCFGR_CFEN BIT(0)
#define RCC_R17CIDCFGR_SEM_EN BIT(1)
#define RCC_R17CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R17CIDCFGR_SCID_SHIFT 4
#define RCC_R17CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R17CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R17SEMCR register fields */
#define RCC_R17SEMCR_SEM_MUTEX BIT(0)
#define RCC_R17SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R17SEMCR_SEMCID_SHIFT 4
/* RCC_R18CIDCFGR register fields */
#define RCC_R18CIDCFGR_CFEN BIT(0)
#define RCC_R18CIDCFGR_SEM_EN BIT(1)
#define RCC_R18CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R18CIDCFGR_SCID_SHIFT 4
#define RCC_R18CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R18CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R18SEMCR register fields */
#define RCC_R18SEMCR_SEM_MUTEX BIT(0)
#define RCC_R18SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R18SEMCR_SEMCID_SHIFT 4
/* RCC_R19CIDCFGR register fields */
#define RCC_R19CIDCFGR_CFEN BIT(0)
#define RCC_R19CIDCFGR_SEM_EN BIT(1)
#define RCC_R19CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R19CIDCFGR_SCID_SHIFT 4
#define RCC_R19CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R19CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R19SEMCR register fields */
#define RCC_R19SEMCR_SEM_MUTEX BIT(0)
#define RCC_R19SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R19SEMCR_SEMCID_SHIFT 4
/* RCC_R20CIDCFGR register fields */
#define RCC_R20CIDCFGR_CFEN BIT(0)
#define RCC_R20CIDCFGR_SEM_EN BIT(1)
#define RCC_R20CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R20CIDCFGR_SCID_SHIFT 4
#define RCC_R20CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R20CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R20SEMCR register fields */
#define RCC_R20SEMCR_SEM_MUTEX BIT(0)
#define RCC_R20SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R20SEMCR_SEMCID_SHIFT 4
/* RCC_R21CIDCFGR register fields */
#define RCC_R21CIDCFGR_CFEN BIT(0)
#define RCC_R21CIDCFGR_SEM_EN BIT(1)
#define RCC_R21CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R21CIDCFGR_SCID_SHIFT 4
#define RCC_R21CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R21CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R21SEMCR register fields */
#define RCC_R21SEMCR_SEM_MUTEX BIT(0)
#define RCC_R21SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R21SEMCR_SEMCID_SHIFT 4
/* RCC_R22CIDCFGR register fields */
#define RCC_R22CIDCFGR_CFEN BIT(0)
#define RCC_R22CIDCFGR_SEM_EN BIT(1)
#define RCC_R22CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R22CIDCFGR_SCID_SHIFT 4
#define RCC_R22CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R22CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R22SEMCR register fields */
#define RCC_R22SEMCR_SEM_MUTEX BIT(0)
#define RCC_R22SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R22SEMCR_SEMCID_SHIFT 4
/* RCC_R23CIDCFGR register fields */
#define RCC_R23CIDCFGR_CFEN BIT(0)
#define RCC_R23CIDCFGR_SEM_EN BIT(1)
#define RCC_R23CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R23CIDCFGR_SCID_SHIFT 4
#define RCC_R23CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R23CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R23SEMCR register fields */
#define RCC_R23SEMCR_SEM_MUTEX BIT(0)
#define RCC_R23SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R23SEMCR_SEMCID_SHIFT 4
/* RCC_R24CIDCFGR register fields */
#define RCC_R24CIDCFGR_CFEN BIT(0)
#define RCC_R24CIDCFGR_SEM_EN BIT(1)
#define RCC_R24CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R24CIDCFGR_SCID_SHIFT 4
#define RCC_R24CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R24CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R24SEMCR register fields */
#define RCC_R24SEMCR_SEM_MUTEX BIT(0)
#define RCC_R24SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R24SEMCR_SEMCID_SHIFT 4
/* RCC_R25CIDCFGR register fields */
#define RCC_R25CIDCFGR_CFEN BIT(0)
#define RCC_R25CIDCFGR_SEM_EN BIT(1)
#define RCC_R25CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R25CIDCFGR_SCID_SHIFT 4
#define RCC_R25CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R25CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R25SEMCR register fields */
#define RCC_R25SEMCR_SEM_MUTEX BIT(0)
#define RCC_R25SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R25SEMCR_SEMCID_SHIFT 4
/* RCC_R26CIDCFGR register fields */
#define RCC_R26CIDCFGR_CFEN BIT(0)
#define RCC_R26CIDCFGR_SEM_EN BIT(1)
#define RCC_R26CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R26CIDCFGR_SCID_SHIFT 4
#define RCC_R26CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R26CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R26SEMCR register fields */
#define RCC_R26SEMCR_SEM_MUTEX BIT(0)
#define RCC_R26SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R26SEMCR_SEMCID_SHIFT 4
/* RCC_R27CIDCFGR register fields */
#define RCC_R27CIDCFGR_CFEN BIT(0)
#define RCC_R27CIDCFGR_SEM_EN BIT(1)
#define RCC_R27CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R27CIDCFGR_SCID_SHIFT 4
#define RCC_R27CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R27CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R27SEMCR register fields */
#define RCC_R27SEMCR_SEM_MUTEX BIT(0)
#define RCC_R27SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R27SEMCR_SEMCID_SHIFT 4
/* RCC_R28CIDCFGR register fields */
#define RCC_R28CIDCFGR_CFEN BIT(0)
#define RCC_R28CIDCFGR_SEM_EN BIT(1)
#define RCC_R28CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R28CIDCFGR_SCID_SHIFT 4
#define RCC_R28CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R28CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R28SEMCR register fields */
#define RCC_R28SEMCR_SEM_MUTEX BIT(0)
#define RCC_R28SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R28SEMCR_SEMCID_SHIFT 4
/* RCC_R29CIDCFGR register fields */
#define RCC_R29CIDCFGR_CFEN BIT(0)
#define RCC_R29CIDCFGR_SEM_EN BIT(1)
#define RCC_R29CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R29CIDCFGR_SCID_SHIFT 4
#define RCC_R29CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R29CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R29SEMCR register fields */
#define RCC_R29SEMCR_SEM_MUTEX BIT(0)
#define RCC_R29SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R29SEMCR_SEMCID_SHIFT 4
/* RCC_R30CIDCFGR register fields */
#define RCC_R30CIDCFGR_CFEN BIT(0)
#define RCC_R30CIDCFGR_SEM_EN BIT(1)
#define RCC_R30CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R30CIDCFGR_SCID_SHIFT 4
#define RCC_R30CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R30CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R30SEMCR register fields */
#define RCC_R30SEMCR_SEM_MUTEX BIT(0)
#define RCC_R30SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R30SEMCR_SEMCID_SHIFT 4
/* RCC_R31CIDCFGR register fields */
#define RCC_R31CIDCFGR_CFEN BIT(0)
#define RCC_R31CIDCFGR_SEM_EN BIT(1)
#define RCC_R31CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R31CIDCFGR_SCID_SHIFT 4
#define RCC_R31CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R31CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R31SEMCR register fields */
#define RCC_R31SEMCR_SEM_MUTEX BIT(0)
#define RCC_R31SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R31SEMCR_SEMCID_SHIFT 4
/* RCC_R32CIDCFGR register fields */
#define RCC_R32CIDCFGR_CFEN BIT(0)
#define RCC_R32CIDCFGR_SEM_EN BIT(1)
#define RCC_R32CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R32CIDCFGR_SCID_SHIFT 4
#define RCC_R32CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R32CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R32SEMCR register fields */
#define RCC_R32SEMCR_SEM_MUTEX BIT(0)
#define RCC_R32SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R32SEMCR_SEMCID_SHIFT 4
/* RCC_R33CIDCFGR register fields */
#define RCC_R33CIDCFGR_CFEN BIT(0)
#define RCC_R33CIDCFGR_SEM_EN BIT(1)
#define RCC_R33CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R33CIDCFGR_SCID_SHIFT 4
#define RCC_R33CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R33CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R33SEMCR register fields */
#define RCC_R33SEMCR_SEM_MUTEX BIT(0)
#define RCC_R33SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R33SEMCR_SEMCID_SHIFT 4
/* RCC_R34CIDCFGR register fields */
#define RCC_R34CIDCFGR_CFEN BIT(0)
#define RCC_R34CIDCFGR_SEM_EN BIT(1)
#define RCC_R34CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R34CIDCFGR_SCID_SHIFT 4
#define RCC_R34CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R34CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R34SEMCR register fields */
#define RCC_R34SEMCR_SEM_MUTEX BIT(0)
#define RCC_R34SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R34SEMCR_SEMCID_SHIFT 4
/* RCC_R35CIDCFGR register fields */
#define RCC_R35CIDCFGR_CFEN BIT(0)
#define RCC_R35CIDCFGR_SEM_EN BIT(1)
#define RCC_R35CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R35CIDCFGR_SCID_SHIFT 4
#define RCC_R35CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R35CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R35SEMCR register fields */
#define RCC_R35SEMCR_SEM_MUTEX BIT(0)
#define RCC_R35SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R35SEMCR_SEMCID_SHIFT 4
/* RCC_R36CIDCFGR register fields */
#define RCC_R36CIDCFGR_CFEN BIT(0)
#define RCC_R36CIDCFGR_SEM_EN BIT(1)
#define RCC_R36CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R36CIDCFGR_SCID_SHIFT 4
#define RCC_R36CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R36CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R36SEMCR register fields */
#define RCC_R36SEMCR_SEM_MUTEX BIT(0)
#define RCC_R36SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R36SEMCR_SEMCID_SHIFT 4
/* RCC_R37CIDCFGR register fields */
#define RCC_R37CIDCFGR_CFEN BIT(0)
#define RCC_R37CIDCFGR_SEM_EN BIT(1)
#define RCC_R37CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R37CIDCFGR_SCID_SHIFT 4
#define RCC_R37CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R37CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R37SEMCR register fields */
#define RCC_R37SEMCR_SEM_MUTEX BIT(0)
#define RCC_R37SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R37SEMCR_SEMCID_SHIFT 4
/* RCC_R38CIDCFGR register fields */
#define RCC_R38CIDCFGR_CFEN BIT(0)
#define RCC_R38CIDCFGR_SEM_EN BIT(1)
#define RCC_R38CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R38CIDCFGR_SCID_SHIFT 4
#define RCC_R38CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R38CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R38SEMCR register fields */
#define RCC_R38SEMCR_SEM_MUTEX BIT(0)
#define RCC_R38SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R38SEMCR_SEMCID_SHIFT 4
/* RCC_R39CIDCFGR register fields */
#define RCC_R39CIDCFGR_CFEN BIT(0)
#define RCC_R39CIDCFGR_SEM_EN BIT(1)
#define RCC_R39CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R39CIDCFGR_SCID_SHIFT 4
#define RCC_R39CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R39CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R39SEMCR register fields */
#define RCC_R39SEMCR_SEM_MUTEX BIT(0)
#define RCC_R39SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R39SEMCR_SEMCID_SHIFT 4
/* RCC_R40CIDCFGR register fields */
#define RCC_R40CIDCFGR_CFEN BIT(0)
#define RCC_R40CIDCFGR_SEM_EN BIT(1)
#define RCC_R40CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R40CIDCFGR_SCID_SHIFT 4
#define RCC_R40CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R40CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R40SEMCR register fields */
#define RCC_R40SEMCR_SEM_MUTEX BIT(0)
#define RCC_R40SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R40SEMCR_SEMCID_SHIFT 4
/* RCC_R41CIDCFGR register fields */
#define RCC_R41CIDCFGR_CFEN BIT(0)
#define RCC_R41CIDCFGR_SEM_EN BIT(1)
#define RCC_R41CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R41CIDCFGR_SCID_SHIFT 4
#define RCC_R41CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R41CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R41SEMCR register fields */
#define RCC_R41SEMCR_SEM_MUTEX BIT(0)
#define RCC_R41SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R41SEMCR_SEMCID_SHIFT 4
/* RCC_R42CIDCFGR register fields */
#define RCC_R42CIDCFGR_CFEN BIT(0)
#define RCC_R42CIDCFGR_SEM_EN BIT(1)
#define RCC_R42CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R42CIDCFGR_SCID_SHIFT 4
#define RCC_R42CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R42CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R42SEMCR register fields */
#define RCC_R42SEMCR_SEM_MUTEX BIT(0)
#define RCC_R42SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R42SEMCR_SEMCID_SHIFT 4
/* RCC_R43CIDCFGR register fields */
#define RCC_R43CIDCFGR_CFEN BIT(0)
#define RCC_R43CIDCFGR_SEM_EN BIT(1)
#define RCC_R43CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R43CIDCFGR_SCID_SHIFT 4
#define RCC_R43CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R43CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R43SEMCR register fields */
#define RCC_R43SEMCR_SEM_MUTEX BIT(0)
#define RCC_R43SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R43SEMCR_SEMCID_SHIFT 4
/* RCC_R44CIDCFGR register fields */
#define RCC_R44CIDCFGR_CFEN BIT(0)
#define RCC_R44CIDCFGR_SEM_EN BIT(1)
#define RCC_R44CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R44CIDCFGR_SCID_SHIFT 4
#define RCC_R44CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R44CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R44SEMCR register fields */
#define RCC_R44SEMCR_SEM_MUTEX BIT(0)
#define RCC_R44SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R44SEMCR_SEMCID_SHIFT 4
/* RCC_R45CIDCFGR register fields */
#define RCC_R45CIDCFGR_CFEN BIT(0)
#define RCC_R45CIDCFGR_SEM_EN BIT(1)
#define RCC_R45CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R45CIDCFGR_SCID_SHIFT 4
#define RCC_R45CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R45CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R45SEMCR register fields */
#define RCC_R45SEMCR_SEM_MUTEX BIT(0)
#define RCC_R45SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R45SEMCR_SEMCID_SHIFT 4
/* RCC_R46CIDCFGR register fields */
#define RCC_R46CIDCFGR_CFEN BIT(0)
#define RCC_R46CIDCFGR_SEM_EN BIT(1)
#define RCC_R46CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R46CIDCFGR_SCID_SHIFT 4
#define RCC_R46CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R46CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R46SEMCR register fields */
#define RCC_R46SEMCR_SEM_MUTEX BIT(0)
#define RCC_R46SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R46SEMCR_SEMCID_SHIFT 4
/* RCC_R47CIDCFGR register fields */
#define RCC_R47CIDCFGR_CFEN BIT(0)
#define RCC_R47CIDCFGR_SEM_EN BIT(1)
#define RCC_R47CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R47CIDCFGR_SCID_SHIFT 4
#define RCC_R47CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R47CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R47SEMCR register fields */
#define RCC_R47SEMCR_SEM_MUTEX BIT(0)
#define RCC_R47SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R47SEMCR_SEMCID_SHIFT 4
/* RCC_R48CIDCFGR register fields */
#define RCC_R48CIDCFGR_CFEN BIT(0)
#define RCC_R48CIDCFGR_SEM_EN BIT(1)
#define RCC_R48CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R48CIDCFGR_SCID_SHIFT 4
#define RCC_R48CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R48CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R48SEMCR register fields */
#define RCC_R48SEMCR_SEM_MUTEX BIT(0)
#define RCC_R48SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R48SEMCR_SEMCID_SHIFT 4
/* RCC_R49CIDCFGR register fields */
#define RCC_R49CIDCFGR_CFEN BIT(0)
#define RCC_R49CIDCFGR_SEM_EN BIT(1)
#define RCC_R49CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R49CIDCFGR_SCID_SHIFT 4
#define RCC_R49CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R49CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R49SEMCR register fields */
#define RCC_R49SEMCR_SEM_MUTEX BIT(0)
#define RCC_R49SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R49SEMCR_SEMCID_SHIFT 4
/* RCC_R50CIDCFGR register fields */
#define RCC_R50CIDCFGR_CFEN BIT(0)
#define RCC_R50CIDCFGR_SEM_EN BIT(1)
#define RCC_R50CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R50CIDCFGR_SCID_SHIFT 4
#define RCC_R50CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R50CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R50SEMCR register fields */
#define RCC_R50SEMCR_SEM_MUTEX BIT(0)
#define RCC_R50SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R50SEMCR_SEMCID_SHIFT 4
/* RCC_R51CIDCFGR register fields */
#define RCC_R51CIDCFGR_CFEN BIT(0)
#define RCC_R51CIDCFGR_SEM_EN BIT(1)
#define RCC_R51CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R51CIDCFGR_SCID_SHIFT 4
#define RCC_R51CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R51CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R51SEMCR register fields */
#define RCC_R51SEMCR_SEM_MUTEX BIT(0)
#define RCC_R51SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R51SEMCR_SEMCID_SHIFT 4
/* RCC_R52CIDCFGR register fields */
#define RCC_R52CIDCFGR_CFEN BIT(0)
#define RCC_R52CIDCFGR_SEM_EN BIT(1)
#define RCC_R52CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R52CIDCFGR_SCID_SHIFT 4
#define RCC_R52CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R52CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R52SEMCR register fields */
#define RCC_R52SEMCR_SEM_MUTEX BIT(0)
#define RCC_R52SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R52SEMCR_SEMCID_SHIFT 4
/* RCC_R53CIDCFGR register fields */
#define RCC_R53CIDCFGR_CFEN BIT(0)
#define RCC_R53CIDCFGR_SEM_EN BIT(1)
#define RCC_R53CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R53CIDCFGR_SCID_SHIFT 4
#define RCC_R53CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R53CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R53SEMCR register fields */
#define RCC_R53SEMCR_SEM_MUTEX BIT(0)
#define RCC_R53SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R53SEMCR_SEMCID_SHIFT 4
/* RCC_R54CIDCFGR register fields */
#define RCC_R54CIDCFGR_CFEN BIT(0)
#define RCC_R54CIDCFGR_SEM_EN BIT(1)
#define RCC_R54CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R54CIDCFGR_SCID_SHIFT 4
#define RCC_R54CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R54CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R54SEMCR register fields */
#define RCC_R54SEMCR_SEM_MUTEX BIT(0)
#define RCC_R54SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R54SEMCR_SEMCID_SHIFT 4
/* RCC_R55CIDCFGR register fields */
#define RCC_R55CIDCFGR_CFEN BIT(0)
#define RCC_R55CIDCFGR_SEM_EN BIT(1)
#define RCC_R55CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R55CIDCFGR_SCID_SHIFT 4
#define RCC_R55CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R55CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R55SEMCR register fields */
#define RCC_R55SEMCR_SEM_MUTEX BIT(0)
#define RCC_R55SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R55SEMCR_SEMCID_SHIFT 4
/* RCC_R56CIDCFGR register fields */
#define RCC_R56CIDCFGR_CFEN BIT(0)
#define RCC_R56CIDCFGR_SEM_EN BIT(1)
#define RCC_R56CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R56CIDCFGR_SCID_SHIFT 4
#define RCC_R56CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R56CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R56SEMCR register fields */
#define RCC_R56SEMCR_SEM_MUTEX BIT(0)
#define RCC_R56SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R56SEMCR_SEMCID_SHIFT 4
/* RCC_R57CIDCFGR register fields */
#define RCC_R57CIDCFGR_CFEN BIT(0)
#define RCC_R57CIDCFGR_SEM_EN BIT(1)
#define RCC_R57CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R57CIDCFGR_SCID_SHIFT 4
#define RCC_R57CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R57CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R57SEMCR register fields */
#define RCC_R57SEMCR_SEM_MUTEX BIT(0)
#define RCC_R57SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R57SEMCR_SEMCID_SHIFT 4
/* RCC_R58CIDCFGR register fields */
#define RCC_R58CIDCFGR_CFEN BIT(0)
#define RCC_R58CIDCFGR_SEM_EN BIT(1)
#define RCC_R58CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R58CIDCFGR_SCID_SHIFT 4
#define RCC_R58CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R58CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R58SEMCR register fields */
#define RCC_R58SEMCR_SEM_MUTEX BIT(0)
#define RCC_R58SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R58SEMCR_SEMCID_SHIFT 4
/* RCC_R59CIDCFGR register fields */
#define RCC_R59CIDCFGR_CFEN BIT(0)
#define RCC_R59CIDCFGR_SEM_EN BIT(1)
#define RCC_R59CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R59CIDCFGR_SCID_SHIFT 4
#define RCC_R59CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R59CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R59SEMCR register fields */
#define RCC_R59SEMCR_SEM_MUTEX BIT(0)
#define RCC_R59SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R59SEMCR_SEMCID_SHIFT 4
/* RCC_R60CIDCFGR register fields */
#define RCC_R60CIDCFGR_CFEN BIT(0)
#define RCC_R60CIDCFGR_SEM_EN BIT(1)
#define RCC_R60CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R60CIDCFGR_SCID_SHIFT 4
#define RCC_R60CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R60CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R60SEMCR register fields */
#define RCC_R60SEMCR_SEM_MUTEX BIT(0)
#define RCC_R60SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R60SEMCR_SEMCID_SHIFT 4
/* RCC_R61CIDCFGR register fields */
#define RCC_R61CIDCFGR_CFEN BIT(0)
#define RCC_R61CIDCFGR_SEM_EN BIT(1)
#define RCC_R61CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R61CIDCFGR_SCID_SHIFT 4
#define RCC_R61CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R61CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R61SEMCR register fields */
#define RCC_R61SEMCR_SEM_MUTEX BIT(0)
#define RCC_R61SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R61SEMCR_SEMCID_SHIFT 4
/* RCC_R62CIDCFGR register fields */
#define RCC_R62CIDCFGR_CFEN BIT(0)
#define RCC_R62CIDCFGR_SEM_EN BIT(1)
#define RCC_R62CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R62CIDCFGR_SCID_SHIFT 4
#define RCC_R62CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R62CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R62SEMCR register fields */
#define RCC_R62SEMCR_SEM_MUTEX BIT(0)
#define RCC_R62SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R62SEMCR_SEMCID_SHIFT 4
/* RCC_R63CIDCFGR register fields */
#define RCC_R63CIDCFGR_CFEN BIT(0)
#define RCC_R63CIDCFGR_SEM_EN BIT(1)
#define RCC_R63CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R63CIDCFGR_SCID_SHIFT 4
#define RCC_R63CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R63CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R63SEMCR register fields */
#define RCC_R63SEMCR_SEM_MUTEX BIT(0)
#define RCC_R63SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R63SEMCR_SEMCID_SHIFT 4
/* RCC_R64CIDCFGR register fields */
#define RCC_R64CIDCFGR_CFEN BIT(0)
#define RCC_R64CIDCFGR_SEM_EN BIT(1)
#define RCC_R64CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R64CIDCFGR_SCID_SHIFT 4
#define RCC_R64CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R64CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R64SEMCR register fields */
#define RCC_R64SEMCR_SEM_MUTEX BIT(0)
#define RCC_R64SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R64SEMCR_SEMCID_SHIFT 4
/* RCC_R65CIDCFGR register fields */
#define RCC_R65CIDCFGR_CFEN BIT(0)
#define RCC_R65CIDCFGR_SEM_EN BIT(1)
#define RCC_R65CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R65CIDCFGR_SCID_SHIFT 4
#define RCC_R65CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R65CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R65SEMCR register fields */
#define RCC_R65SEMCR_SEM_MUTEX BIT(0)
#define RCC_R65SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R65SEMCR_SEMCID_SHIFT 4
/* RCC_R66CIDCFGR register fields */
#define RCC_R66CIDCFGR_CFEN BIT(0)
#define RCC_R66CIDCFGR_SEM_EN BIT(1)
#define RCC_R66CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R66CIDCFGR_SCID_SHIFT 4
#define RCC_R66CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R66CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R66SEMCR register fields */
#define RCC_R66SEMCR_SEM_MUTEX BIT(0)
#define RCC_R66SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R66SEMCR_SEMCID_SHIFT 4
/* RCC_R67CIDCFGR register fields */
#define RCC_R67CIDCFGR_CFEN BIT(0)
#define RCC_R67CIDCFGR_SEM_EN BIT(1)
#define RCC_R67CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R67CIDCFGR_SCID_SHIFT 4
#define RCC_R67CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R67CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R67SEMCR register fields */
#define RCC_R67SEMCR_SEM_MUTEX BIT(0)
#define RCC_R67SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R67SEMCR_SEMCID_SHIFT 4
/* RCC_R68CIDCFGR register fields */
#define RCC_R68CIDCFGR_CFEN BIT(0)
#define RCC_R68CIDCFGR_SEM_EN BIT(1)
#define RCC_R68CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R68CIDCFGR_SCID_SHIFT 4
#define RCC_R68CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R68CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R68SEMCR register fields */
#define RCC_R68SEMCR_SEM_MUTEX BIT(0)
#define RCC_R68SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R68SEMCR_SEMCID_SHIFT 4
/* RCC_R69CIDCFGR register fields */
#define RCC_R69CIDCFGR_CFEN BIT(0)
#define RCC_R69CIDCFGR_SEM_EN BIT(1)
#define RCC_R69CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R69CIDCFGR_SCID_SHIFT 4
#define RCC_R69CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R69CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R69SEMCR register fields */
#define RCC_R69SEMCR_SEM_MUTEX BIT(0)
#define RCC_R69SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R69SEMCR_SEMCID_SHIFT 4
/* RCC_R70CIDCFGR register fields */
#define RCC_R70CIDCFGR_CFEN BIT(0)
#define RCC_R70CIDCFGR_SEM_EN BIT(1)
#define RCC_R70CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R70CIDCFGR_SCID_SHIFT 4
#define RCC_R70CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R70CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R70SEMCR register fields */
#define RCC_R70SEMCR_SEM_MUTEX BIT(0)
#define RCC_R70SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R70SEMCR_SEMCID_SHIFT 4
/* RCC_R71CIDCFGR register fields */
#define RCC_R71CIDCFGR_CFEN BIT(0)
#define RCC_R71CIDCFGR_SEM_EN BIT(1)
#define RCC_R71CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R71CIDCFGR_SCID_SHIFT 4
#define RCC_R71CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R71CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R71SEMCR register fields */
#define RCC_R71SEMCR_SEM_MUTEX BIT(0)
#define RCC_R71SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R71SEMCR_SEMCID_SHIFT 4
/* RCC_R72CIDCFGR register fields */
#define RCC_R72CIDCFGR_CFEN BIT(0)
#define RCC_R72CIDCFGR_SEM_EN BIT(1)
#define RCC_R72CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R72CIDCFGR_SCID_SHIFT 4
#define RCC_R72CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R72CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R72SEMCR register fields */
#define RCC_R72SEMCR_SEM_MUTEX BIT(0)
#define RCC_R72SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R72SEMCR_SEMCID_SHIFT 4
/* RCC_R73CIDCFGR register fields */
#define RCC_R73CIDCFGR_CFEN BIT(0)
#define RCC_R73CIDCFGR_SEM_EN BIT(1)
#define RCC_R73CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R73CIDCFGR_SCID_SHIFT 4
#define RCC_R73CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R73CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R73SEMCR register fields */
#define RCC_R73SEMCR_SEM_MUTEX BIT(0)
#define RCC_R73SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R73SEMCR_SEMCID_SHIFT 4
/* RCC_R74CIDCFGR register fields */
#define RCC_R74CIDCFGR_CFEN BIT(0)
#define RCC_R74CIDCFGR_SEM_EN BIT(1)
#define RCC_R74CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R74CIDCFGR_SCID_SHIFT 4
#define RCC_R74CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R74CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R74SEMCR register fields */
#define RCC_R74SEMCR_SEM_MUTEX BIT(0)
#define RCC_R74SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R74SEMCR_SEMCID_SHIFT 4
/* RCC_R75CIDCFGR register fields */
#define RCC_R75CIDCFGR_CFEN BIT(0)
#define RCC_R75CIDCFGR_SEM_EN BIT(1)
#define RCC_R75CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R75CIDCFGR_SCID_SHIFT 4
#define RCC_R75CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R75CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R75SEMCR register fields */
#define RCC_R75SEMCR_SEM_MUTEX BIT(0)
#define RCC_R75SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R75SEMCR_SEMCID_SHIFT 4
/* RCC_R76CIDCFGR register fields */
#define RCC_R76CIDCFGR_CFEN BIT(0)
#define RCC_R76CIDCFGR_SEM_EN BIT(1)
#define RCC_R76CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R76CIDCFGR_SCID_SHIFT 4
#define RCC_R76CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R76CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R76SEMCR register fields */
#define RCC_R76SEMCR_SEM_MUTEX BIT(0)
#define RCC_R76SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R76SEMCR_SEMCID_SHIFT 4
/* RCC_R77CIDCFGR register fields */
#define RCC_R77CIDCFGR_CFEN BIT(0)
#define RCC_R77CIDCFGR_SEM_EN BIT(1)
#define RCC_R77CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R77CIDCFGR_SCID_SHIFT 4
#define RCC_R77CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R77CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R77SEMCR register fields */
#define RCC_R77SEMCR_SEM_MUTEX BIT(0)
#define RCC_R77SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R77SEMCR_SEMCID_SHIFT 4
/* RCC_R78CIDCFGR register fields */
#define RCC_R78CIDCFGR_CFEN BIT(0)
#define RCC_R78CIDCFGR_SEM_EN BIT(1)
#define RCC_R78CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R78CIDCFGR_SCID_SHIFT 4
#define RCC_R78CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R78CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R78SEMCR register fields */
#define RCC_R78SEMCR_SEM_MUTEX BIT(0)
#define RCC_R78SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R78SEMCR_SEMCID_SHIFT 4
/* RCC_R79CIDCFGR register fields */
#define RCC_R79CIDCFGR_CFEN BIT(0)
#define RCC_R79CIDCFGR_SEM_EN BIT(1)
#define RCC_R79CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R79CIDCFGR_SCID_SHIFT 4
#define RCC_R79CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R79CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R79SEMCR register fields */
#define RCC_R79SEMCR_SEM_MUTEX BIT(0)
#define RCC_R79SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R79SEMCR_SEMCID_SHIFT 4
/* RCC_R80CIDCFGR register fields */
#define RCC_R80CIDCFGR_CFEN BIT(0)
#define RCC_R80CIDCFGR_SEM_EN BIT(1)
#define RCC_R80CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R80CIDCFGR_SCID_SHIFT 4
#define RCC_R80CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R80CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R80SEMCR register fields */
#define RCC_R80SEMCR_SEM_MUTEX BIT(0)
#define RCC_R80SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R80SEMCR_SEMCID_SHIFT 4
/* RCC_R81CIDCFGR register fields */
#define RCC_R81CIDCFGR_CFEN BIT(0)
#define RCC_R81CIDCFGR_SEM_EN BIT(1)
#define RCC_R81CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R81CIDCFGR_SCID_SHIFT 4
#define RCC_R81CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R81CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R81SEMCR register fields */
#define RCC_R81SEMCR_SEM_MUTEX BIT(0)
#define RCC_R81SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R81SEMCR_SEMCID_SHIFT 4
/* RCC_R82CIDCFGR register fields */
#define RCC_R82CIDCFGR_CFEN BIT(0)
#define RCC_R82CIDCFGR_SEM_EN BIT(1)
#define RCC_R82CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R82CIDCFGR_SCID_SHIFT 4
#define RCC_R82CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R82CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R82SEMCR register fields */
#define RCC_R82SEMCR_SEM_MUTEX BIT(0)
#define RCC_R82SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R82SEMCR_SEMCID_SHIFT 4
/* RCC_R83CIDCFGR register fields */
#define RCC_R83CIDCFGR_CFEN BIT(0)
#define RCC_R83CIDCFGR_SEM_EN BIT(1)
#define RCC_R83CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R83CIDCFGR_SCID_SHIFT 4
#define RCC_R83CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R83CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R83SEMCR register fields */
#define RCC_R83SEMCR_SEM_MUTEX BIT(0)
#define RCC_R83SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R83SEMCR_SEMCID_SHIFT 4
/* RCC_R84CIDCFGR register fields */
#define RCC_R84CIDCFGR_CFEN BIT(0)
#define RCC_R84CIDCFGR_SEM_EN BIT(1)
#define RCC_R84CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R84CIDCFGR_SCID_SHIFT 4
#define RCC_R84CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R84CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R84SEMCR register fields */
#define RCC_R84SEMCR_SEM_MUTEX BIT(0)
#define RCC_R84SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R84SEMCR_SEMCID_SHIFT 4
/* RCC_R85CIDCFGR register fields */
#define RCC_R85CIDCFGR_CFEN BIT(0)
#define RCC_R85CIDCFGR_SEM_EN BIT(1)
#define RCC_R85CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R85CIDCFGR_SCID_SHIFT 4
#define RCC_R85CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R85CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R85SEMCR register fields */
#define RCC_R85SEMCR_SEM_MUTEX BIT(0)
#define RCC_R85SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R85SEMCR_SEMCID_SHIFT 4
/* RCC_R86CIDCFGR register fields */
#define RCC_R86CIDCFGR_CFEN BIT(0)
#define RCC_R86CIDCFGR_SEM_EN BIT(1)
#define RCC_R86CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R86CIDCFGR_SCID_SHIFT 4
#define RCC_R86CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R86CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R86SEMCR register fields */
#define RCC_R86SEMCR_SEM_MUTEX BIT(0)
#define RCC_R86SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R86SEMCR_SEMCID_SHIFT 4
/* RCC_R87CIDCFGR register fields */
#define RCC_R87CIDCFGR_CFEN BIT(0)
#define RCC_R87CIDCFGR_SEM_EN BIT(1)
#define RCC_R87CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R87CIDCFGR_SCID_SHIFT 4
#define RCC_R87CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R87CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R87SEMCR register fields */
#define RCC_R87SEMCR_SEM_MUTEX BIT(0)
#define RCC_R87SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R87SEMCR_SEMCID_SHIFT 4
/* RCC_R88CIDCFGR register fields */
#define RCC_R88CIDCFGR_CFEN BIT(0)
#define RCC_R88CIDCFGR_SEM_EN BIT(1)
#define RCC_R88CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R88CIDCFGR_SCID_SHIFT 4
#define RCC_R88CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R88CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R88SEMCR register fields */
#define RCC_R88SEMCR_SEM_MUTEX BIT(0)
#define RCC_R88SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R88SEMCR_SEMCID_SHIFT 4
/* RCC_R89CIDCFGR register fields */
#define RCC_R89CIDCFGR_CFEN BIT(0)
#define RCC_R89CIDCFGR_SEM_EN BIT(1)
#define RCC_R89CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R89CIDCFGR_SCID_SHIFT 4
#define RCC_R89CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R89CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R89SEMCR register fields */
#define RCC_R89SEMCR_SEM_MUTEX BIT(0)
#define RCC_R89SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R89SEMCR_SEMCID_SHIFT 4
/* RCC_R90CIDCFGR register fields */
#define RCC_R90CIDCFGR_CFEN BIT(0)
#define RCC_R90CIDCFGR_SEM_EN BIT(1)
#define RCC_R90CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R90CIDCFGR_SCID_SHIFT 4
#define RCC_R90CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R90CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R90SEMCR register fields */
#define RCC_R90SEMCR_SEM_MUTEX BIT(0)
#define RCC_R90SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R90SEMCR_SEMCID_SHIFT 4
/* RCC_R91CIDCFGR register fields */
#define RCC_R91CIDCFGR_CFEN BIT(0)
#define RCC_R91CIDCFGR_SEM_EN BIT(1)
#define RCC_R91CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R91CIDCFGR_SCID_SHIFT 4
#define RCC_R91CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R91CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R91SEMCR register fields */
#define RCC_R91SEMCR_SEM_MUTEX BIT(0)
#define RCC_R91SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R91SEMCR_SEMCID_SHIFT 4
/* RCC_R92CIDCFGR register fields */
#define RCC_R92CIDCFGR_CFEN BIT(0)
#define RCC_R92CIDCFGR_SEM_EN BIT(1)
#define RCC_R92CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R92CIDCFGR_SCID_SHIFT 4
#define RCC_R92CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R92CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R92SEMCR register fields */
#define RCC_R92SEMCR_SEM_MUTEX BIT(0)
#define RCC_R92SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R92SEMCR_SEMCID_SHIFT 4
/* RCC_R93CIDCFGR register fields */
#define RCC_R93CIDCFGR_CFEN BIT(0)
#define RCC_R93CIDCFGR_SEM_EN BIT(1)
#define RCC_R93CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R93CIDCFGR_SCID_SHIFT 4
#define RCC_R93CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R93CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R93SEMCR register fields */
#define RCC_R93SEMCR_SEM_MUTEX BIT(0)
#define RCC_R93SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R93SEMCR_SEMCID_SHIFT 4
/* RCC_R94CIDCFGR register fields */
#define RCC_R94CIDCFGR_CFEN BIT(0)
#define RCC_R94CIDCFGR_SEM_EN BIT(1)
#define RCC_R94CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R94CIDCFGR_SCID_SHIFT 4
#define RCC_R94CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R94CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R94SEMCR register fields */
#define RCC_R94SEMCR_SEM_MUTEX BIT(0)
#define RCC_R94SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R94SEMCR_SEMCID_SHIFT 4
/* RCC_R95CIDCFGR register fields */
#define RCC_R95CIDCFGR_CFEN BIT(0)
#define RCC_R95CIDCFGR_SEM_EN BIT(1)
#define RCC_R95CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R95CIDCFGR_SCID_SHIFT 4
#define RCC_R95CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R95CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R95SEMCR register fields */
#define RCC_R95SEMCR_SEM_MUTEX BIT(0)
#define RCC_R95SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R95SEMCR_SEMCID_SHIFT 4
/* RCC_R96CIDCFGR register fields */
#define RCC_R96CIDCFGR_CFEN BIT(0)
#define RCC_R96CIDCFGR_SEM_EN BIT(1)
#define RCC_R96CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R96CIDCFGR_SCID_SHIFT 4
#define RCC_R96CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R96CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R96SEMCR register fields */
#define RCC_R96SEMCR_SEM_MUTEX BIT(0)
#define RCC_R96SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R96SEMCR_SEMCID_SHIFT 4
/* RCC_R97CIDCFGR register fields */
#define RCC_R97CIDCFGR_CFEN BIT(0)
#define RCC_R97CIDCFGR_SEM_EN BIT(1)
#define RCC_R97CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R97CIDCFGR_SCID_SHIFT 4
#define RCC_R97CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R97CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R97SEMCR register fields */
#define RCC_R97SEMCR_SEM_MUTEX BIT(0)
#define RCC_R97SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R97SEMCR_SEMCID_SHIFT 4
/* RCC_R98CIDCFGR register fields */
#define RCC_R98CIDCFGR_CFEN BIT(0)
#define RCC_R98CIDCFGR_SEM_EN BIT(1)
#define RCC_R98CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R98CIDCFGR_SCID_SHIFT 4
#define RCC_R98CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R98CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R98SEMCR register fields */
#define RCC_R98SEMCR_SEM_MUTEX BIT(0)
#define RCC_R98SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R98SEMCR_SEMCID_SHIFT 4
/* RCC_R99CIDCFGR register fields */
#define RCC_R99CIDCFGR_CFEN BIT(0)
#define RCC_R99CIDCFGR_SEM_EN BIT(1)
#define RCC_R99CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R99CIDCFGR_SCID_SHIFT 4
#define RCC_R99CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R99CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R99SEMCR register fields */
#define RCC_R99SEMCR_SEM_MUTEX BIT(0)
#define RCC_R99SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R99SEMCR_SEMCID_SHIFT 4
/* RCC_R100CIDCFGR register fields */
#define RCC_R100CIDCFGR_CFEN BIT(0)
#define RCC_R100CIDCFGR_SEM_EN BIT(1)
#define RCC_R100CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R100CIDCFGR_SCID_SHIFT 4
#define RCC_R100CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R100CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R100SEMCR register fields */
#define RCC_R100SEMCR_SEM_MUTEX BIT(0)
#define RCC_R100SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R100SEMCR_SEMCID_SHIFT 4
/* RCC_R101CIDCFGR register fields */
#define RCC_R101CIDCFGR_CFEN BIT(0)
#define RCC_R101CIDCFGR_SEM_EN BIT(1)
#define RCC_R101CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R101CIDCFGR_SCID_SHIFT 4
#define RCC_R101CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R101CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R101SEMCR register fields */
#define RCC_R101SEMCR_SEM_MUTEX BIT(0)
#define RCC_R101SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R101SEMCR_SEMCID_SHIFT 4
/* RCC_R102CIDCFGR register fields */
#define RCC_R102CIDCFGR_CFEN BIT(0)
#define RCC_R102CIDCFGR_SEM_EN BIT(1)
#define RCC_R102CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R102CIDCFGR_SCID_SHIFT 4
#define RCC_R102CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R102CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R102SEMCR register fields */
#define RCC_R102SEMCR_SEM_MUTEX BIT(0)
#define RCC_R102SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R102SEMCR_SEMCID_SHIFT 4
/* RCC_R103CIDCFGR register fields */
#define RCC_R103CIDCFGR_CFEN BIT(0)
#define RCC_R103CIDCFGR_SEM_EN BIT(1)
#define RCC_R103CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R103CIDCFGR_SCID_SHIFT 4
#define RCC_R103CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R103CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R103SEMCR register fields */
#define RCC_R103SEMCR_SEM_MUTEX BIT(0)
#define RCC_R103SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R103SEMCR_SEMCID_SHIFT 4
/* RCC_R104CIDCFGR register fields */
#define RCC_R104CIDCFGR_CFEN BIT(0)
#define RCC_R104CIDCFGR_SEM_EN BIT(1)
#define RCC_R104CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R104CIDCFGR_SCID_SHIFT 4
#define RCC_R104CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R104CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R104SEMCR register fields */
#define RCC_R104SEMCR_SEM_MUTEX BIT(0)
#define RCC_R104SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R104SEMCR_SEMCID_SHIFT 4
/* RCC_R105CIDCFGR register fields */
#define RCC_R105CIDCFGR_CFEN BIT(0)
#define RCC_R105CIDCFGR_SEM_EN BIT(1)
#define RCC_R105CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R105CIDCFGR_SCID_SHIFT 4
#define RCC_R105CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R105CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R105SEMCR register fields */
#define RCC_R105SEMCR_SEM_MUTEX BIT(0)
#define RCC_R105SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R105SEMCR_SEMCID_SHIFT 4
/* RCC_R106CIDCFGR register fields */
#define RCC_R106CIDCFGR_CFEN BIT(0)
#define RCC_R106CIDCFGR_SEM_EN BIT(1)
#define RCC_R106CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R106CIDCFGR_SCID_SHIFT 4
#define RCC_R106CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R106CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R106SEMCR register fields */
#define RCC_R106SEMCR_SEM_MUTEX BIT(0)
#define RCC_R106SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R106SEMCR_SEMCID_SHIFT 4
/* RCC_R107CIDCFGR register fields */
#define RCC_R107CIDCFGR_CFEN BIT(0)
#define RCC_R107CIDCFGR_SEM_EN BIT(1)
#define RCC_R107CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R107CIDCFGR_SCID_SHIFT 4
#define RCC_R107CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R107CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R107SEMCR register fields */
#define RCC_R107SEMCR_SEM_MUTEX BIT(0)
#define RCC_R107SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R107SEMCR_SEMCID_SHIFT 4
/* RCC_R108CIDCFGR register fields */
#define RCC_R108CIDCFGR_CFEN BIT(0)
#define RCC_R108CIDCFGR_SEM_EN BIT(1)
#define RCC_R108CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R108CIDCFGR_SCID_SHIFT 4
#define RCC_R108CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R108CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R108SEMCR register fields */
#define RCC_R108SEMCR_SEM_MUTEX BIT(0)
#define RCC_R108SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R108SEMCR_SEMCID_SHIFT 4
/* RCC_R109CIDCFGR register fields */
#define RCC_R109CIDCFGR_CFEN BIT(0)
#define RCC_R109CIDCFGR_SEM_EN BIT(1)
#define RCC_R109CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R109CIDCFGR_SCID_SHIFT 4
#define RCC_R109CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R109CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R109SEMCR register fields */
#define RCC_R109SEMCR_SEM_MUTEX BIT(0)
#define RCC_R109SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R109SEMCR_SEMCID_SHIFT 4
/* RCC_R110CIDCFGR register fields */
#define RCC_R110CIDCFGR_CFEN BIT(0)
#define RCC_R110CIDCFGR_SEM_EN BIT(1)
#define RCC_R110CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R110CIDCFGR_SCID_SHIFT 4
#define RCC_R110CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R110CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R110SEMCR register fields */
#define RCC_R110SEMCR_SEM_MUTEX BIT(0)
#define RCC_R110SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R110SEMCR_SEMCID_SHIFT 4
/* RCC_R111CIDCFGR register fields */
#define RCC_R111CIDCFGR_CFEN BIT(0)
#define RCC_R111CIDCFGR_SEM_EN BIT(1)
#define RCC_R111CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R111CIDCFGR_SCID_SHIFT 4
#define RCC_R111CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R111CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R111SEMCR register fields */
#define RCC_R111SEMCR_SEM_MUTEX BIT(0)
#define RCC_R111SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R111SEMCR_SEMCID_SHIFT 4
/* RCC_R112CIDCFGR register fields */
#define RCC_R112CIDCFGR_CFEN BIT(0)
#define RCC_R112CIDCFGR_SEM_EN BIT(1)
#define RCC_R112CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R112CIDCFGR_SCID_SHIFT 4
#define RCC_R112CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R112CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R112SEMCR register fields */
#define RCC_R112SEMCR_SEM_MUTEX BIT(0)
#define RCC_R112SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R112SEMCR_SEMCID_SHIFT 4
/* RCC_R113CIDCFGR register fields */
#define RCC_R113CIDCFGR_CFEN BIT(0)
#define RCC_R113CIDCFGR_SEM_EN BIT(1)
#define RCC_R113CIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_R113CIDCFGR_SCID_SHIFT 4
#define RCC_R113CIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_R113CIDCFGR_SEMWLC_SHIFT 16
/* RCC_R113SEMCR register fields */
#define RCC_R113SEMCR_SEM_MUTEX BIT(0)
#define RCC_R113SEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_R113SEMCR_SEMCID_SHIFT 4
/* RCC_RxCIDCFGR register fields */
#define RCC_RxCIDCFGR_CFEN BIT(0)
#define RCC_RxCIDCFGR_SEM_EN BIT(1)
#define RCC_RxCIDCFGR_SCID_MASK GENMASK_32(6, 4)
#define RCC_RxCIDCFGR_SCID_SHIFT 4
#define RCC_RxCIDCFGR_SEMWLC_MASK GENMASK_32(23, 16)
#define RCC_RxCIDCFGR_SEMWLC_SHIFT 16
/* RCC_RxSEMCR register fields */
#define RCC_RxSEMCR_SEM_MUTEX BIT(0)
#define RCC_RxSEMCR_SEMCID_MASK GENMASK_32(6, 4)
#define RCC_RxSEMCR_SEMCID_SHIFT 4
/* RCC_GRSTCSETR register fields */
#define RCC_GRSTCSETR_SYSRST BIT(0)
/* RCC_C1RSTCSETR register fields */
#define RCC_C1RSTCSETR_C1RST BIT(0)
/* RCC_C1P1RSTCSETR register fields */
#define RCC_C1P1RSTCSETR_C1P1PORRST BIT(0)
#define RCC_C1P1RSTCSETR_C1P1RST BIT(1)
/* RCC_C2RSTCSETR register fields */
#define RCC_C2RSTCSETR_C2RST BIT(0)
/* RCC_CxRSTCSETR register fields */
#define RCC_CxRSTCSETR_CxRST BIT(0)
/* RCC_HWRSTSCLRR register fields */
#define RCC_HWRSTSCLRR_PORRSTF BIT(0)
#define RCC_HWRSTSCLRR_BORRSTF BIT(1)
#define RCC_HWRSTSCLRR_PADRSTF BIT(2)
#define RCC_HWRSTSCLRR_HCSSRSTF BIT(3)
#define RCC_HWRSTSCLRR_VCORERSTF BIT(4)
#define RCC_HWRSTSCLRR_SYSC1RSTF BIT(5)
#define RCC_HWRSTSCLRR_SYSC2RSTF BIT(6)
#define RCC_HWRSTSCLRR_IWDG1SYSRSTF BIT(7)
#define RCC_HWRSTSCLRR_IWDG2SYSRSTF BIT(8)
#define RCC_HWRSTSCLRR_IWDG3SYSRSTF BIT(9)
#define RCC_HWRSTSCLRR_IWDG4SYSRSTF BIT(10)
#define RCC_HWRSTSCLRR_IWDG5SYSRSTF BIT(11)
#define RCC_HWRSTSCLRR_RETCRCERRRSTF BIT(12)
#define RCC_HWRSTSCLRR_RETECCFAILCRCRSTF BIT(13)
#define RCC_HWRSTSCLRR_RETECCFAILRESTRSTF BIT(14)
/* RCC_C1HWRSTSCLRR register fields */
#define RCC_C1HWRSTSCLRR_VCPURSTF BIT(0)
#define RCC_C1HWRSTSCLRR_C1RSTF BIT(1)
#define RCC_C1HWRSTSCLRR_C1P1RSTF BIT(2)
/* RCC_C2HWRSTSCLRR register fields */
#define RCC_C2HWRSTSCLRR_C2RSTF BIT(0)
/* RCC_C1BOOTRSTSSETR register fields */
#define RCC_C1BOOTRSTSSETR_PORRSTF BIT(0)
#define RCC_C1BOOTRSTSSETR_BORRSTF BIT(1)
#define RCC_C1BOOTRSTSSETR_PADRSTF BIT(2)
#define RCC_C1BOOTRSTSSETR_HCSSRSTF BIT(3)
#define RCC_C1BOOTRSTSSETR_VCORERSTF BIT(4)
#define RCC_C1BOOTRSTSSETR_VCPURSTF BIT(5)
#define RCC_C1BOOTRSTSSETR_SYSC1RSTF BIT(6)
#define RCC_C1BOOTRSTSSETR_SYSC2RSTF BIT(7)
#define RCC_C1BOOTRSTSSETR_IWDG1SYSRSTF BIT(8)
#define RCC_C1BOOTRSTSSETR_IWDG2SYSRSTF BIT(9)
#define RCC_C1BOOTRSTSSETR_IWDG3SYSRSTF BIT(10)
#define RCC_C1BOOTRSTSSETR_IWDG4SYSRSTF BIT(11)
#define RCC_C1BOOTRSTSSETR_IWDG5SYSRSTF BIT(12)
#define RCC_C1BOOTRSTSSETR_C1RSTF BIT(13)
#define RCC_C1BOOTRSTSSETR_C1P1RSTF BIT(16)
#define RCC_C1BOOTRSTSSETR_RETCRCERRRSTF BIT(17)
#define RCC_C1BOOTRSTSSETR_RETECCFAILCRCRSTF BIT(18)
#define RCC_C1BOOTRSTSSETR_RETECCFAILRESTRSTF BIT(19)
#define RCC_C1BOOTRSTSSETR_STBYC1RSTF BIT(20)
#define RCC_C1BOOTRSTSSETR_D1STBYRSTF BIT(22)
#define RCC_C1BOOTRSTSSETR_D2STBYRSTF BIT(23)
/* RCC_C1BOOTRSTSCLRR register fields */
#define RCC_C1BOOTRSTSCLRR_PORRSTF BIT(0)
#define RCC_C1BOOTRSTSCLRR_BORRSTF BIT(1)
#define RCC_C1BOOTRSTSCLRR_PADRSTF BIT(2)
#define RCC_C1BOOTRSTSCLRR_HCSSRSTF BIT(3)
#define RCC_C1BOOTRSTSCLRR_VCORERSTF BIT(4)
#define RCC_C1BOOTRSTSCLRR_VCPURSTF BIT(5)
#define RCC_C1BOOTRSTSCLRR_SYSC1RSTF BIT(6)
#define RCC_C1BOOTRSTSCLRR_SYSC2RSTF BIT(7)
#define RCC_C1BOOTRSTSCLRR_IWDG1SYSRSTF BIT(8)
#define RCC_C1BOOTRSTSCLRR_IWDG2SYSRSTF BIT(9)
#define RCC_C1BOOTRSTSCLRR_IWDG3SYSRSTF BIT(10)
#define RCC_C1BOOTRSTSCLRR_IWDG4SYSRSTF BIT(11)
#define RCC_C1BOOTRSTSCLRR_IWDG5SYSRSTF BIT(12)
#define RCC_C1BOOTRSTSCLRR_C1RSTF BIT(13)
#define RCC_C1BOOTRSTSCLRR_C1P1RSTF BIT(16)
#define RCC_C1BOOTRSTSCLRR_RETCRCERRRSTF BIT(17)
#define RCC_C1BOOTRSTSCLRR_RETECCFAILCRCRSTF BIT(18)
#define RCC_C1BOOTRSTSCLRR_RETECCFAILRESTRSTF BIT(19)
#define RCC_C1BOOTRSTSCLRR_STBYC1RSTF BIT(20)
#define RCC_C1BOOTRSTSCLRR_D1STBYRSTF BIT(22)
#define RCC_C1BOOTRSTSCLRR_D2STBYRSTF BIT(23)
/* RCC_C2BOOTRSTSSETR register fields */
#define RCC_C2BOOTRSTSSETR_PORRSTF BIT(0)
#define RCC_C2BOOTRSTSSETR_BORRSTF BIT(1)
#define RCC_C2BOOTRSTSSETR_PADRSTF BIT(2)
#define RCC_C2BOOTRSTSSETR_HCSSRSTF BIT(3)
#define RCC_C2BOOTRSTSSETR_VCORERSTF BIT(4)
#define RCC_C2BOOTRSTSSETR_SYSC1RSTF BIT(6)
#define RCC_C2BOOTRSTSSETR_SYSC2RSTF BIT(7)
#define RCC_C2BOOTRSTSSETR_IWDG1SYSRSTF BIT(8)
#define RCC_C2BOOTRSTSSETR_IWDG2SYSRSTF BIT(9)
#define RCC_C2BOOTRSTSSETR_IWDG3SYSRSTF BIT(10)
#define RCC_C2BOOTRSTSSETR_IWDG4SYSRSTF BIT(11)
#define RCC_C2BOOTRSTSSETR_IWDG5SYSRSTF BIT(12)
#define RCC_C2BOOTRSTSSETR_C2RSTF BIT(14)
#define RCC_C2BOOTRSTSSETR_RETCRCERRRSTF BIT(17)
#define RCC_C2BOOTRSTSSETR_RETECCFAILCRCRSTF BIT(18)
#define RCC_C2BOOTRSTSSETR_RETECCFAILRESTRSTF BIT(19)
#define RCC_C2BOOTRSTSSETR_STBYC2RSTF BIT(21)
#define RCC_C2BOOTRSTSSETR_D2STBYRSTF BIT(23)
/* RCC_C2BOOTRSTSCLRR register fields */
#define RCC_C2BOOTRSTSCLRR_PORRSTF BIT(0)
#define RCC_C2BOOTRSTSCLRR_BORRSTF BIT(1)
#define RCC_C2BOOTRSTSCLRR_PADRSTF BIT(2)
#define RCC_C2BOOTRSTSCLRR_HCSSRSTF BIT(3)
#define RCC_C2BOOTRSTSCLRR_VCORERSTF BIT(4)
#define RCC_C2BOOTRSTSCLRR_SYSC1RSTF BIT(6)
#define RCC_C2BOOTRSTSCLRR_SYSC2RSTF BIT(7)
#define RCC_C2BOOTRSTSCLRR_IWDG1SYSRSTF BIT(8)
#define RCC_C2BOOTRSTSCLRR_IWDG2SYSRSTF BIT(9)
#define RCC_C2BOOTRSTSCLRR_IWDG3SYSRSTF BIT(10)
#define RCC_C2BOOTRSTSCLRR_IWDG4SYSRSTF BIT(11)
#define RCC_C2BOOTRSTSCLRR_IWDG5SYSRSTF BIT(12)
#define RCC_C2BOOTRSTSCLRR_C2RSTF BIT(14)
#define RCC_C2BOOTRSTSCLRR_RETCRCERRRSTF BIT(17)
#define RCC_C2BOOTRSTSCLRR_RETECCFAILCRCRSTF BIT(18)
#define RCC_C2BOOTRSTSCLRR_RETECCFAILRESTRSTF BIT(19)
#define RCC_C2BOOTRSTSCLRR_STBYC2RSTF BIT(21)
#define RCC_C2BOOTRSTSCLRR_D2STBYRSTF BIT(23)
/* RCC_C1SREQSETR register fields */
#define RCC_C1SREQSETR_STPREQ_P0 BIT(0)
#define RCC_C1SREQSETR_STPREQ_P1 BIT(1)
#define RCC_C1SREQSETR_ESLPREQ BIT(16)
/* RCC_C1SREQCLRR register fields */
#define RCC_C1SREQCLRR_STPREQ_P0 BIT(0)
#define RCC_C1SREQCLRR_STPREQ_P1 BIT(1)
#define RCC_C1SREQCLRR_ESLPREQ BIT(16)
/* RCC_CPUBOOTCR register fields */
#define RCC_CPUBOOTCR_BOOT_CPU2 BIT(0)
#define RCC_CPUBOOTCR_BOOT_CPU1 BIT(1)
/* RCC_STBYBOOTCR register fields */
#define RCC_STBYBOOTCR_CPU_BEN_SEL BIT(1)
#define RCC_STBYBOOTCR_COLD_CPU2 BIT(2)
#define RCC_STBYBOOTCR_CPU2_HW_BEN BIT(4)
#define RCC_STBYBOOTCR_CPU1_HW_BEN BIT(5)
#define RCC_STBYBOOTCR_RET_CRCERR_RSTEN BIT(8)
/* RCC_LEGBOOTCR register fields */
#define RCC_LEGBOOTCR_LEGACY_BEN BIT(0)
/* RCC_BDCR register fields */
#define RCC_BDCR_LSEON BIT(0)
#define RCC_BDCR_LSEBYP BIT(1)
#define RCC_BDCR_LSERDY BIT(2)
#define RCC_BDCR_LSEDIGBYP BIT(3)
#define RCC_BDCR_LSEDRV_MASK GENMASK_32(5, 4)
#define RCC_BDCR_LSEDRV_SHIFT 4
#define RCC_BDCR_LSECSSON BIT(6)
#define RCC_BDCR_LSEGFON BIT(7)
#define RCC_BDCR_LSECSSD BIT(8)
#define RCC_BDCR_LSION BIT(9)
#define RCC_BDCR_LSIRDY BIT(10)
#define RCC_BDCR_RTCSRC_MASK GENMASK_32(17, 16)
#define RCC_BDCR_RTCSRC_SHIFT 16
#define RCC_BDCR_RTCCKEN BIT(20)
#define RCC_BDCR_MSIFREQSEL BIT(24)
#define RCC_BDCR_C3SYSTICKSEL BIT(25)
#define RCC_BDCR_VSWRST BIT(31)
#define RCC_BDCR_LSEBYP_BIT 1
#define RCC_BDCR_LSEDIGBYP_BIT 3
#define RCC_BDCR_LSECSSON_BIT 6
#define RCC_BDCR_LSERDY_BIT 2
#define RCC_BDCR_LSIRDY_BIT 10
#define RCC_BDCR_LSEDRV_SHIFT 4
#define RCC_BDCR_LSEDRV_WIDTH 2
/* RCC_D3DCR register fields */
#define RCC_D3DCR_CSION BIT(0)
#define RCC_D3DCR_CSIKERON BIT(1)
#define RCC_D3DCR_CSIRDY BIT(2)
#define RCC_D3DCR_D3PERCKSEL_MASK GENMASK_32(17, 16)
#define RCC_D3DCR_D3PERCKSEL_SHIFT 16
#define RCC_D3DCR_CSIRDY_BIT 2
/* RCC_D3DSR register fields */
#define RCC_D3DSR_D3STATE_MASK GENMASK_32(1, 0)
#define RCC_D3DSR_D3STATE_SHIFT 0
/* RCC_RDCR register fields */
#define RCC_RDCR_MRD_MASK GENMASK_32(20, 16)
#define RCC_RDCR_MRD_SHIFT 16
#define RCC_RDCR_EADLY_MASK GENMASK_32(27, 24)
#define RCC_RDCR_EADLY_SHIFT 24
/* RCC_C1MSRDCR register fields */
#define RCC_C1MSRDCR_C1MSRD_MASK GENMASK_32(4, 0)
#define RCC_C1MSRDCR_C1MSRD_SHIFT 0
#define RCC_C1MSRDCR_C1MSRST BIT(8)
/* RCC_PWRLPDLYCR register fields */
#define RCC_PWRLPDLYCR_PWRLP_DLY_MASK GENMASK_32(21, 0)
#define RCC_PWRLPDLYCR_PWRLP_DLY_SHIFT 0
#define RCC_PWRLPDLYCR_CPU2TMPSKP BIT(24)
/* RCC_C1CIESETR register fields */
#define RCC_C1CIESETR_LSIRDYIE BIT(0)
#define RCC_C1CIESETR_LSERDYIE BIT(1)
#define RCC_C1CIESETR_HSIRDYIE BIT(2)
#define RCC_C1CIESETR_HSERDYIE BIT(3)
#define RCC_C1CIESETR_CSIRDYIE BIT(4)
#define RCC_C1CIESETR_PLL1RDYIE BIT(5)
#define RCC_C1CIESETR_PLL2RDYIE BIT(6)
#define RCC_C1CIESETR_PLL3RDYIE BIT(7)
#define RCC_C1CIESETR_PLL4RDYIE BIT(8)
#define RCC_C1CIESETR_PLL5RDYIE BIT(9)
#define RCC_C1CIESETR_PLL6RDYIE BIT(10)
#define RCC_C1CIESETR_PLL7RDYIE BIT(11)
#define RCC_C1CIESETR_PLL8RDYIE BIT(12)
#define RCC_C1CIESETR_LSECSSIE BIT(16)
#define RCC_C1CIESETR_WKUPIE BIT(20)
/* RCC_C1CIFCLRR register fields */
#define RCC_C1CIFCLRR_LSIRDYF BIT(0)
#define RCC_C1CIFCLRR_LSERDYF BIT(1)
#define RCC_C1CIFCLRR_HSIRDYF BIT(2)
#define RCC_C1CIFCLRR_HSERDYF BIT(3)
#define RCC_C1CIFCLRR_CSIRDYF BIT(4)
#define RCC_C1CIFCLRR_PLL1RDYF BIT(5)
#define RCC_C1CIFCLRR_PLL2RDYF BIT(6)
#define RCC_C1CIFCLRR_PLL3RDYF BIT(7)
#define RCC_C1CIFCLRR_PLL4RDYF BIT(8)
#define RCC_C1CIFCLRR_PLL5RDYF BIT(9)
#define RCC_C1CIFCLRR_PLL6RDYF BIT(10)
#define RCC_C1CIFCLRR_PLL7RDYF BIT(11)
#define RCC_C1CIFCLRR_PLL8RDYF BIT(12)
#define RCC_C1CIFCLRR_LSECSSF BIT(16)
#define RCC_C1CIFCLRR_WKUPF BIT(20)
/* RCC_C2CIESETR register fields */
#define RCC_C2CIESETR_LSIRDYIE BIT(0)
#define RCC_C2CIESETR_LSERDYIE BIT(1)
#define RCC_C2CIESETR_HSIRDYIE BIT(2)
#define RCC_C2CIESETR_HSERDYIE BIT(3)
#define RCC_C2CIESETR_CSIRDYIE BIT(4)
#define RCC_C2CIESETR_PLL1RDYIE BIT(5)
#define RCC_C2CIESETR_PLL2RDYIE BIT(6)
#define RCC_C2CIESETR_PLL3RDYIE BIT(7)
#define RCC_C2CIESETR_PLL4RDYIE BIT(8)
#define RCC_C2CIESETR_PLL5RDYIE BIT(9)
#define RCC_C2CIESETR_PLL6RDYIE BIT(10)
#define RCC_C2CIESETR_PLL7RDYIE BIT(11)
#define RCC_C2CIESETR_PLL8RDYIE BIT(12)
#define RCC_C2CIESETR_LSECSSIE BIT(16)
#define RCC_C2CIESETR_WKUPIE BIT(20)
/* RCC_C2CIFCLRR register fields */
#define RCC_C2CIFCLRR_LSIRDYF BIT(0)
#define RCC_C2CIFCLRR_LSERDYF BIT(1)
#define RCC_C2CIFCLRR_HSIRDYF BIT(2)
#define RCC_C2CIFCLRR_HSERDYF BIT(3)
#define RCC_C2CIFCLRR_CSIRDYF BIT(4)
#define RCC_C2CIFCLRR_PLL1RDYF BIT(5)
#define RCC_C2CIFCLRR_PLL2RDYF BIT(6)
#define RCC_C2CIFCLRR_PLL3RDYF BIT(7)
#define RCC_C2CIFCLRR_PLL4RDYF BIT(8)
#define RCC_C2CIFCLRR_PLL5RDYF BIT(9)
#define RCC_C2CIFCLRR_PLL6RDYF BIT(10)
#define RCC_C2CIFCLRR_PLL7RDYF BIT(11)
#define RCC_C2CIFCLRR_PLL8RDYF BIT(12)
#define RCC_C2CIFCLRR_LSECSSF BIT(16)
#define RCC_C2CIFCLRR_WKUPF BIT(20)
/* RCC_CxCIESETR register fields */
#define RCC_CxCIESETR_LSIRDYIE BIT(0)
#define RCC_CxCIESETR_LSERDYIE BIT(1)
#define RCC_CxCIESETR_HSIRDYIE BIT(2)
#define RCC_CxCIESETR_HSERDYIE BIT(3)
#define RCC_CxCIESETR_CSIRDYIE BIT(4)
#define RCC_CxCIESETR_SHSIRDYIE BIT(5)
#define RCC_CxCIESETR_PLL1RDYIE BIT(6)
#define RCC_CxCIESETR_PLL2RDYIE BIT(7)
#define RCC_CxCIESETR_PLL3RDYIE BIT(8)
#define RCC_CxCIESETR_PLL4RDYIE BIT(9)
#define RCC_CxCIESETR_PLL5RDYIE BIT(10)
#define RCC_CxCIESETR_PLL6RDYIE BIT(11)
#define RCC_CxCIESETR_PLL7RDYIE BIT(12)
#define RCC_CxCIESETR_PLL8RDYIE BIT(13)
#define RCC_CxCIESETR_LSECSSIE BIT(16)
#define RCC_CxCIESETR_WKUPIE BIT(20)
/* RCC_CxCIFCLRR register fields */
#define RCC_CxCIFCLRR_LSIRDYF BIT(0)
#define RCC_CxCIFCLRR_LSERDYF BIT(1)
#define RCC_CxCIFCLRR_HSIRDYF BIT(2)
#define RCC_CxCIFCLRR_HSERDYF BIT(3)
#define RCC_CxCIFCLRR_CSIRDYF BIT(4)
#define RCC_CxCIFCLRR_SHSIRDYF BIT(5)
#define RCC_CxCIFCLRR_PLL1RDYF BIT(6)
#define RCC_CxCIFCLRR_PLL2RDYF BIT(7)
#define RCC_CxCIFCLRR_PLL3RDYF BIT(8)
#define RCC_CxCIFCLRR_PLL4RDYF BIT(9)
#define RCC_CxCIFCLRR_PLL5RDYF BIT(10)
#define RCC_CxCIFCLRR_PLL6RDYF BIT(11)
#define RCC_CxCIFCLRR_PLL7RDYF BIT(12)
#define RCC_CxCIFCLRR_PLL8RDYF BIT(13)
#define RCC_CxCIFCLRR_LSECSSF BIT(16)
#define RCC_CxCIFCLRR_WKUPF BIT(20)
/* RCC_IWDGC1FZSETR register fields */
#define RCC_IWDGC1FZSETR_FZ_IWDG1 BIT(0)
#define RCC_IWDGC1FZSETR_FZ_IWDG2 BIT(1)
/* RCC_IWDGC1FZCLRR register fields */
#define RCC_IWDGC1FZCLRR_FZ_IWDG1 BIT(0)
#define RCC_IWDGC1FZCLRR_FZ_IWDG2 BIT(1)
/* RCC_IWDGC1CFGSETR register fields */
#define RCC_IWDGC1CFGSETR_IWDG1_SYSRSTEN BIT(0)
#define RCC_IWDGC1CFGSETR_IWDG2_SYSRSTEN BIT(2)
#define RCC_IWDGC1CFGSETR_IWDG2_KERRST BIT(18)
/* RCC_IWDGC1CFGCLRR register fields */
#define RCC_IWDGC1CFGCLRR_IWDG1_SYSRSTEN BIT(0)
#define RCC_IWDGC1CFGCLRR_IWDG2_SYSRSTEN BIT(2)
#define RCC_IWDGC1CFGCLRR_IWDG2_KERRST BIT(18)
/* RCC_IWDGC2FZSETR register fields */
#define RCC_IWDGC2FZSETR_FZ_IWDG3 BIT(0)
#define RCC_IWDGC2FZSETR_FZ_IWDG4 BIT(1)
/* RCC_IWDGC2FZCLRR register fields */
#define RCC_IWDGC2FZCLRR_FZ_IWDG3 BIT(0)
#define RCC_IWDGC2FZCLRR_FZ_IWDG4 BIT(1)
/* RCC_IWDGC2CFGSETR register fields */
#define RCC_IWDGC2CFGSETR_IWDG3_SYSRSTEN BIT(0)
#define RCC_IWDGC2CFGSETR_IWDG4_SYSRSTEN BIT(2)
#define RCC_IWDGC2CFGSETR_IWDG4_KERRST BIT(18)
/* RCC_IWDGC2CFGCLRR register fields */
#define RCC_IWDGC2CFGCLRR_IWDG3_SYSRSTEN BIT(0)
#define RCC_IWDGC2CFGCLRR_IWDG4_SYSRSTEN BIT(2)
#define RCC_IWDGC2CFGCLRR_IWDG4_KERRST BIT(18)
/* RCC_IWDGC3CFGSETR register fields */
#define RCC_IWDGC3CFGSETR_IWDG5_SYSRSTEN BIT(0)
/* RCC_IWDGC3CFGCLRR register fields */
#define RCC_IWDGC3CFGCLRR_IWDG5_SYSRSTEN BIT(0)
/* RCC_C3CFGR register fields */
#define RCC_C3CFGR_C3RST BIT(0)
#define RCC_C3CFGR_C3EN BIT(1)
#define RCC_C3CFGR_C3LPEN BIT(2)
#define RCC_C3CFGR_C3AMEN BIT(3)
#define RCC_C3CFGR_LPTIM3C3EN BIT(16)
#define RCC_C3CFGR_LPTIM4C3EN BIT(17)
#define RCC_C3CFGR_LPTIM5C3EN BIT(18)
#define RCC_C3CFGR_SPI8C3EN BIT(19)
#define RCC_C3CFGR_LPUART1C3EN BIT(20)
#define RCC_C3CFGR_I2C8C3EN BIT(21)
#define RCC_C3CFGR_ADF1C3EN BIT(23)
#define RCC_C3CFGR_GPIOZC3EN BIT(24)
#define RCC_C3CFGR_LPDMAC3EN BIT(25)
#define RCC_C3CFGR_RTCC3EN BIT(26)
#define RCC_C3CFGR_I3C4C3EN BIT(27)
/* RCC_MCO1CFGR register fields */
#define RCC_MCO1CFGR_MCO1SEL BIT(0)
#define RCC_MCO1CFGR_MCO1ON BIT(8)
/* RCC_MCO2CFGR register fields */
#define RCC_MCO2CFGR_MCO2SEL BIT(0)
#define RCC_MCO2CFGR_MCO2ON BIT(8)
/* RCC_MCOxCFGR register fields */
#define RCC_MCOxCFGR_MCOxSEL BIT(0)
#define RCC_MCOxCFGR_MCOxON BIT(8)
/* RCC_OCENSETR register fields */
#define RCC_OCENSETR_HSION BIT(0)
#define RCC_OCENSETR_HSIKERON BIT(1)
#define RCC_OCENSETR_HSEDIV2ON BIT(5)
#define RCC_OCENSETR_HSEDIV2BYP BIT(6)
#define RCC_OCENSETR_HSEDIGBYP BIT(7)
#define RCC_OCENSETR_HSEON BIT(8)
#define RCC_OCENSETR_HSEKERON BIT(9)
#define RCC_OCENSETR_HSEBYP BIT(10)
#define RCC_OCENSETR_HSECSSON BIT(11)
/* RCC_OCENCLRR register fields */
#define RCC_OCENCLRR_HSION BIT(0)
#define RCC_OCENCLRR_HSIKERON BIT(1)
#define RCC_OCENCLRR_HSEDIV2ON BIT(5)
#define RCC_OCENCLRR_HSEDIV2BYP BIT(6)
#define RCC_OCENCLRR_HSEDIGBYP BIT(7)
#define RCC_OCENCLRR_HSEON BIT(8)
#define RCC_OCENCLRR_HSEKERON BIT(9)
#define RCC_OCENCLRR_HSEBYP BIT(10)
/* RCC_OCRDYR register fields */
#define RCC_OCRDYR_HSIRDY BIT(0)
#define RCC_OCRDYR_HSERDY BIT(8)
#define RCC_OCRDYR_CKREST BIT(25)
#define RCC_OCRDYR_HSIRDY_BIT 0
#define RCC_OCRDYR_HSERDY_BIT 8
/* RCC_HSICFGR register fields */
#define RCC_HSICFGR_HSITRIM_MASK GENMASK_32(14, 8)
#define RCC_HSICFGR_HSITRIM_SHIFT 8
#define RCC_HSICFGR_HSICAL_MASK GENMASK_32(24, 16)
#define RCC_HSICFGR_HSICAL_SHIFT 16
/* RCC_CSICFGR register fields */
#define RCC_CSICFGR_CSITRIM_MASK GENMASK_32(12, 8)
#define RCC_CSICFGR_CSITRIM_SHIFT 8
#define RCC_CSICFGR_CSICAL_MASK GENMASK_32(23, 16)
#define RCC_CSICFGR_CSICAL_SHIFT 16
/* RCC_RTCDIVR register fields */
#define RCC_RTCDIVR_RTCDIV_MASK GENMASK_32(5, 0)
#define RCC_RTCDIVR_RTCDIV_SHIFT 0
/* RCC_APB1DIVR register fields */
#define RCC_APB1DIVR_APB1DIV_MASK GENMASK_32(2, 0)
#define RCC_APB1DIVR_APB1DIV_SHIFT 0
#define RCC_APB1DIVR_APB1DIVRDY BIT(31)
/* RCC_APB2DIVR register fields */
#define RCC_APB2DIVR_APB2DIV_MASK GENMASK_32(2, 0)
#define RCC_APB2DIVR_APB2DIV_SHIFT 0
#define RCC_APB2DIVR_APB2DIVRDY BIT(31)
/* RCC_APB3DIVR register fields */
#define RCC_APB3DIVR_APB3DIV_MASK GENMASK_32(2, 0)
#define RCC_APB3DIVR_APB3DIV_SHIFT 0
#define RCC_APB3DIVR_APB3DIVRDY BIT(31)
/* RCC_APB4DIVR register fields */
#define RCC_APB4DIVR_APB4DIV_MASK GENMASK_32(2, 0)
#define RCC_APB4DIVR_APB4DIV_SHIFT 0
#define RCC_APB4DIVR_APB4DIVRDY BIT(31)
/* RCC_APBDBGDIVR register fields */
#define RCC_APBDBGDIVR_APBDBGDIV_MASK GENMASK_32(2, 0)
#define RCC_APBDBGDIVR_APBDBGDIV_SHIFT 0
#define RCC_APBDBGDIVR_APBDBGDIVRDY BIT(31)
/* RCC_APBxDIVR register fields */
#define RCC_APBxDIVR_APBxDIV_MASK GENMASK_32(2, 0)
#define RCC_APBxDIVR_APBxDIV_SHIFT 0
#define RCC_APBxDIVR_APBxDIVRDY BIT(31)
/* RCC_TIMG1PRER register fields */
#define RCC_TIMG1PRER_TIMG1PRE BIT(0)
#define RCC_TIMG1PRER_TIMG1PRERDY BIT(31)
/* RCC_TIMG2PRER register fields */
#define RCC_TIMG2PRER_TIMG2PRE BIT(0)
#define RCC_TIMG2PRER_TIMG2PRERDY BIT(31)
/* RCC_TIMGxPRER register fields */
#define RCC_TIMGxPRER_TIMGxPRE BIT(0)
#define RCC_TIMGxPRER_TIMGxPRERDY BIT(31)
/* RCC_LSMCUDIVR register fields */
#define RCC_LSMCUDIVR_LSMCUDIV BIT(0)
#define RCC_LSMCUDIVR_LSMCUDIVRDY BIT(31)
/* RCC_DDRCPCFGR register fields */
#define RCC_DDRCPCFGR_DDRCPRST BIT(0)
#define RCC_DDRCPCFGR_DDRCPEN BIT(1)
#define RCC_DDRCPCFGR_DDRCPLPEN BIT(2)
/* RCC_DDRCAPBCFGR register fields */
#define RCC_DDRCAPBCFGR_DDRCAPBRST BIT(0)
#define RCC_DDRCAPBCFGR_DDRCAPBEN BIT(1)
#define RCC_DDRCAPBCFGR_DDRCAPBLPEN BIT(2)
/* RCC_DDRPHYCAPBCFGR register fields */
#define RCC_DDRPHYCAPBCFGR_DDRPHYCAPBRST BIT(0)
#define RCC_DDRPHYCAPBCFGR_DDRPHYCAPBEN BIT(1)
#define RCC_DDRPHYCAPBCFGR_DDRPHYCAPBLPEN BIT(2)
/* RCC_DDRPHYCCFGR register fields */
#define RCC_DDRPHYCCFGR_DDRPHYCEN BIT(1)
/* RCC_DDRCFGR register fields */
#define RCC_DDRCFGR_DDRCFGRST BIT(0)
#define RCC_DDRCFGR_DDRCFGEN BIT(1)
#define RCC_DDRCFGR_DDRCFGLPEN BIT(2)
/* RCC_DDRITFCFGR register fields */
#define RCC_DDRITFCFGR_DDRRST BIT(0)
#define RCC_DDRITFCFGR_DDRCKMOD_MASK GENMASK_32(5, 4)
#define RCC_DDRITFCFGR_DDRCKMOD_SHIFT 4
#define RCC_DDRITFCFGR_DDRCKMOD_HSR BIT(5)
#define RCC_DDRITFCFGR_DDRSHR BIT(8)
#define RCC_DDRITFCFGR_DDRPHYDLP BIT(16)
/* RCC_SYSRAMCFGR register fields */
#define RCC_SYSRAMCFGR_SYSRAMEN BIT(1)
#define RCC_SYSRAMCFGR_SYSRAMLPEN BIT(2)
/* RCC_VDERAMCFGR register fields */
#define RCC_VDERAMCFGR_VDERAMEN BIT(1)
#define RCC_VDERAMCFGR_VDERAMLPEN BIT(2)
/* RCC_SRAM1CFGR register fields */
#define RCC_SRAM1CFGR_SRAM1EN BIT(1)
#define RCC_SRAM1CFGR_SRAM1LPEN BIT(2)
/* RCC_SRAM2CFGR register fields */
#define RCC_SRAM2CFGR_SRAM2EN BIT(1)
#define RCC_SRAM2CFGR_SRAM2LPEN BIT(2)
/* RCC_RETRAMCFGR register fields */
#define RCC_RETRAMCFGR_RETRAMEN BIT(1)
#define RCC_RETRAMCFGR_RETRAMLPEN BIT(2)
/* RCC_BKPSRAMCFGR register fields */
#define RCC_BKPSRAMCFGR_BKPSRAMEN BIT(1)
#define RCC_BKPSRAMCFGR_BKPSRAMLPEN BIT(2)
/* RCC_LPSRAM1CFGR register fields */
#define RCC_LPSRAM1CFGR_LPSRAM1EN BIT(1)
#define RCC_LPSRAM1CFGR_LPSRAM1LPEN BIT(2)
#define RCC_LPSRAM1CFGR_LPSRAM1AMEN BIT(3)
/* RCC_LPSRAM2CFGR register fields */
#define RCC_LPSRAM2CFGR_LPSRAM2EN BIT(1)
#define RCC_LPSRAM2CFGR_LPSRAM2LPEN BIT(2)
#define RCC_LPSRAM2CFGR_LPSRAM2AMEN BIT(3)
/* RCC_LPSRAM3CFGR register fields */
#define RCC_LPSRAM3CFGR_LPSRAM3EN BIT(1)
#define RCC_LPSRAM3CFGR_LPSRAM3LPEN BIT(2)
#define RCC_LPSRAM3CFGR_LPSRAM3AMEN BIT(3)
/* RCC_OSPI1CFGR register fields */
#define RCC_OSPI1CFGR_OSPI1RST BIT(0)
#define RCC_OSPI1CFGR_OSPI1EN BIT(1)
#define RCC_OSPI1CFGR_OSPI1LPEN BIT(2)
#define RCC_OSPI1CFGR_OTFDEC1RST BIT(8)
#define RCC_OSPI1CFGR_OSPI1DLLRST BIT(16)
/* RCC_OSPI2CFGR register fields */
#define RCC_OSPI2CFGR_OSPI2RST BIT(0)
#define RCC_OSPI2CFGR_OSPI2EN BIT(1)
#define RCC_OSPI2CFGR_OSPI2LPEN BIT(2)
#define RCC_OSPI2CFGR_OTFDEC2RST BIT(8)
#define RCC_OSPI2CFGR_OSPI2DLLRST BIT(16)
/* RCC_OSPIxCFGR register fields */
#define RCC_OSPIxCFGR_OSPIxRST BIT(0)
#define RCC_OSPIxCFGR_OSPIxEN BIT(1)
#define RCC_OSPIxCFGR_OSPIxLPEN BIT(2)
#define RCC_OSPIxCFGR_OTFDECxRST BIT(8)
#define RCC_OSPIxCFGR_OSPIxDLLRST BIT(16)
/* RCC_FMCCFGR register fields */
#define RCC_FMCCFGR_FMCRST BIT(0)
#define RCC_FMCCFGR_FMCEN BIT(1)
#define RCC_FMCCFGR_FMCLPEN BIT(2)
/* RCC_DBGCFGR register fields */
#define RCC_DBGCFGR_DBGEN BIT(8)
#define RCC_DBGCFGR_TRACEEN BIT(9)
#define RCC_DBGCFGR_DBGRST BIT(12)
/* RCC_STM500CFGR register fields */
#define RCC_STM500CFGR_STM500EN BIT(1)
#define RCC_STM500CFGR_STM500LPEN BIT(2)
/* RCC_ETRCFGR register fields */
#define RCC_ETRCFGR_ETREN BIT(1)
#define RCC_ETRCFGR_ETRLPEN BIT(2)
/* RCC_GPIOACFGR register fields */
#define RCC_GPIOACFGR_GPIOARST BIT(0)
#define RCC_GPIOACFGR_GPIOAEN BIT(1)
#define RCC_GPIOACFGR_GPIOALPEN BIT(2)
/* RCC_GPIOBCFGR register fields */
#define RCC_GPIOBCFGR_GPIOBRST BIT(0)
#define RCC_GPIOBCFGR_GPIOBEN BIT(1)
#define RCC_GPIOBCFGR_GPIOBLPEN BIT(2)
/* RCC_GPIOCCFGR register fields */
#define RCC_GPIOCCFGR_GPIOCRST BIT(0)
#define RCC_GPIOCCFGR_GPIOCEN BIT(1)
#define RCC_GPIOCCFGR_GPIOCLPEN BIT(2)
/* RCC_GPIODCFGR register fields */
#define RCC_GPIODCFGR_GPIODRST BIT(0)
#define RCC_GPIODCFGR_GPIODEN BIT(1)
#define RCC_GPIODCFGR_GPIODLPEN BIT(2)
/* RCC_GPIOECFGR register fields */
#define RCC_GPIOECFGR_GPIOERST BIT(0)
#define RCC_GPIOECFGR_GPIOEEN BIT(1)
#define RCC_GPIOECFGR_GPIOELPEN BIT(2)
/* RCC_GPIOFCFGR register fields */
#define RCC_GPIOFCFGR_GPIOFRST BIT(0)
#define RCC_GPIOFCFGR_GPIOFEN BIT(1)
#define RCC_GPIOFCFGR_GPIOFLPEN BIT(2)
/* RCC_GPIOGCFGR register fields */
#define RCC_GPIOGCFGR_GPIOGRST BIT(0)
#define RCC_GPIOGCFGR_GPIOGEN BIT(1)
#define RCC_GPIOGCFGR_GPIOGLPEN BIT(2)
/* RCC_GPIOHCFGR register fields */
#define RCC_GPIOHCFGR_GPIOHRST BIT(0)
#define RCC_GPIOHCFGR_GPIOHEN BIT(1)
#define RCC_GPIOHCFGR_GPIOHLPEN BIT(2)
/* RCC_GPIOICFGR register fields */
#define RCC_GPIOICFGR_GPIOIRST BIT(0)
#define RCC_GPIOICFGR_GPIOIEN BIT(1)
#define RCC_GPIOICFGR_GPIOILPEN BIT(2)
/* RCC_GPIOJCFGR register fields */
#define RCC_GPIOJCFGR_GPIOJRST BIT(0)
#define RCC_GPIOJCFGR_GPIOJEN BIT(1)
#define RCC_GPIOJCFGR_GPIOJLPEN BIT(2)
/* RCC_GPIOKCFGR register fields */
#define RCC_GPIOKCFGR_GPIOKRST BIT(0)
#define RCC_GPIOKCFGR_GPIOKEN BIT(1)
#define RCC_GPIOKCFGR_GPIOKLPEN BIT(2)
/* RCC_GPIOZCFGR register fields */
#define RCC_GPIOZCFGR_GPIOZRST BIT(0)
#define RCC_GPIOZCFGR_GPIOZEN BIT(1)
#define RCC_GPIOZCFGR_GPIOZLPEN BIT(2)
#define RCC_GPIOZCFGR_GPIOZAMEN BIT(3)
/* RCC_GPIOxCFGR register fields */
#define RCC_GPIOxCFGR_GPIOxRST BIT(0)
#define RCC_GPIOxCFGR_GPIOxEN BIT(1)
#define RCC_GPIOxCFGR_GPIOxLPEN BIT(2)
#define RCC_GPIOxCFGR_GPIOxAMEN BIT(3)
/* RCC_HPDMA1CFGR register fields */
#define RCC_HPDMA1CFGR_HPDMA1RST BIT(0)
#define RCC_HPDMA1CFGR_HPDMA1EN BIT(1)
#define RCC_HPDMA1CFGR_HPDMA1LPEN BIT(2)
/* RCC_HPDMA2CFGR register fields */
#define RCC_HPDMA2CFGR_HPDMA2RST BIT(0)
#define RCC_HPDMA2CFGR_HPDMA2EN BIT(1)
#define RCC_HPDMA2CFGR_HPDMA2LPEN BIT(2)
/* RCC_HPDMA3CFGR register fields */
#define RCC_HPDMA3CFGR_HPDMA3RST BIT(0)
#define RCC_HPDMA3CFGR_HPDMA3EN BIT(1)
#define RCC_HPDMA3CFGR_HPDMA3LPEN BIT(2)
/* RCC_HPDMAxCFGR register fields */
#define RCC_HPDMAxCFGR_HPDMAxRST BIT(0)
#define RCC_HPDMAxCFGR_HPDMAxEN BIT(1)
#define RCC_HPDMAxCFGR_HPDMAxLPEN BIT(2)
/* RCC_LPDMACFGR register fields */
#define RCC_LPDMACFGR_LPDMARST BIT(0)
#define RCC_LPDMACFGR_LPDMAEN BIT(1)
#define RCC_LPDMACFGR_LPDMALPEN BIT(2)
#define RCC_LPDMACFGR_LPDMAAMEN BIT(3)
/* RCC_HSEMCFGR register fields */
#define RCC_HSEMCFGR_HSEMRST BIT(0)
#define RCC_HSEMCFGR_HSEMEN BIT(1)
#define RCC_HSEMCFGR_HSEMLPEN BIT(2)
#define RCC_HSEMCFGR_HSEMAMEN BIT(3)
/* RCC_IPCC1CFGR register fields */
#define RCC_IPCC1CFGR_IPCC1RST BIT(0)
#define RCC_IPCC1CFGR_IPCC1EN BIT(1)
#define RCC_IPCC1CFGR_IPCC1LPEN BIT(2)
/* RCC_IPCC2CFGR register fields */
#define RCC_IPCC2CFGR_IPCC2RST BIT(0)
#define RCC_IPCC2CFGR_IPCC2EN BIT(1)
#define RCC_IPCC2CFGR_IPCC2LPEN BIT(2)
#define RCC_IPCC2CFGR_IPCC2AMEN BIT(3)
/* RCC_RTCCFGR register fields */
#define RCC_RTCCFGR_RTCEN BIT(1)
#define RCC_RTCCFGR_RTCLPEN BIT(2)
#define RCC_RTCCFGR_RTCAMEN BIT(3)
/* RCC_SYSCPU1CFGR register fields */
#define RCC_SYSCPU1CFGR_SYSCPU1EN BIT(1)
#define RCC_SYSCPU1CFGR_SYSCPU1LPEN BIT(2)
/* RCC_BSECCFGR register fields */
#define RCC_BSECCFGR_BSECEN BIT(1)
#define RCC_BSECCFGR_BSECLPEN BIT(2)
/* RCC_IS2MCFGR register fields */
#define RCC_IS2MCFGR_IS2MRST BIT(0)
#define RCC_IS2MCFGR_IS2MEN BIT(1)
#define RCC_IS2MCFGR_IS2MLPEN BIT(2)
/* RCC_PLL2CFGR1 register fields */
#define RCC_PLL2CFGR1_SSMODRST BIT(0)
#define RCC_PLL2CFGR1_PLLEN BIT(8)
#define RCC_PLL2CFGR1_PLLRDY BIT(24)
#define RCC_PLL2CFGR1_CKREFST BIT(28)
/* RCC_PLL2CFGR2 register fields */
#define RCC_PLL2CFGR2_FREFDIV_MASK GENMASK_32(5, 0)
#define RCC_PLL2CFGR2_FREFDIV_SHIFT 0
#define RCC_PLL2CFGR2_FBDIV_MASK GENMASK_32(27, 16)
#define RCC_PLL2CFGR2_FBDIV_SHIFT 16
/* RCC_PLL2CFGR3 register fields */
#define RCC_PLL2CFGR3_FRACIN_MASK GENMASK_32(23, 0)
#define RCC_PLL2CFGR3_FRACIN_SHIFT 0
#define RCC_PLL2CFGR3_DOWNSPREAD BIT(24)
#define RCC_PLL2CFGR3_DACEN BIT(25)
#define RCC_PLL2CFGR3_SSCGDIS BIT(26)
/* RCC_PLL2CFGR4 register fields */
#define RCC_PLL2CFGR4_DSMEN BIT(8)
#define RCC_PLL2CFGR4_FOUTPOSTDIVEN BIT(9)
#define RCC_PLL2CFGR4_BYPASS BIT(10)
/* RCC_PLL2CFGR5 register fields */
#define RCC_PLL2CFGR5_DIVVAL_MASK GENMASK_32(3, 0)
#define RCC_PLL2CFGR5_DIVVAL_SHIFT 0
#define RCC_PLL2CFGR5_SPREAD_MASK GENMASK_32(20, 16)
#define RCC_PLL2CFGR5_SPREAD_SHIFT 16
/* RCC_PLL2CFGR6 register fields */
#define RCC_PLL2CFGR6_POSTDIV1_MASK GENMASK_32(2, 0)
#define RCC_PLL2CFGR6_POSTDIV1_SHIFT 0
/* RCC_PLL2CFGR7 register fields */
#define RCC_PLL2CFGR7_POSTDIV2_MASK GENMASK_32(2, 0)
#define RCC_PLL2CFGR7_POSTDIV2_SHIFT 0
/* RCC_PLL3CFGR1 register fields */
#define RCC_PLL3CFGR1_SSMODRST BIT(0)
#define RCC_PLL3CFGR1_PLLEN BIT(8)
#define RCC_PLL3CFGR1_PLLRDY BIT(24)
#define RCC_PLL3CFGR1_CKREFST BIT(28)
/* RCC_PLL3CFGR2 register fields */
#define RCC_PLL3CFGR2_FREFDIV_MASK GENMASK_32(5, 0)
#define RCC_PLL3CFGR2_FREFDIV_SHIFT 0
#define RCC_PLL3CFGR2_FBDIV_MASK GENMASK_32(27, 16)
#define RCC_PLL3CFGR2_FBDIV_SHIFT 16
/* RCC_PLL3CFGR3 register fields */
#define RCC_PLL3CFGR3_FRACIN_MASK GENMASK_32(23, 0)
#define RCC_PLL3CFGR3_FRACIN_SHIFT 0
#define RCC_PLL3CFGR3_DOWNSPREAD BIT(24)
#define RCC_PLL3CFGR3_DACEN BIT(25)
#define RCC_PLL3CFGR3_SSCGDIS BIT(26)
/* RCC_PLL3CFGR4 register fields */
#define RCC_PLL3CFGR4_DSMEN BIT(8)
#define RCC_PLL3CFGR4_FOUTPOSTDIVEN BIT(9)
#define RCC_PLL3CFGR4_BYPASS BIT(10)
/* RCC_PLL3CFGR5 register fields */
#define RCC_PLL3CFGR5_DIVVAL_MASK GENMASK_32(3, 0)
#define RCC_PLL3CFGR5_DIVVAL_SHIFT 0
#define RCC_PLL3CFGR5_SPREAD_MASK GENMASK_32(20, 16)
#define RCC_PLL3CFGR5_SPREAD_SHIFT 16
/* RCC_PLL3CFGR6 register fields */
#define RCC_PLL3CFGR6_POSTDIV1_MASK GENMASK_32(2, 0)
#define RCC_PLL3CFGR6_POSTDIV1_SHIFT 0
/* RCC_PLL3CFGR7 register fields */
#define RCC_PLL3CFGR7_POSTDIV2_MASK GENMASK_32(2, 0)
#define RCC_PLL3CFGR7_POSTDIV2_SHIFT 0
/* RCC_PLLxCFGR1 register fields */
#define RCC_PLLxCFGR1_SSMODRST BIT(0)
#define RCC_PLLxCFGR1_PLLEN BIT(8)
#define RCC_PLLxCFGR1_PLLRDY BIT(24)
#define RCC_PLLxCFGR1_CKREFST BIT(28)
/* RCC_PLLxCFGR2 register fields */
#define RCC_PLLxCFGR2_FREFDIV_MASK GENMASK_32(5, 0)
#define RCC_PLLxCFGR2_FREFDIV_SHIFT 0
#define RCC_PLLxCFGR2_FBDIV_MASK GENMASK_32(27, 16)
#define RCC_PLLxCFGR2_FBDIV_SHIFT 16
/* RCC_PLLxCFGR3 register fields */
#define RCC_PLLxCFGR3_FRACIN_MASK GENMASK_32(23, 0)
#define RCC_PLLxCFGR3_FRACIN_SHIFT 0
#define RCC_PLLxCFGR3_DOWNSPREAD BIT(24)
#define RCC_PLLxCFGR3_DACEN BIT(25)
#define RCC_PLLxCFGR3_SSCGDIS BIT(26)
/* RCC_PLLxCFGR4 register fields */
#define RCC_PLLxCFGR4_DSMEN BIT(8)
#define RCC_PLLxCFGR4_FOUTPOSTDIVEN BIT(9)
#define RCC_PLLxCFGR4_BYPASS BIT(10)
/* RCC_PLLxCFGR5 register fields */
#define RCC_PLLxCFGR5_DIVVAL_MASK GENMASK_32(3, 0)
#define RCC_PLLxCFGR5_DIVVAL_SHIFT 0
#define RCC_PLLxCFGR5_SPREAD_MASK GENMASK_32(20, 16)
#define RCC_PLLxCFGR5_SPREAD_SHIFT 16
/* RCC_PLLxCFGR6 register fields */
#define RCC_PLLxCFGR6_POSTDIV1_MASK GENMASK_32(2, 0)
#define RCC_PLLxCFGR6_POSTDIV1_SHIFT 0
/* RCC_PLLxCFGR7 register fields */
#define RCC_PLLxCFGR7_POSTDIV2_MASK GENMASK_32(2, 0)
#define RCC_PLLxCFGR7_POSTDIV2_SHIFT 0
/* RCC_HSIFMONCR register fields */
#define RCC_HSIFMONCR_HSIREF_MASK GENMASK_32(10, 0)
#define RCC_HSIFMONCR_HSIREF_SHIFT 0
#define RCC_HSIFMONCR_HSIMONEN BIT(15)
#define RCC_HSIFMONCR_HSIDEV_MASK GENMASK_32(21, 16)
#define RCC_HSIFMONCR_HSIDEV_SHIFT 16
#define RCC_HSIFMONCR_HSIMONIE BIT(30)
#define RCC_HSIFMONCR_HSIMONF BIT(31)
/* RCC_HSIFVALR register fields */
#define RCC_HSIFVALR_HSIVAL_MASK GENMASK_32(10, 0)
#define RCC_HSIFVALR_HSIVAL_SHIFT 0
/* RCC_TIM1CFGR register fields */
#define RCC_TIM1CFGR_TIM1RST BIT(0)
#define RCC_TIM1CFGR_TIM1EN BIT(1)
#define RCC_TIM1CFGR_TIM1LPEN BIT(2)
/* RCC_TIM2CFGR register fields */
#define RCC_TIM2CFGR_TIM2RST BIT(0)
#define RCC_TIM2CFGR_TIM2EN BIT(1)
#define RCC_TIM2CFGR_TIM2LPEN BIT(2)
/* RCC_TIM3CFGR register fields */
#define RCC_TIM3CFGR_TIM3RST BIT(0)
#define RCC_TIM3CFGR_TIM3EN BIT(1)
#define RCC_TIM3CFGR_TIM3LPEN BIT(2)
/* RCC_TIM4CFGR register fields */
#define RCC_TIM4CFGR_TIM4RST BIT(0)
#define RCC_TIM4CFGR_TIM4EN BIT(1)
#define RCC_TIM4CFGR_TIM4LPEN BIT(2)
/* RCC_TIM5CFGR register fields */
#define RCC_TIM5CFGR_TIM5RST BIT(0)
#define RCC_TIM5CFGR_TIM5EN BIT(1)
#define RCC_TIM5CFGR_TIM5LPEN BIT(2)
/* RCC_TIM6CFGR register fields */
#define RCC_TIM6CFGR_TIM6RST BIT(0)
#define RCC_TIM6CFGR_TIM6EN BIT(1)
#define RCC_TIM6CFGR_TIM6LPEN BIT(2)
/* RCC_TIM7CFGR register fields */
#define RCC_TIM7CFGR_TIM7RST BIT(0)
#define RCC_TIM7CFGR_TIM7EN BIT(1)
#define RCC_TIM7CFGR_TIM7LPEN BIT(2)
/* RCC_TIM8CFGR register fields */
#define RCC_TIM8CFGR_TIM8RST BIT(0)
#define RCC_TIM8CFGR_TIM8EN BIT(1)
#define RCC_TIM8CFGR_TIM8LPEN BIT(2)
/* RCC_TIM10CFGR register fields */
#define RCC_TIM10CFGR_TIM10RST BIT(0)
#define RCC_TIM10CFGR_TIM10EN BIT(1)
#define RCC_TIM10CFGR_TIM10LPEN BIT(2)
/* RCC_TIM11CFGR register fields */
#define RCC_TIM11CFGR_TIM11RST BIT(0)
#define RCC_TIM11CFGR_TIM11EN BIT(1)
#define RCC_TIM11CFGR_TIM11LPEN BIT(2)
/* RCC_TIM12CFGR register fields */
#define RCC_TIM12CFGR_TIM12RST BIT(0)
#define RCC_TIM12CFGR_TIM12EN BIT(1)
#define RCC_TIM12CFGR_TIM12LPEN BIT(2)
/* RCC_TIM13CFGR register fields */
#define RCC_TIM13CFGR_TIM13RST BIT(0)
#define RCC_TIM13CFGR_TIM13EN BIT(1)
#define RCC_TIM13CFGR_TIM13LPEN BIT(2)
/* RCC_TIM14CFGR register fields */
#define RCC_TIM14CFGR_TIM14RST BIT(0)
#define RCC_TIM14CFGR_TIM14EN BIT(1)
#define RCC_TIM14CFGR_TIM14LPEN BIT(2)
/* RCC_TIM15CFGR register fields */
#define RCC_TIM15CFGR_TIM15RST BIT(0)
#define RCC_TIM15CFGR_TIM15EN BIT(1)
#define RCC_TIM15CFGR_TIM15LPEN BIT(2)
/* RCC_TIM16CFGR register fields */
#define RCC_TIM16CFGR_TIM16RST BIT(0)
#define RCC_TIM16CFGR_TIM16EN BIT(1)
#define RCC_TIM16CFGR_TIM16LPEN BIT(2)
/* RCC_TIM17CFGR register fields */
#define RCC_TIM17CFGR_TIM17RST BIT(0)
#define RCC_TIM17CFGR_TIM17EN BIT(1)
#define RCC_TIM17CFGR_TIM17LPEN BIT(2)
/* RCC_TIM20CFGR register fields */
#define RCC_TIM20CFGR_TIM20RST BIT(0)
#define RCC_TIM20CFGR_TIM20EN BIT(1)
#define RCC_TIM20CFGR_TIM20LPEN BIT(2)
/* RCC_LPTIM1CFGR register fields */
#define RCC_LPTIM1CFGR_LPTIM1RST BIT(0)
#define RCC_LPTIM1CFGR_LPTIM1EN BIT(1)
#define RCC_LPTIM1CFGR_LPTIM1LPEN BIT(2)
/* RCC_LPTIM2CFGR register fields */
#define RCC_LPTIM2CFGR_LPTIM2RST BIT(0)
#define RCC_LPTIM2CFGR_LPTIM2EN BIT(1)
#define RCC_LPTIM2CFGR_LPTIM2LPEN BIT(2)
/* RCC_LPTIM3CFGR register fields */
#define RCC_LPTIM3CFGR_LPTIM3RST BIT(0)
#define RCC_LPTIM3CFGR_LPTIM3EN BIT(1)
#define RCC_LPTIM3CFGR_LPTIM3LPEN BIT(2)
#define RCC_LPTIM3CFGR_LPTIM3AMEN BIT(3)
/* RCC_LPTIM4CFGR register fields */
#define RCC_LPTIM4CFGR_LPTIM4RST BIT(0)
#define RCC_LPTIM4CFGR_LPTIM4EN BIT(1)
#define RCC_LPTIM4CFGR_LPTIM4LPEN BIT(2)
#define RCC_LPTIM4CFGR_LPTIM4AMEN BIT(3)
/* RCC_LPTIM5CFGR register fields */
#define RCC_LPTIM5CFGR_LPTIM5RST BIT(0)
#define RCC_LPTIM5CFGR_LPTIM5EN BIT(1)
#define RCC_LPTIM5CFGR_LPTIM5LPEN BIT(2)
#define RCC_LPTIM5CFGR_LPTIM5AMEN BIT(3)
/* RCC_LPTIMxCFGR register fields */
#define RCC_LPTIMxCFGR_LPTIMxRST BIT(0)
#define RCC_LPTIMxCFGR_LPTIMxEN BIT(1)
#define RCC_LPTIMxCFGR_LPTIMxLPEN BIT(2)
#define RCC_LPTIMxCFGR_LPTIMxAMEN BIT(3)
/* RCC_SPI1CFGR register fields */
#define RCC_SPI1CFGR_SPI1RST BIT(0)
#define RCC_SPI1CFGR_SPI1EN BIT(1)
#define RCC_SPI1CFGR_SPI1LPEN BIT(2)
/* RCC_SPI2CFGR register fields */
#define RCC_SPI2CFGR_SPI2RST BIT(0)
#define RCC_SPI2CFGR_SPI2EN BIT(1)
#define RCC_SPI2CFGR_SPI2LPEN BIT(2)
/* RCC_SPI3CFGR register fields */
#define RCC_SPI3CFGR_SPI3RST BIT(0)
#define RCC_SPI3CFGR_SPI3EN BIT(1)
#define RCC_SPI3CFGR_SPI3LPEN BIT(2)
/* RCC_SPI4CFGR register fields */
#define RCC_SPI4CFGR_SPI4RST BIT(0)
#define RCC_SPI4CFGR_SPI4EN BIT(1)
#define RCC_SPI4CFGR_SPI4LPEN BIT(2)
/* RCC_SPI5CFGR register fields */
#define RCC_SPI5CFGR_SPI5RST BIT(0)
#define RCC_SPI5CFGR_SPI5EN BIT(1)
#define RCC_SPI5CFGR_SPI5LPEN BIT(2)
/* RCC_SPI6CFGR register fields */
#define RCC_SPI6CFGR_SPI6RST BIT(0)
#define RCC_SPI6CFGR_SPI6EN BIT(1)
#define RCC_SPI6CFGR_SPI6LPEN BIT(2)
/* RCC_SPI7CFGR register fields */
#define RCC_SPI7CFGR_SPI7RST BIT(0)
#define RCC_SPI7CFGR_SPI7EN BIT(1)
#define RCC_SPI7CFGR_SPI7LPEN BIT(2)
/* RCC_SPI8CFGR register fields */
#define RCC_SPI8CFGR_SPI8RST BIT(0)
#define RCC_SPI8CFGR_SPI8EN BIT(1)
#define RCC_SPI8CFGR_SPI8LPEN BIT(2)
#define RCC_SPI8CFGR_SPI8AMEN BIT(3)
/* RCC_SPIxCFGR register fields */
#define RCC_SPIxCFGR_SPIxRST BIT(0)
#define RCC_SPIxCFGR_SPIxEN BIT(1)
#define RCC_SPIxCFGR_SPIxLPEN BIT(2)
#define RCC_SPIxCFGR_SPIxAMEN BIT(3)
/* RCC_SPDIFRXCFGR register fields */
#define RCC_SPDIFRXCFGR_SPDIFRXRST BIT(0)
#define RCC_SPDIFRXCFGR_SPDIFRXEN BIT(1)
#define RCC_SPDIFRXCFGR_SPDIFRXLPEN BIT(2)
/* RCC_USART1CFGR register fields */
#define RCC_USART1CFGR_USART1RST BIT(0)
#define RCC_USART1CFGR_USART1EN BIT(1)
#define RCC_USART1CFGR_USART1LPEN BIT(2)
/* RCC_USART2CFGR register fields */
#define RCC_USART2CFGR_USART2RST BIT(0)
#define RCC_USART2CFGR_USART2EN BIT(1)
#define RCC_USART2CFGR_USART2LPEN BIT(2)
/* RCC_USART3CFGR register fields */
#define RCC_USART3CFGR_USART3RST BIT(0)
#define RCC_USART3CFGR_USART3EN BIT(1)
#define RCC_USART3CFGR_USART3LPEN BIT(2)
/* RCC_UART4CFGR register fields */
#define RCC_UART4CFGR_UART4RST BIT(0)
#define RCC_UART4CFGR_UART4EN BIT(1)
#define RCC_UART4CFGR_UART4LPEN BIT(2)
/* RCC_UART5CFGR register fields */
#define RCC_UART5CFGR_UART5RST BIT(0)
#define RCC_UART5CFGR_UART5EN BIT(1)
#define RCC_UART5CFGR_UART5LPEN BIT(2)
/* RCC_USART6CFGR register fields */
#define RCC_USART6CFGR_USART6RST BIT(0)
#define RCC_USART6CFGR_USART6EN BIT(1)
#define RCC_USART6CFGR_USART6LPEN BIT(2)
/* RCC_UART7CFGR register fields */
#define RCC_UART7CFGR_UART7RST BIT(0)
#define RCC_UART7CFGR_UART7EN BIT(1)
#define RCC_UART7CFGR_UART7LPEN BIT(2)
/* RCC_UART8CFGR register fields */
#define RCC_UART8CFGR_UART8RST BIT(0)
#define RCC_UART8CFGR_UART8EN BIT(1)
#define RCC_UART8CFGR_UART8LPEN BIT(2)
/* RCC_UART9CFGR register fields */
#define RCC_UART9CFGR_UART9RST BIT(0)
#define RCC_UART9CFGR_UART9EN BIT(1)
#define RCC_UART9CFGR_UART9LPEN BIT(2)
/* RCC_USARTxCFGR register fields */
#define RCC_USARTxCFGR_USARTxRST BIT(0)
#define RCC_USARTxCFGR_USARTxEN BIT(1)
#define RCC_USARTxCFGR_USARTxLPEN BIT(2)
/* RCC_UARTxCFGR register fields */
#define RCC_UARTxCFGR_UARTxRST BIT(0)
#define RCC_UARTxCFGR_UARTxEN BIT(1)
#define RCC_UARTxCFGR_UARTxLPEN BIT(2)
/* RCC_LPUART1CFGR register fields */
#define RCC_LPUART1CFGR_LPUART1RST BIT(0)
#define RCC_LPUART1CFGR_LPUART1EN BIT(1)
#define RCC_LPUART1CFGR_LPUART1LPEN BIT(2)
#define RCC_LPUART1CFGR_LPUART1AMEN BIT(3)
/* RCC_I2C1CFGR register fields */
#define RCC_I2C1CFGR_I2C1RST BIT(0)
#define RCC_I2C1CFGR_I2C1EN BIT(1)
#define RCC_I2C1CFGR_I2C1LPEN BIT(2)
/* RCC_I2C2CFGR register fields */
#define RCC_I2C2CFGR_I2C2RST BIT(0)
#define RCC_I2C2CFGR_I2C2EN BIT(1)
#define RCC_I2C2CFGR_I2C2LPEN BIT(2)
/* RCC_I2C3CFGR register fields */
#define RCC_I2C3CFGR_I2C3RST BIT(0)
#define RCC_I2C3CFGR_I2C3EN BIT(1)
#define RCC_I2C3CFGR_I2C3LPEN BIT(2)
/* RCC_I2C4CFGR register fields */
#define RCC_I2C4CFGR_I2C4RST BIT(0)
#define RCC_I2C4CFGR_I2C4EN BIT(1)
#define RCC_I2C4CFGR_I2C4LPEN BIT(2)
/* RCC_I2C5CFGR register fields */
#define RCC_I2C5CFGR_I2C5RST BIT(0)
#define RCC_I2C5CFGR_I2C5EN BIT(1)
#define RCC_I2C5CFGR_I2C5LPEN BIT(2)
/* RCC_I2C6CFGR register fields */
#define RCC_I2C6CFGR_I2C6RST BIT(0)
#define RCC_I2C6CFGR_I2C6EN BIT(1)
#define RCC_I2C6CFGR_I2C6LPEN BIT(2)
/* RCC_I2C7CFGR register fields */
#define RCC_I2C7CFGR_I2C7RST BIT(0)
#define RCC_I2C7CFGR_I2C7EN BIT(1)
#define RCC_I2C7CFGR_I2C7LPEN BIT(2)
/* RCC_I2C8CFGR register fields */
#define RCC_I2C8CFGR_I2C8RST BIT(0)
#define RCC_I2C8CFGR_I2C8EN BIT(1)
#define RCC_I2C8CFGR_I2C8LPEN BIT(2)
#define RCC_I2C8CFGR_I2C8AMEN BIT(3)
/* RCC_I2CxCFGR register fields */
#define RCC_I2CxCFGR_I2CxRST BIT(0)
#define RCC_I2CxCFGR_I2CxEN BIT(1)
#define RCC_I2CxCFGR_I2CxLPEN BIT(2)
#define RCC_I2CxCFGR_I2CxAMEN BIT(3)
/* RCC_SAI1CFGR register fields */
#define RCC_SAI1CFGR_SAI1RST BIT(0)
#define RCC_SAI1CFGR_SAI1EN BIT(1)
#define RCC_SAI1CFGR_SAI1LPEN BIT(2)
/* RCC_SAI2CFGR register fields */
#define RCC_SAI2CFGR_SAI2RST BIT(0)
#define RCC_SAI2CFGR_SAI2EN BIT(1)
#define RCC_SAI2CFGR_SAI2LPEN BIT(2)
/* RCC_SAI3CFGR register fields */
#define RCC_SAI3CFGR_SAI3RST BIT(0)
#define RCC_SAI3CFGR_SAI3EN BIT(1)
#define RCC_SAI3CFGR_SAI3LPEN BIT(2)
/* RCC_SAI4CFGR register fields */
#define RCC_SAI4CFGR_SAI4RST BIT(0)
#define RCC_SAI4CFGR_SAI4EN BIT(1)
#define RCC_SAI4CFGR_SAI4LPEN BIT(2)
/* RCC_SAIxCFGR register fields */
#define RCC_SAIxCFGR_SAIxRST BIT(0)
#define RCC_SAIxCFGR_SAIxEN BIT(1)
#define RCC_SAIxCFGR_SAIxLPEN BIT(2)
/* RCC_MDF1CFGR register fields */
#define RCC_MDF1CFGR_MDF1RST BIT(0)
#define RCC_MDF1CFGR_MDF1EN BIT(1)
#define RCC_MDF1CFGR_MDF1LPEN BIT(2)
/* RCC_ADF1CFGR register fields */
#define RCC_ADF1CFGR_ADF1RST BIT(0)
#define RCC_ADF1CFGR_ADF1EN BIT(1)
#define RCC_ADF1CFGR_ADF1LPEN BIT(2)
#define RCC_ADF1CFGR_ADF1AMEN BIT(3)
/* RCC_FDCANCFGR register fields */
#define RCC_FDCANCFGR_FDCANRST BIT(0)
#define RCC_FDCANCFGR_FDCANEN BIT(1)
#define RCC_FDCANCFGR_FDCANLPEN BIT(2)
/* RCC_HDPCFGR register fields */
#define RCC_HDPCFGR_HDPRST BIT(0)
#define RCC_HDPCFGR_HDPEN BIT(1)
/* RCC_ADC12CFGR register fields */
#define RCC_ADC12CFGR_ADC12RST BIT(0)
#define RCC_ADC12CFGR_ADC12EN BIT(1)
#define RCC_ADC12CFGR_ADC12LPEN BIT(2)
#define RCC_ADC12CFGR_ADC12KERSEL BIT(12)
/* RCC_ADC3CFGR register fields */
#define RCC_ADC3CFGR_ADC3RST BIT(0)
#define RCC_ADC3CFGR_ADC3EN BIT(1)
#define RCC_ADC3CFGR_ADC3LPEN BIT(2)
#define RCC_ADC3CFGR_ADC3KERSEL_MASK GENMASK_32(13, 12)
#define RCC_ADC3CFGR_ADC3KERSEL_SHIFT 12
/* RCC_ETH1CFGR register fields */
#define RCC_ETH1CFGR_ETH1RST BIT(0)
#define RCC_ETH1CFGR_ETH1MACEN BIT(1)
#define RCC_ETH1CFGR_ETH1MACLPEN BIT(2)
#define RCC_ETH1CFGR_ETH1STPEN BIT(4)
#define RCC_ETH1CFGR_ETH1EN BIT(5)
#define RCC_ETH1CFGR_ETH1LPEN BIT(6)
#define RCC_ETH1CFGR_ETH1TXEN BIT(8)
#define RCC_ETH1CFGR_ETH1TXLPEN BIT(9)
#define RCC_ETH1CFGR_ETH1RXEN BIT(10)
#define RCC_ETH1CFGR_ETH1RXLPEN BIT(11)
/* RCC_ETH2CFGR register fields */
#define RCC_ETH2CFGR_ETH2RST BIT(0)
#define RCC_ETH2CFGR_ETH2MACEN BIT(1)
#define RCC_ETH2CFGR_ETH2MACLPEN BIT(2)
#define RCC_ETH2CFGR_ETH2STPEN BIT(4)
#define RCC_ETH2CFGR_ETH2EN BIT(5)
#define RCC_ETH2CFGR_ETH2LPEN BIT(6)
#define RCC_ETH2CFGR_ETH2TXEN BIT(8)
#define RCC_ETH2CFGR_ETH2TXLPEN BIT(9)
#define RCC_ETH2CFGR_ETH2RXEN BIT(10)
#define RCC_ETH2CFGR_ETH2RXLPEN BIT(11)
/* RCC_ETHxCFGR register fields */
#define RCC_ETHxCFGR_ETHxRST BIT(0)
#define RCC_ETHxCFGR_ETHxMACEN BIT(1)
#define RCC_ETHxCFGR_ETHxMACLPEN BIT(2)
#define RCC_ETHxCFGR_ETHxSTPEN BIT(4)
#define RCC_ETHxCFGR_ETHxEN BIT(5)
#define RCC_ETHxCFGR_ETHxLPEN BIT(6)
#define RCC_ETHxCFGR_ETHxTXEN BIT(8)
#define RCC_ETHxCFGR_ETHxTXLPEN BIT(9)
#define RCC_ETHxCFGR_ETHxRXEN BIT(10)
#define RCC_ETHxCFGR_ETHxRXLPEN BIT(11)
/* RCC_USB2CFGR register fields */
#define RCC_USB2CFGR_USB2RST BIT(0)
#define RCC_USB2CFGR_USB2EN BIT(1)
#define RCC_USB2CFGR_USB2LPEN BIT(2)
#define RCC_USB2CFGR_USB2STPEN BIT(4)
/* RCC_USB2PHY1CFGR register fields */
#define RCC_USB2PHY1CFGR_USB2PHY1RST BIT(0)
#define RCC_USB2PHY1CFGR_USB2PHY1EN BIT(1)
#define RCC_USB2PHY1CFGR_USB2PHY1LPEN BIT(2)
#define RCC_USB2PHY1CFGR_USB2PHY1STPEN BIT(4)
#define RCC_USB2PHY1CFGR_USB2PHY1CKREFSEL BIT(15)
/* RCC_USB2PHY2CFGR register fields */
#define RCC_USB2PHY2CFGR_USB2PHY2RST BIT(0)
#define RCC_USB2PHY2CFGR_USB2PHY2EN BIT(1)
#define RCC_USB2PHY2CFGR_USB2PHY2LPEN BIT(2)
#define RCC_USB2PHY2CFGR_USB2PHY2STPEN BIT(4)
#define RCC_USB2PHY2CFGR_USB2PHY2CKREFSEL BIT(15)
/* RCC_USB2PHYxCFGR register fields */
#define RCC_USB2PHYxCFGR_USB2PHY1RST BIT(0)
#define RCC_USB2PHYxCFGR_USB2PHY1EN BIT(1)
#define RCC_USB2PHYxCFGR_USB2PHY1LPEN BIT(2)
#define RCC_USB2PHYxCFGR_USB2PHY1STPEN BIT(4)
#define RCC_USB2PHYxCFGR_USB2PHY1CKREFSEL BIT(15)
/* RCC_USB3DRDCFGR register fields */
#define RCC_USB3DRDCFGR_USB3DRDRST BIT(0)
#define RCC_USB3DRDCFGR_USB3DRDEN BIT(1)
#define RCC_USB3DRDCFGR_USB3DRDLPEN BIT(2)
#define RCC_USB3DRDCFGR_USB3DRDSTPEN BIT(4)
/* RCC_USB3PCIEPHYCFGR register fields */
#define RCC_USB3PCIEPHYCFGR_USB3PCIEPHYRST BIT(0)
#define RCC_USB3PCIEPHYCFGR_USB3PCIEPHYEN BIT(1)
#define RCC_USB3PCIEPHYCFGR_USB3PCIEPHYLPEN BIT(2)
#define RCC_USB3PCIEPHYCFGR_USB3PCIEPHYSTPEN BIT(4)
#define RCC_USB3PCIEPHYCFGR_USB3PCIEPHYCKREFSEL BIT(15)
/* RCC_PCIECFGR register fields */
#define RCC_PCIECFGR_PCIERST BIT(0)
#define RCC_PCIECFGR_PCIEEN BIT(1)
#define RCC_PCIECFGR_PCIELPEN BIT(2)
#define RCC_PCIECFGR_PCIESTPEN BIT(4)
/* RCC_USBTCCFGR register fields */
#define RCC_USBTCCFGR_USBTCRST BIT(0)
#define RCC_USBTCCFGR_USBTCEN BIT(1)
#define RCC_USBTCCFGR_USBTCLPEN BIT(2)
/* RCC_ETHSWCFGR register fields */
#define RCC_ETHSWCFGR_ETHSWRST BIT(0)
#define RCC_ETHSWCFGR_ETHSWMACEN BIT(1)
#define RCC_ETHSWCFGR_ETHSWMACLPEN BIT(2)
#define RCC_ETHSWCFGR_ETHSWEN BIT(5)
#define RCC_ETHSWCFGR_ETHSWLPEN BIT(6)
#define RCC_ETHSWCFGR_ETHSWREFEN BIT(21)
#define RCC_ETHSWCFGR_ETHSWREFLPEN BIT(22)
/* RCC_ETHSWACMCFGR register fields */
#define RCC_ETHSWACMCFGR_ETHSWACMEN BIT(1)
#define RCC_ETHSWACMCFGR_ETHSWACMLPEN BIT(2)
/* RCC_ETHSWACMMSGCFGR register fields */
#define RCC_ETHSWACMMSGCFGR_ETHSWACMMSGEN BIT(1)
#define RCC_ETHSWACMMSGCFGR_ETHSWACMMSGLPEN BIT(2)
/* RCC_STGENCFGR register fields */
#define RCC_STGENCFGR_STGENEN BIT(1)
#define RCC_STGENCFGR_STGENLPEN BIT(2)
#define RCC_STGENCFGR_STGENSTPEN BIT(4)
/* RCC_SDMMC1CFGR register fields */
#define RCC_SDMMC1CFGR_SDMMC1RST BIT(0)
#define RCC_SDMMC1CFGR_SDMMC1EN BIT(1)
#define RCC_SDMMC1CFGR_SDMMC1LPEN BIT(2)
#define RCC_SDMMC1CFGR_SDMMC1DLLRST BIT(16)
/* RCC_SDMMC2CFGR register fields */
#define RCC_SDMMC2CFGR_SDMMC2RST BIT(0)
#define RCC_SDMMC2CFGR_SDMMC2EN BIT(1)
#define RCC_SDMMC2CFGR_SDMMC2LPEN BIT(2)
#define RCC_SDMMC2CFGR_SDMMC2DLLRST BIT(16)
/* RCC_SDMMC3CFGR register fields */
#define RCC_SDMMC3CFGR_SDMMC3RST BIT(0)
#define RCC_SDMMC3CFGR_SDMMC3EN BIT(1)
#define RCC_SDMMC3CFGR_SDMMC3LPEN BIT(2)
#define RCC_SDMMC3CFGR_SDMMC3DLLRST BIT(16)
/* RCC_SDMMCxCFGR register fields */
#define RCC_SDMMCxCFGR_SDMMC1RST BIT(0)
#define RCC_SDMMCxCFGR_SDMMC1EN BIT(1)
#define RCC_SDMMCxCFGR_SDMMC1LPEN BIT(2)
#define RCC_SDMMCxCFGR_SDMMC1DLLRST BIT(16)
/* RCC_GPUCFGR register fields */
#define RCC_GPUCFGR_GPURST BIT(0)
#define RCC_GPUCFGR_GPUEN BIT(1)
#define RCC_GPUCFGR_GPULPEN BIT(2)
/* RCC_LTDCCFGR register fields */
#define RCC_LTDCCFGR_LTDCRST BIT(0)
#define RCC_LTDCCFGR_LTDCEN BIT(1)
#define RCC_LTDCCFGR_LTDCLPEN BIT(2)
/* RCC_DSICFGR register fields */
#define RCC_DSICFGR_DSIRST BIT(0)
#define RCC_DSICFGR_DSIEN BIT(1)
#define RCC_DSICFGR_DSILPEN BIT(2)
#define RCC_DSICFGR_DSIBLSEL BIT(12)
#define RCC_DSICFGR_DSIPHYCKREFSEL BIT(15)
/* RCC_LVDSCFGR register fields */
#define RCC_LVDSCFGR_LVDSRST BIT(0)
#define RCC_LVDSCFGR_LVDSEN BIT(1)
#define RCC_LVDSCFGR_LVDSLPEN BIT(2)
#define RCC_LVDSCFGR_LVDSPHYCKREFSEL BIT(15)
/* RCC_CSI2CFGR register fields */
#define RCC_CSI2CFGR_CSI2RST BIT(0)
#define RCC_CSI2CFGR_CSI2EN BIT(1)
#define RCC_CSI2CFGR_CSI2LPEN BIT(2)
/* RCC_DCMIPPCFGR register fields */
#define RCC_DCMIPPCFGR_DCMIPPRST BIT(0)
#define RCC_DCMIPPCFGR_DCMIPPEN BIT(1)
#define RCC_DCMIPPCFGR_DCMIPPLPEN BIT(2)
/* RCC_CCICFGR register fields */
#define RCC_CCICFGR_CCIRST BIT(0)
#define RCC_CCICFGR_CCIEN BIT(1)
#define RCC_CCICFGR_CCILPEN BIT(2)
/* RCC_VDECCFGR register fields */
#define RCC_VDECCFGR_VDECRST BIT(0)
#define RCC_VDECCFGR_VDECEN BIT(1)
#define RCC_VDECCFGR_VDECLPEN BIT(2)
/* RCC_VENCCFGR register fields */
#define RCC_VENCCFGR_VENCRST BIT(0)
#define RCC_VENCCFGR_VENCEN BIT(1)
#define RCC_VENCCFGR_VENCLPEN BIT(2)
/* RCC_RNGCFGR register fields */
#define RCC_RNGCFGR_RNGRST BIT(0)
#define RCC_RNGCFGR_RNGEN BIT(1)
#define RCC_RNGCFGR_RNGLPEN BIT(2)
/* RCC_PKACFGR register fields */
#define RCC_PKACFGR_PKARST BIT(0)
#define RCC_PKACFGR_PKAEN BIT(1)
#define RCC_PKACFGR_PKALPEN BIT(2)
/* RCC_SAESCFGR register fields */
#define RCC_SAESCFGR_SAESRST BIT(0)
#define RCC_SAESCFGR_SAESEN BIT(1)
#define RCC_SAESCFGR_SAESLPEN BIT(2)
/* RCC_HASHCFGR register fields */
#define RCC_HASHCFGR_HASHRST BIT(0)
#define RCC_HASHCFGR_HASHEN BIT(1)
#define RCC_HASHCFGR_HASHLPEN BIT(2)
/* RCC_CRYP1CFGR register fields */
#define RCC_CRYP1CFGR_CRYP1RST BIT(0)
#define RCC_CRYP1CFGR_CRYP1EN BIT(1)
#define RCC_CRYP1CFGR_CRYP1LPEN BIT(2)
/* RCC_CRYP2CFGR register fields */
#define RCC_CRYP2CFGR_CRYP2RST BIT(0)
#define RCC_CRYP2CFGR_CRYP2EN BIT(1)
#define RCC_CRYP2CFGR_CRYP2LPEN BIT(2)
/* RCC_CRYPxCFGR register fields */
#define RCC_CRYPxCFGR_CRYPxRST BIT(0)
#define RCC_CRYPxCFGR_CRYPxEN BIT(1)
#define RCC_CRYPxCFGR_CRYPxLPEN BIT(2)
/* RCC_IWDG1CFGR register fields */
#define RCC_IWDG1CFGR_IWDG1EN BIT(1)
#define RCC_IWDG1CFGR_IWDG1LPEN BIT(2)
/* RCC_IWDG2CFGR register fields */
#define RCC_IWDG2CFGR_IWDG2EN BIT(1)
#define RCC_IWDG2CFGR_IWDG2LPEN BIT(2)
/* RCC_IWDG3CFGR register fields */
#define RCC_IWDG3CFGR_IWDG3EN BIT(1)
#define RCC_IWDG3CFGR_IWDG3LPEN BIT(2)
/* RCC_IWDG4CFGR register fields */
#define RCC_IWDG4CFGR_IWDG4EN BIT(1)
#define RCC_IWDG4CFGR_IWDG4LPEN BIT(2)
/* RCC_IWDGxCFGR register fields */
#define RCC_IWDGxCFGR_IWDGxEN BIT(1)
#define RCC_IWDGxCFGR_IWDGxLPEN BIT(2)
/* RCC_IWDG5CFGR register fields */
#define RCC_IWDG5CFGR_IWDG5EN BIT(1)
#define RCC_IWDG5CFGR_IWDG5LPEN BIT(2)
#define RCC_IWDG5CFGR_IWDG5AMEN BIT(3)
/* RCC_WWDG1CFGR register fields */
#define RCC_WWDG1CFGR_WWDG1RST BIT(0)
#define RCC_WWDG1CFGR_WWDG1EN BIT(1)
#define RCC_WWDG1CFGR_WWDG1LPEN BIT(2)
/* RCC_WWDG2CFGR register fields */
#define RCC_WWDG2CFGR_WWDG2RST BIT(0)
#define RCC_WWDG2CFGR_WWDG2EN BIT(1)
#define RCC_WWDG2CFGR_WWDG2LPEN BIT(2)
#define RCC_WWDG2CFGR_WWDG2AMEN BIT(3)
/* RCC_BUSPERFMCFGR register fields */
#define RCC_BUSPERFMCFGR_BUSPERFMRST BIT(0)
#define RCC_BUSPERFMCFGR_BUSPERFMEN BIT(1)
#define RCC_BUSPERFMCFGR_BUSPERFMLPEN BIT(2)
/* RCC_VREFCFGR register fields */
#define RCC_VREFCFGR_VREFRST BIT(0)
#define RCC_VREFCFGR_VREFEN BIT(1)
#define RCC_VREFCFGR_VREFLPEN BIT(2)
/* RCC_TMPSENSCFGR register fields */
#define RCC_TMPSENSCFGR_TMPSENSRST BIT(0)
#define RCC_TMPSENSCFGR_TMPSENSEN BIT(1)
#define RCC_TMPSENSCFGR_TMPSENSLPEN BIT(2)
#define RCC_TMPSENSCFGR_TMPSENSKERSEL_MASK GENMASK_32(13, 12)
#define RCC_TMPSENSCFGR_TMPSENSKERSEL_SHIFT 12
/* RCC_CRCCFGR register fields */
#define RCC_CRCCFGR_CRCRST BIT(0)
#define RCC_CRCCFGR_CRCEN BIT(1)
#define RCC_CRCCFGR_CRCLPEN BIT(2)
/* RCC_SERCCFGR register fields */
#define RCC_SERCCFGR_SERCRST BIT(0)
#define RCC_SERCCFGR_SERCEN BIT(1)
#define RCC_SERCCFGR_SERCLPEN BIT(2)
/* RCC_OSPIIOMCFGR register fields */
#define RCC_OSPIIOMCFGR_OSPIIOMRST BIT(0)
#define RCC_OSPIIOMCFGR_OSPIIOMEN BIT(1)
#define RCC_OSPIIOMCFGR_OSPIIOMLPEN BIT(2)
/* RCC_GICV2MCFGR register fields */
#define RCC_GICV2MCFGR_GICV2MEN BIT(1)
#define RCC_GICV2MCFGR_GICV2MLPEN BIT(2)
/* RCC_I3C1CFGR register fields */
#define RCC_I3C1CFGR_I3C1RST BIT(0)
#define RCC_I3C1CFGR_I3C1EN BIT(1)
#define RCC_I3C1CFGR_I3C1LPEN BIT(2)
/* RCC_I3C2CFGR register fields */
#define RCC_I3C2CFGR_I3C2RST BIT(0)
#define RCC_I3C2CFGR_I3C2EN BIT(1)
#define RCC_I3C2CFGR_I3C2LPEN BIT(2)
/* RCC_I3C3CFGR register fields */
#define RCC_I3C3CFGR_I3C3RST BIT(0)
#define RCC_I3C3CFGR_I3C3EN BIT(1)
#define RCC_I3C3CFGR_I3C3LPEN BIT(2)
/* RCC_I3C4CFGR register fields */
#define RCC_I3C4CFGR_I3C4RST BIT(0)
#define RCC_I3C4CFGR_I3C4EN BIT(1)
#define RCC_I3C4CFGR_I3C4LPEN BIT(2)
#define RCC_I3C4CFGR_I3C4AMEN BIT(3)
/* RCC_I3CxCFGR register fields */
#define RCC_I3CxCFGR_I3CxRST BIT(0)
#define RCC_I3CxCFGR_I3CxEN BIT(1)
#define RCC_I3CxCFGR_I3CxLPEN BIT(2)
#define RCC_I3CxCFGR_I3CxAMEN BIT(3)
/* RCC_MUXSELCFGR register fields */
#define RCC_MUXSELCFGR_MUXSEL0_MASK GENMASK_32(1, 0)
#define RCC_MUXSELCFGR_MUXSEL0_SHIFT 0
#define RCC_MUXSELCFGR_MUXSEL1_MASK GENMASK_32(5, 4)
#define RCC_MUXSELCFGR_MUXSEL1_SHIFT 4
#define RCC_MUXSELCFGR_MUXSEL2_MASK GENMASK_32(9, 8)
#define RCC_MUXSELCFGR_MUXSEL2_SHIFT 8
#define RCC_MUXSELCFGR_MUXSEL3_MASK GENMASK_32(13, 12)
#define RCC_MUXSELCFGR_MUXSEL3_SHIFT 12
#define RCC_MUXSELCFGR_MUXSEL4_MASK GENMASK_32(17, 16)
#define RCC_MUXSELCFGR_MUXSEL4_SHIFT 16
#define RCC_MUXSELCFGR_MUXSEL5_MASK GENMASK_32(21, 20)
#define RCC_MUXSELCFGR_MUXSEL5_SHIFT 20
#define RCC_MUXSELCFGR_MUXSEL6_MASK GENMASK_32(25, 24)
#define RCC_MUXSELCFGR_MUXSEL6_SHIFT 24
#define RCC_MUXSELCFGR_MUXSEL7_MASK GENMASK_32(29, 28)
#define RCC_MUXSELCFGR_MUXSEL7_SHIFT 28
/* RCC_XBAR0CFGR register fields */
#define RCC_XBAR0CFGR_XBAR0SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR0CFGR_XBAR0SEL_SHIFT 0
#define RCC_XBAR0CFGR_XBAR0EN BIT(6)
#define RCC_XBAR0CFGR_XBAR0STS BIT(7)
/* RCC_XBAR1CFGR register fields */
#define RCC_XBAR1CFGR_XBAR1SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR1CFGR_XBAR1SEL_SHIFT 0
#define RCC_XBAR1CFGR_XBAR1EN BIT(6)
#define RCC_XBAR1CFGR_XBAR1STS BIT(7)
/* RCC_XBAR2CFGR register fields */
#define RCC_XBAR2CFGR_XBAR2SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR2CFGR_XBAR2SEL_SHIFT 0
#define RCC_XBAR2CFGR_XBAR2EN BIT(6)
#define RCC_XBAR2CFGR_XBAR2STS BIT(7)
/* RCC_XBAR3CFGR register fields */
#define RCC_XBAR3CFGR_XBAR3SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR3CFGR_XBAR3SEL_SHIFT 0
#define RCC_XBAR3CFGR_XBAR3EN BIT(6)
#define RCC_XBAR3CFGR_XBAR3STS BIT(7)
/* RCC_XBAR4CFGR register fields */
#define RCC_XBAR4CFGR_XBAR4SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR4CFGR_XBAR4SEL_SHIFT 0
#define RCC_XBAR4CFGR_XBAR4EN BIT(6)
#define RCC_XBAR4CFGR_XBAR4STS BIT(7)
/* RCC_XBAR5CFGR register fields */
#define RCC_XBAR5CFGR_XBAR5SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR5CFGR_XBAR5SEL_SHIFT 0
#define RCC_XBAR5CFGR_XBAR5EN BIT(6)
#define RCC_XBAR5CFGR_XBAR5STS BIT(7)
/* RCC_XBAR6CFGR register fields */
#define RCC_XBAR6CFGR_XBAR6SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR6CFGR_XBAR6SEL_SHIFT 0
#define RCC_XBAR6CFGR_XBAR6EN BIT(6)
#define RCC_XBAR6CFGR_XBAR6STS BIT(7)
/* RCC_XBAR7CFGR register fields */
#define RCC_XBAR7CFGR_XBAR7SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR7CFGR_XBAR7SEL_SHIFT 0
#define RCC_XBAR7CFGR_XBAR7EN BIT(6)
#define RCC_XBAR7CFGR_XBAR7STS BIT(7)
/* RCC_XBAR8CFGR register fields */
#define RCC_XBAR8CFGR_XBAR8SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR8CFGR_XBAR8SEL_SHIFT 0
#define RCC_XBAR8CFGR_XBAR8EN BIT(6)
#define RCC_XBAR8CFGR_XBAR8STS BIT(7)
/* RCC_XBAR9CFGR register fields */
#define RCC_XBAR9CFGR_XBAR9SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR9CFGR_XBAR9SEL_SHIFT 0
#define RCC_XBAR9CFGR_XBAR9EN BIT(6)
#define RCC_XBAR9CFGR_XBAR9STS BIT(7)
/* RCC_XBAR10CFGR register fields */
#define RCC_XBAR10CFGR_XBAR10SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR10CFGR_XBAR10SEL_SHIFT 0
#define RCC_XBAR10CFGR_XBAR10EN BIT(6)
#define RCC_XBAR10CFGR_XBAR10STS BIT(7)
/* RCC_XBAR11CFGR register fields */
#define RCC_XBAR11CFGR_XBAR11SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR11CFGR_XBAR11SEL_SHIFT 0
#define RCC_XBAR11CFGR_XBAR11EN BIT(6)
#define RCC_XBAR11CFGR_XBAR11STS BIT(7)
/* RCC_XBAR12CFGR register fields */
#define RCC_XBAR12CFGR_XBAR12SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR12CFGR_XBAR12SEL_SHIFT 0
#define RCC_XBAR12CFGR_XBAR12EN BIT(6)
#define RCC_XBAR12CFGR_XBAR12STS BIT(7)
/* RCC_XBAR13CFGR register fields */
#define RCC_XBAR13CFGR_XBAR13SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR13CFGR_XBAR13SEL_SHIFT 0
#define RCC_XBAR13CFGR_XBAR13EN BIT(6)
#define RCC_XBAR13CFGR_XBAR13STS BIT(7)
/* RCC_XBAR14CFGR register fields */
#define RCC_XBAR14CFGR_XBAR14SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR14CFGR_XBAR14SEL_SHIFT 0
#define RCC_XBAR14CFGR_XBAR14EN BIT(6)
#define RCC_XBAR14CFGR_XBAR14STS BIT(7)
/* RCC_XBAR15CFGR register fields */
#define RCC_XBAR15CFGR_XBAR15SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR15CFGR_XBAR15SEL_SHIFT 0
#define RCC_XBAR15CFGR_XBAR15EN BIT(6)
#define RCC_XBAR15CFGR_XBAR15STS BIT(7)
/* RCC_XBAR16CFGR register fields */
#define RCC_XBAR16CFGR_XBAR16SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR16CFGR_XBAR16SEL_SHIFT 0
#define RCC_XBAR16CFGR_XBAR16EN BIT(6)
#define RCC_XBAR16CFGR_XBAR16STS BIT(7)
/* RCC_XBAR17CFGR register fields */
#define RCC_XBAR17CFGR_XBAR17SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR17CFGR_XBAR17SEL_SHIFT 0
#define RCC_XBAR17CFGR_XBAR17EN BIT(6)
#define RCC_XBAR17CFGR_XBAR17STS BIT(7)
/* RCC_XBAR18CFGR register fields */
#define RCC_XBAR18CFGR_XBAR18SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR18CFGR_XBAR18SEL_SHIFT 0
#define RCC_XBAR18CFGR_XBAR18EN BIT(6)
#define RCC_XBAR18CFGR_XBAR18STS BIT(7)
/* RCC_XBAR19CFGR register fields */
#define RCC_XBAR19CFGR_XBAR19SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR19CFGR_XBAR19SEL_SHIFT 0
#define RCC_XBAR19CFGR_XBAR19EN BIT(6)
#define RCC_XBAR19CFGR_XBAR19STS BIT(7)
/* RCC_XBAR20CFGR register fields */
#define RCC_XBAR20CFGR_XBAR20SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR20CFGR_XBAR20SEL_SHIFT 0
#define RCC_XBAR20CFGR_XBAR20EN BIT(6)
#define RCC_XBAR20CFGR_XBAR20STS BIT(7)
/* RCC_XBAR21CFGR register fields */
#define RCC_XBAR21CFGR_XBAR21SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR21CFGR_XBAR21SEL_SHIFT 0
#define RCC_XBAR21CFGR_XBAR21EN BIT(6)
#define RCC_XBAR21CFGR_XBAR21STS BIT(7)
/* RCC_XBAR22CFGR register fields */
#define RCC_XBAR22CFGR_XBAR22SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR22CFGR_XBAR22SEL_SHIFT 0
#define RCC_XBAR22CFGR_XBAR22EN BIT(6)
#define RCC_XBAR22CFGR_XBAR22STS BIT(7)
/* RCC_XBAR23CFGR register fields */
#define RCC_XBAR23CFGR_XBAR23SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR23CFGR_XBAR23SEL_SHIFT 0
#define RCC_XBAR23CFGR_XBAR23EN BIT(6)
#define RCC_XBAR23CFGR_XBAR23STS BIT(7)
/* RCC_XBAR24CFGR register fields */
#define RCC_XBAR24CFGR_XBAR24SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR24CFGR_XBAR24SEL_SHIFT 0
#define RCC_XBAR24CFGR_XBAR24EN BIT(6)
#define RCC_XBAR24CFGR_XBAR24STS BIT(7)
/* RCC_XBAR25CFGR register fields */
#define RCC_XBAR25CFGR_XBAR25SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR25CFGR_XBAR25SEL_SHIFT 0
#define RCC_XBAR25CFGR_XBAR25EN BIT(6)
#define RCC_XBAR25CFGR_XBAR25STS BIT(7)
/* RCC_XBAR26CFGR register fields */
#define RCC_XBAR26CFGR_XBAR26SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR26CFGR_XBAR26SEL_SHIFT 0
#define RCC_XBAR26CFGR_XBAR26EN BIT(6)
#define RCC_XBAR26CFGR_XBAR26STS BIT(7)
/* RCC_XBAR27CFGR register fields */
#define RCC_XBAR27CFGR_XBAR27SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR27CFGR_XBAR27SEL_SHIFT 0
#define RCC_XBAR27CFGR_XBAR27EN BIT(6)
#define RCC_XBAR27CFGR_XBAR27STS BIT(7)
/* RCC_XBAR28CFGR register fields */
#define RCC_XBAR28CFGR_XBAR28SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR28CFGR_XBAR28SEL_SHIFT 0
#define RCC_XBAR28CFGR_XBAR28EN BIT(6)
#define RCC_XBAR28CFGR_XBAR28STS BIT(7)
/* RCC_XBAR29CFGR register fields */
#define RCC_XBAR29CFGR_XBAR29SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR29CFGR_XBAR29SEL_SHIFT 0
#define RCC_XBAR29CFGR_XBAR29EN BIT(6)
#define RCC_XBAR29CFGR_XBAR29STS BIT(7)
/* RCC_XBAR30CFGR register fields */
#define RCC_XBAR30CFGR_XBAR30SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR30CFGR_XBAR30SEL_SHIFT 0
#define RCC_XBAR30CFGR_XBAR30EN BIT(6)
#define RCC_XBAR30CFGR_XBAR30STS BIT(7)
/* RCC_XBAR31CFGR register fields */
#define RCC_XBAR31CFGR_XBAR31SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR31CFGR_XBAR31SEL_SHIFT 0
#define RCC_XBAR31CFGR_XBAR31EN BIT(6)
#define RCC_XBAR31CFGR_XBAR31STS BIT(7)
/* RCC_XBAR32CFGR register fields */
#define RCC_XBAR32CFGR_XBAR32SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR32CFGR_XBAR32SEL_SHIFT 0
#define RCC_XBAR32CFGR_XBAR32EN BIT(6)
#define RCC_XBAR32CFGR_XBAR32STS BIT(7)
/* RCC_XBAR33CFGR register fields */
#define RCC_XBAR33CFGR_XBAR33SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR33CFGR_XBAR33SEL_SHIFT 0
#define RCC_XBAR33CFGR_XBAR33EN BIT(6)
#define RCC_XBAR33CFGR_XBAR33STS BIT(7)
/* RCC_XBAR34CFGR register fields */
#define RCC_XBAR34CFGR_XBAR34SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR34CFGR_XBAR34SEL_SHIFT 0
#define RCC_XBAR34CFGR_XBAR34EN BIT(6)
#define RCC_XBAR34CFGR_XBAR34STS BIT(7)
/* RCC_XBAR35CFGR register fields */
#define RCC_XBAR35CFGR_XBAR35SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR35CFGR_XBAR35SEL_SHIFT 0
#define RCC_XBAR35CFGR_XBAR35EN BIT(6)
#define RCC_XBAR35CFGR_XBAR35STS BIT(7)
/* RCC_XBAR36CFGR register fields */
#define RCC_XBAR36CFGR_XBAR36SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR36CFGR_XBAR36SEL_SHIFT 0
#define RCC_XBAR36CFGR_XBAR36EN BIT(6)
#define RCC_XBAR36CFGR_XBAR36STS BIT(7)
/* RCC_XBAR37CFGR register fields */
#define RCC_XBAR37CFGR_XBAR37SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR37CFGR_XBAR37SEL_SHIFT 0
#define RCC_XBAR37CFGR_XBAR37EN BIT(6)
#define RCC_XBAR37CFGR_XBAR37STS BIT(7)
/* RCC_XBAR38CFGR register fields */
#define RCC_XBAR38CFGR_XBAR38SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR38CFGR_XBAR38SEL_SHIFT 0
#define RCC_XBAR38CFGR_XBAR38EN BIT(6)
#define RCC_XBAR38CFGR_XBAR38STS BIT(7)
/* RCC_XBAR39CFGR register fields */
#define RCC_XBAR39CFGR_XBAR39SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR39CFGR_XBAR39SEL_SHIFT 0
#define RCC_XBAR39CFGR_XBAR39EN BIT(6)
#define RCC_XBAR39CFGR_XBAR39STS BIT(7)
/* RCC_XBAR40CFGR register fields */
#define RCC_XBAR40CFGR_XBAR40SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR40CFGR_XBAR40SEL_SHIFT 0
#define RCC_XBAR40CFGR_XBAR40EN BIT(6)
#define RCC_XBAR40CFGR_XBAR40STS BIT(7)
/* RCC_XBAR41CFGR register fields */
#define RCC_XBAR41CFGR_XBAR41SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR41CFGR_XBAR41SEL_SHIFT 0
#define RCC_XBAR41CFGR_XBAR41EN BIT(6)
#define RCC_XBAR41CFGR_XBAR41STS BIT(7)
/* RCC_XBAR42CFGR register fields */
#define RCC_XBAR42CFGR_XBAR42SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR42CFGR_XBAR42SEL_SHIFT 0
#define RCC_XBAR42CFGR_XBAR42EN BIT(6)
#define RCC_XBAR42CFGR_XBAR42STS BIT(7)
/* RCC_XBAR43CFGR register fields */
#define RCC_XBAR43CFGR_XBAR43SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR43CFGR_XBAR43SEL_SHIFT 0
#define RCC_XBAR43CFGR_XBAR43EN BIT(6)
#define RCC_XBAR43CFGR_XBAR43STS BIT(7)
/* RCC_XBAR44CFGR register fields */
#define RCC_XBAR44CFGR_XBAR44SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR44CFGR_XBAR44SEL_SHIFT 0
#define RCC_XBAR44CFGR_XBAR44EN BIT(6)
#define RCC_XBAR44CFGR_XBAR44STS BIT(7)
/* RCC_XBAR45CFGR register fields */
#define RCC_XBAR45CFGR_XBAR45SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR45CFGR_XBAR45SEL_SHIFT 0
#define RCC_XBAR45CFGR_XBAR45EN BIT(6)
#define RCC_XBAR45CFGR_XBAR45STS BIT(7)
/* RCC_XBAR46CFGR register fields */
#define RCC_XBAR46CFGR_XBAR46SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR46CFGR_XBAR46SEL_SHIFT 0
#define RCC_XBAR46CFGR_XBAR46EN BIT(6)
#define RCC_XBAR46CFGR_XBAR46STS BIT(7)
/* RCC_XBAR47CFGR register fields */
#define RCC_XBAR47CFGR_XBAR47SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR47CFGR_XBAR47SEL_SHIFT 0
#define RCC_XBAR47CFGR_XBAR47EN BIT(6)
#define RCC_XBAR47CFGR_XBAR47STS BIT(7)
/* RCC_XBAR48CFGR register fields */
#define RCC_XBAR48CFGR_XBAR48SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR48CFGR_XBAR48SEL_SHIFT 0
#define RCC_XBAR48CFGR_XBAR48EN BIT(6)
#define RCC_XBAR48CFGR_XBAR48STS BIT(7)
/* RCC_XBAR49CFGR register fields */
#define RCC_XBAR49CFGR_XBAR49SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR49CFGR_XBAR49SEL_SHIFT 0
#define RCC_XBAR49CFGR_XBAR49EN BIT(6)
#define RCC_XBAR49CFGR_XBAR49STS BIT(7)
/* RCC_XBAR50CFGR register fields */
#define RCC_XBAR50CFGR_XBAR50SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR50CFGR_XBAR50SEL_SHIFT 0
#define RCC_XBAR50CFGR_XBAR50EN BIT(6)
#define RCC_XBAR50CFGR_XBAR50STS BIT(7)
/* RCC_XBAR51CFGR register fields */
#define RCC_XBAR51CFGR_XBAR51SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR51CFGR_XBAR51SEL_SHIFT 0
#define RCC_XBAR51CFGR_XBAR51EN BIT(6)
#define RCC_XBAR51CFGR_XBAR51STS BIT(7)
/* RCC_XBAR52CFGR register fields */
#define RCC_XBAR52CFGR_XBAR52SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR52CFGR_XBAR52SEL_SHIFT 0
#define RCC_XBAR52CFGR_XBAR52EN BIT(6)
#define RCC_XBAR52CFGR_XBAR52STS BIT(7)
/* RCC_XBAR53CFGR register fields */
#define RCC_XBAR53CFGR_XBAR53SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR53CFGR_XBAR53SEL_SHIFT 0
#define RCC_XBAR53CFGR_XBAR53EN BIT(6)
#define RCC_XBAR53CFGR_XBAR53STS BIT(7)
/* RCC_XBAR54CFGR register fields */
#define RCC_XBAR54CFGR_XBAR54SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR54CFGR_XBAR54SEL_SHIFT 0
#define RCC_XBAR54CFGR_XBAR54EN BIT(6)
#define RCC_XBAR54CFGR_XBAR54STS BIT(7)
/* RCC_XBAR55CFGR register fields */
#define RCC_XBAR55CFGR_XBAR55SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR55CFGR_XBAR55SEL_SHIFT 0
#define RCC_XBAR55CFGR_XBAR55EN BIT(6)
#define RCC_XBAR55CFGR_XBAR55STS BIT(7)
/* RCC_XBAR56CFGR register fields */
#define RCC_XBAR56CFGR_XBAR56SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR56CFGR_XBAR56SEL_SHIFT 0
#define RCC_XBAR56CFGR_XBAR56EN BIT(6)
#define RCC_XBAR56CFGR_XBAR56STS BIT(7)
/* RCC_XBAR57CFGR register fields */
#define RCC_XBAR57CFGR_XBAR57SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR57CFGR_XBAR57SEL_SHIFT 0
#define RCC_XBAR57CFGR_XBAR57EN BIT(6)
#define RCC_XBAR57CFGR_XBAR57STS BIT(7)
/* RCC_XBAR58CFGR register fields */
#define RCC_XBAR58CFGR_XBAR58SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR58CFGR_XBAR58SEL_SHIFT 0
#define RCC_XBAR58CFGR_XBAR58EN BIT(6)
#define RCC_XBAR58CFGR_XBAR58STS BIT(7)
/* RCC_XBAR59CFGR register fields */
#define RCC_XBAR59CFGR_XBAR59SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR59CFGR_XBAR59SEL_SHIFT 0
#define RCC_XBAR59CFGR_XBAR59EN BIT(6)
#define RCC_XBAR59CFGR_XBAR59STS BIT(7)
/* RCC_XBAR60CFGR register fields */
#define RCC_XBAR60CFGR_XBAR60SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR60CFGR_XBAR60SEL_SHIFT 0
#define RCC_XBAR60CFGR_XBAR60EN BIT(6)
#define RCC_XBAR60CFGR_XBAR60STS BIT(7)
/* RCC_XBAR61CFGR register fields */
#define RCC_XBAR61CFGR_XBAR61SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR61CFGR_XBAR61SEL_SHIFT 0
#define RCC_XBAR61CFGR_XBAR61EN BIT(6)
#define RCC_XBAR61CFGR_XBAR61STS BIT(7)
/* RCC_XBAR62CFGR register fields */
#define RCC_XBAR62CFGR_XBAR62SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR62CFGR_XBAR62SEL_SHIFT 0
#define RCC_XBAR62CFGR_XBAR62EN BIT(6)
#define RCC_XBAR62CFGR_XBAR62STS BIT(7)
/* RCC_XBAR63CFGR register fields */
#define RCC_XBAR63CFGR_XBAR63SEL_MASK GENMASK_32(3, 0)
#define RCC_XBAR63CFGR_XBAR63SEL_SHIFT 0
#define RCC_XBAR63CFGR_XBAR63EN BIT(6)
#define RCC_XBAR63CFGR_XBAR63STS BIT(7)
/* RCC_XBARxCFGR register fields */
#define RCC_XBARxCFGR_XBARxSEL_MASK GENMASK_32(3, 0)
#define RCC_XBARxCFGR_XBARxSEL_SHIFT 0
#define RCC_XBARxCFGR_XBARxEN BIT(6)
#define RCC_XBARxCFGR_XBARxSTS BIT(7)
/* RCC_PREDIV0CFGR register fields */
#define RCC_PREDIV0CFGR_PREDIV0_MASK GENMASK_32(9, 0)
#define RCC_PREDIV0CFGR_PREDIV0_SHIFT 0
/* RCC_PREDIV1CFGR register fields */
#define RCC_PREDIV1CFGR_PREDIV1_MASK GENMASK_32(9, 0)
#define RCC_PREDIV1CFGR_PREDIV1_SHIFT 0
/* RCC_PREDIV2CFGR register fields */
#define RCC_PREDIV2CFGR_PREDIV2_MASK GENMASK_32(9, 0)
#define RCC_PREDIV2CFGR_PREDIV2_SHIFT 0
/* RCC_PREDIV3CFGR register fields */
#define RCC_PREDIV3CFGR_PREDIV3_MASK GENMASK_32(9, 0)
#define RCC_PREDIV3CFGR_PREDIV3_SHIFT 0
/* RCC_PREDIV4CFGR register fields */
#define RCC_PREDIV4CFGR_PREDIV4_MASK GENMASK_32(9, 0)
#define RCC_PREDIV4CFGR_PREDIV4_SHIFT 0
/* RCC_PREDIV5CFGR register fields */
#define RCC_PREDIV5CFGR_PREDIV5_MASK GENMASK_32(9, 0)
#define RCC_PREDIV5CFGR_PREDIV5_SHIFT 0
/* RCC_PREDIV6CFGR register fields */
#define RCC_PREDIV6CFGR_PREDIV6_MASK GENMASK_32(9, 0)
#define RCC_PREDIV6CFGR_PREDIV6_SHIFT 0
/* RCC_PREDIV7CFGR register fields */
#define RCC_PREDIV7CFGR_PREDIV7_MASK GENMASK_32(9, 0)
#define RCC_PREDIV7CFGR_PREDIV7_SHIFT 0
/* RCC_PREDIV8CFGR register fields */
#define RCC_PREDIV8CFGR_PREDIV8_MASK GENMASK_32(9, 0)
#define RCC_PREDIV8CFGR_PREDIV8_SHIFT 0
/* RCC_PREDIV9CFGR register fields */
#define RCC_PREDIV9CFGR_PREDIV9_MASK GENMASK_32(9, 0)
#define RCC_PREDIV9CFGR_PREDIV9_SHIFT 0
/* RCC_PREDIV10CFGR register fields */
#define RCC_PREDIV10CFGR_PREDIV10_MASK GENMASK_32(9, 0)
#define RCC_PREDIV10CFGR_PREDIV10_SHIFT 0
/* RCC_PREDIV11CFGR register fields */
#define RCC_PREDIV11CFGR_PREDIV11_MASK GENMASK_32(9, 0)
#define RCC_PREDIV11CFGR_PREDIV11_SHIFT 0
/* RCC_PREDIV12CFGR register fields */
#define RCC_PREDIV12CFGR_PREDIV12_MASK GENMASK_32(9, 0)
#define RCC_PREDIV12CFGR_PREDIV12_SHIFT 0
/* RCC_PREDIV13CFGR register fields */
#define RCC_PREDIV13CFGR_PREDIV13_MASK GENMASK_32(9, 0)
#define RCC_PREDIV13CFGR_PREDIV13_SHIFT 0
/* RCC_PREDIV14CFGR register fields */
#define RCC_PREDIV14CFGR_PREDIV14_MASK GENMASK_32(9, 0)
#define RCC_PREDIV14CFGR_PREDIV14_SHIFT 0
/* RCC_PREDIV15CFGR register fields */
#define RCC_PREDIV15CFGR_PREDIV15_MASK GENMASK_32(9, 0)
#define RCC_PREDIV15CFGR_PREDIV15_SHIFT 0
/* RCC_PREDIV16CFGR register fields */
#define RCC_PREDIV16CFGR_PREDIV16_MASK GENMASK_32(9, 0)
#define RCC_PREDIV16CFGR_PREDIV16_SHIFT 0
/* RCC_PREDIV17CFGR register fields */
#define RCC_PREDIV17CFGR_PREDIV17_MASK GENMASK_32(9, 0)
#define RCC_PREDIV17CFGR_PREDIV17_SHIFT 0
/* RCC_PREDIV18CFGR register fields */
#define RCC_PREDIV18CFGR_PREDIV18_MASK GENMASK_32(9, 0)
#define RCC_PREDIV18CFGR_PREDIV18_SHIFT 0
/* RCC_PREDIV19CFGR register fields */
#define RCC_PREDIV19CFGR_PREDIV19_MASK GENMASK_32(9, 0)
#define RCC_PREDIV19CFGR_PREDIV19_SHIFT 0
/* RCC_PREDIV20CFGR register fields */
#define RCC_PREDIV20CFGR_PREDIV20_MASK GENMASK_32(9, 0)
#define RCC_PREDIV20CFGR_PREDIV20_SHIFT 0
/* RCC_PREDIV21CFGR register fields */
#define RCC_PREDIV21CFGR_PREDIV21_MASK GENMASK_32(9, 0)
#define RCC_PREDIV21CFGR_PREDIV21_SHIFT 0
/* RCC_PREDIV22CFGR register fields */
#define RCC_PREDIV22CFGR_PREDIV22_MASK GENMASK_32(9, 0)
#define RCC_PREDIV22CFGR_PREDIV22_SHIFT 0
/* RCC_PREDIV23CFGR register fields */
#define RCC_PREDIV23CFGR_PREDIV23_MASK GENMASK_32(9, 0)
#define RCC_PREDIV23CFGR_PREDIV23_SHIFT 0
/* RCC_PREDIV24CFGR register fields */
#define RCC_PREDIV24CFGR_PREDIV24_MASK GENMASK_32(9, 0)
#define RCC_PREDIV24CFGR_PREDIV24_SHIFT 0
/* RCC_PREDIV25CFGR register fields */
#define RCC_PREDIV25CFGR_PREDIV25_MASK GENMASK_32(9, 0)
#define RCC_PREDIV25CFGR_PREDIV25_SHIFT 0
/* RCC_PREDIV26CFGR register fields */
#define RCC_PREDIV26CFGR_PREDIV26_MASK GENMASK_32(9, 0)
#define RCC_PREDIV26CFGR_PREDIV26_SHIFT 0
/* RCC_PREDIV27CFGR register fields */
#define RCC_PREDIV27CFGR_PREDIV27_MASK GENMASK_32(9, 0)
#define RCC_PREDIV27CFGR_PREDIV27_SHIFT 0
/* RCC_PREDIV28CFGR register fields */
#define RCC_PREDIV28CFGR_PREDIV28_MASK GENMASK_32(9, 0)
#define RCC_PREDIV28CFGR_PREDIV28_SHIFT 0
/* RCC_PREDIV29CFGR register fields */
#define RCC_PREDIV29CFGR_PREDIV29_MASK GENMASK_32(9, 0)
#define RCC_PREDIV29CFGR_PREDIV29_SHIFT 0
/* RCC_PREDIV30CFGR register fields */
#define RCC_PREDIV30CFGR_PREDIV30_MASK GENMASK_32(9, 0)
#define RCC_PREDIV30CFGR_PREDIV30_SHIFT 0
/* RCC_PREDIV31CFGR register fields */
#define RCC_PREDIV31CFGR_PREDIV31_MASK GENMASK_32(9, 0)
#define RCC_PREDIV31CFGR_PREDIV31_SHIFT 0
/* RCC_PREDIV32CFGR register fields */
#define RCC_PREDIV32CFGR_PREDIV32_MASK GENMASK_32(9, 0)
#define RCC_PREDIV32CFGR_PREDIV32_SHIFT 0
/* RCC_PREDIV33CFGR register fields */
#define RCC_PREDIV33CFGR_PREDIV33_MASK GENMASK_32(9, 0)
#define RCC_PREDIV33CFGR_PREDIV33_SHIFT 0
/* RCC_PREDIV34CFGR register fields */
#define RCC_PREDIV34CFGR_PREDIV34_MASK GENMASK_32(9, 0)
#define RCC_PREDIV34CFGR_PREDIV34_SHIFT 0
/* RCC_PREDIV35CFGR register fields */
#define RCC_PREDIV35CFGR_PREDIV35_MASK GENMASK_32(9, 0)
#define RCC_PREDIV35CFGR_PREDIV35_SHIFT 0
/* RCC_PREDIV36CFGR register fields */
#define RCC_PREDIV36CFGR_PREDIV36_MASK GENMASK_32(9, 0)
#define RCC_PREDIV36CFGR_PREDIV36_SHIFT 0
/* RCC_PREDIV37CFGR register fields */
#define RCC_PREDIV37CFGR_PREDIV37_MASK GENMASK_32(9, 0)
#define RCC_PREDIV37CFGR_PREDIV37_SHIFT 0
/* RCC_PREDIV38CFGR register fields */
#define RCC_PREDIV38CFGR_PREDIV38_MASK GENMASK_32(9, 0)
#define RCC_PREDIV38CFGR_PREDIV38_SHIFT 0
/* RCC_PREDIV39CFGR register fields */
#define RCC_PREDIV39CFGR_PREDIV39_MASK GENMASK_32(9, 0)
#define RCC_PREDIV39CFGR_PREDIV39_SHIFT 0
/* RCC_PREDIV40CFGR register fields */
#define RCC_PREDIV40CFGR_PREDIV40_MASK GENMASK_32(9, 0)
#define RCC_PREDIV40CFGR_PREDIV40_SHIFT 0
/* RCC_PREDIV41CFGR register fields */
#define RCC_PREDIV41CFGR_PREDIV41_MASK GENMASK_32(9, 0)
#define RCC_PREDIV41CFGR_PREDIV41_SHIFT 0
/* RCC_PREDIV42CFGR register fields */
#define RCC_PREDIV42CFGR_PREDIV42_MASK GENMASK_32(9, 0)
#define RCC_PREDIV42CFGR_PREDIV42_SHIFT 0
/* RCC_PREDIV43CFGR register fields */
#define RCC_PREDIV43CFGR_PREDIV43_MASK GENMASK_32(9, 0)
#define RCC_PREDIV43CFGR_PREDIV43_SHIFT 0
/* RCC_PREDIV44CFGR register fields */
#define RCC_PREDIV44CFGR_PREDIV44_MASK GENMASK_32(9, 0)
#define RCC_PREDIV44CFGR_PREDIV44_SHIFT 0
/* RCC_PREDIV45CFGR register fields */
#define RCC_PREDIV45CFGR_PREDIV45_MASK GENMASK_32(9, 0)
#define RCC_PREDIV45CFGR_PREDIV45_SHIFT 0
/* RCC_PREDIV46CFGR register fields */
#define RCC_PREDIV46CFGR_PREDIV46_MASK GENMASK_32(9, 0)
#define RCC_PREDIV46CFGR_PREDIV46_SHIFT 0
/* RCC_PREDIV47CFGR register fields */
#define RCC_PREDIV47CFGR_PREDIV47_MASK GENMASK_32(9, 0)
#define RCC_PREDIV47CFGR_PREDIV47_SHIFT 0
/* RCC_PREDIV48CFGR register fields */
#define RCC_PREDIV48CFGR_PREDIV48_MASK GENMASK_32(9, 0)
#define RCC_PREDIV48CFGR_PREDIV48_SHIFT 0
/* RCC_PREDIV49CFGR register fields */
#define RCC_PREDIV49CFGR_PREDIV49_MASK GENMASK_32(9, 0)
#define RCC_PREDIV49CFGR_PREDIV49_SHIFT 0
/* RCC_PREDIV50CFGR register fields */
#define RCC_PREDIV50CFGR_PREDIV50_MASK GENMASK_32(9, 0)
#define RCC_PREDIV50CFGR_PREDIV50_SHIFT 0
/* RCC_PREDIV51CFGR register fields */
#define RCC_PREDIV51CFGR_PREDIV51_MASK GENMASK_32(9, 0)
#define RCC_PREDIV51CFGR_PREDIV51_SHIFT 0
/* RCC_PREDIV52CFGR register fields */
#define RCC_PREDIV52CFGR_PREDIV52_MASK GENMASK_32(9, 0)
#define RCC_PREDIV52CFGR_PREDIV52_SHIFT 0
/* RCC_PREDIV53CFGR register fields */
#define RCC_PREDIV53CFGR_PREDIV53_MASK GENMASK_32(9, 0)
#define RCC_PREDIV53CFGR_PREDIV53_SHIFT 0
/* RCC_PREDIV54CFGR register fields */
#define RCC_PREDIV54CFGR_PREDIV54_MASK GENMASK_32(9, 0)
#define RCC_PREDIV54CFGR_PREDIV54_SHIFT 0
/* RCC_PREDIV55CFGR register fields */
#define RCC_PREDIV55CFGR_PREDIV55_MASK GENMASK_32(9, 0)
#define RCC_PREDIV55CFGR_PREDIV55_SHIFT 0
/* RCC_PREDIV56CFGR register fields */
#define RCC_PREDIV56CFGR_PREDIV56_MASK GENMASK_32(9, 0)
#define RCC_PREDIV56CFGR_PREDIV56_SHIFT 0
/* RCC_PREDIV57CFGR register fields */
#define RCC_PREDIV57CFGR_PREDIV57_MASK GENMASK_32(9, 0)
#define RCC_PREDIV57CFGR_PREDIV57_SHIFT 0
/* RCC_PREDIV58CFGR register fields */
#define RCC_PREDIV58CFGR_PREDIV58_MASK GENMASK_32(9, 0)
#define RCC_PREDIV58CFGR_PREDIV58_SHIFT 0
/* RCC_PREDIV59CFGR register fields */
#define RCC_PREDIV59CFGR_PREDIV59_MASK GENMASK_32(9, 0)
#define RCC_PREDIV59CFGR_PREDIV59_SHIFT 0
/* RCC_PREDIV60CFGR register fields */
#define RCC_PREDIV60CFGR_PREDIV60_MASK GENMASK_32(9, 0)
#define RCC_PREDIV60CFGR_PREDIV60_SHIFT 0
/* RCC_PREDIV61CFGR register fields */
#define RCC_PREDIV61CFGR_PREDIV61_MASK GENMASK_32(9, 0)
#define RCC_PREDIV61CFGR_PREDIV61_SHIFT 0
/* RCC_PREDIV62CFGR register fields */
#define RCC_PREDIV62CFGR_PREDIV62_MASK GENMASK_32(9, 0)
#define RCC_PREDIV62CFGR_PREDIV62_SHIFT 0
/* RCC_PREDIV63CFGR register fields */
#define RCC_PREDIV63CFGR_PREDIV63_MASK GENMASK_32(9, 0)
#define RCC_PREDIV63CFGR_PREDIV63_SHIFT 0
/* RCC_PREDIVxCFGR register fields */
#define RCC_PREDIVxCFGR_PREDIVx_MASK GENMASK_32(9, 0)
#define RCC_PREDIVxCFGR_PREDIVx_SHIFT 0
/* RCC_FINDIV0CFGR register fields */
#define RCC_FINDIV0CFGR_FINDIV0_MASK GENMASK_32(5, 0)
#define RCC_FINDIV0CFGR_FINDIV0_SHIFT 0
#define RCC_FINDIV0CFGR_FINDIV0EN BIT(6)
/* RCC_FINDIV1CFGR register fields */
#define RCC_FINDIV1CFGR_FINDIV1_MASK GENMASK_32(5, 0)
#define RCC_FINDIV1CFGR_FINDIV1_SHIFT 0
#define RCC_FINDIV1CFGR_FINDIV1EN BIT(6)
/* RCC_FINDIV2CFGR register fields */
#define RCC_FINDIV2CFGR_FINDIV2_MASK GENMASK_32(5, 0)
#define RCC_FINDIV2CFGR_FINDIV2_SHIFT 0
#define RCC_FINDIV2CFGR_FINDIV2EN BIT(6)
/* RCC_FINDIV3CFGR register fields */
#define RCC_FINDIV3CFGR_FINDIV3_MASK GENMASK_32(5, 0)
#define RCC_FINDIV3CFGR_FINDIV3_SHIFT 0
#define RCC_FINDIV3CFGR_FINDIV3EN BIT(6)
/* RCC_FINDIV4CFGR register fields */
#define RCC_FINDIV4CFGR_FINDIV4_MASK GENMASK_32(5, 0)
#define RCC_FINDIV4CFGR_FINDIV4_SHIFT 0
#define RCC_FINDIV4CFGR_FINDIV4EN BIT(6)
/* RCC_FINDIV5CFGR register fields */
#define RCC_FINDIV5CFGR_FINDIV5_MASK GENMASK_32(5, 0)
#define RCC_FINDIV5CFGR_FINDIV5_SHIFT 0
#define RCC_FINDIV5CFGR_FINDIV5EN BIT(6)
/* RCC_FINDIV6CFGR register fields */
#define RCC_FINDIV6CFGR_FINDIV6_MASK GENMASK_32(5, 0)
#define RCC_FINDIV6CFGR_FINDIV6_SHIFT 0
#define RCC_FINDIV6CFGR_FINDIV6EN BIT(6)
/* RCC_FINDIV7CFGR register fields */
#define RCC_FINDIV7CFGR_FINDIV7_MASK GENMASK_32(5, 0)
#define RCC_FINDIV7CFGR_FINDIV7_SHIFT 0
#define RCC_FINDIV7CFGR_FINDIV7EN BIT(6)
/* RCC_FINDIV8CFGR register fields */
#define RCC_FINDIV8CFGR_FINDIV8_MASK GENMASK_32(5, 0)
#define RCC_FINDIV8CFGR_FINDIV8_SHIFT 0
#define RCC_FINDIV8CFGR_FINDIV8EN BIT(6)
/* RCC_FINDIV9CFGR register fields */
#define RCC_FINDIV9CFGR_FINDIV9_MASK GENMASK_32(5, 0)
#define RCC_FINDIV9CFGR_FINDIV9_SHIFT 0
#define RCC_FINDIV9CFGR_FINDIV9EN BIT(6)
/* RCC_FINDIV10CFGR register fields */
#define RCC_FINDIV10CFGR_FINDIV10_MASK GENMASK_32(5, 0)
#define RCC_FINDIV10CFGR_FINDIV10_SHIFT 0
#define RCC_FINDIV10CFGR_FINDIV10EN BIT(6)
/* RCC_FINDIV11CFGR register fields */
#define RCC_FINDIV11CFGR_FINDIV11_MASK GENMASK_32(5, 0)
#define RCC_FINDIV11CFGR_FINDIV11_SHIFT 0
#define RCC_FINDIV11CFGR_FINDIV11EN BIT(6)
/* RCC_FINDIV12CFGR register fields */
#define RCC_FINDIV12CFGR_FINDIV12_MASK GENMASK_32(5, 0)
#define RCC_FINDIV12CFGR_FINDIV12_SHIFT 0
#define RCC_FINDIV12CFGR_FINDIV12EN BIT(6)
/* RCC_FINDIV13CFGR register fields */
#define RCC_FINDIV13CFGR_FINDIV13_MASK GENMASK_32(5, 0)
#define RCC_FINDIV13CFGR_FINDIV13_SHIFT 0
#define RCC_FINDIV13CFGR_FINDIV13EN BIT(6)
/* RCC_FINDIV14CFGR register fields */
#define RCC_FINDIV14CFGR_FINDIV14_MASK GENMASK_32(5, 0)
#define RCC_FINDIV14CFGR_FINDIV14_SHIFT 0
#define RCC_FINDIV14CFGR_FINDIV14EN BIT(6)
/* RCC_FINDIV15CFGR register fields */
#define RCC_FINDIV15CFGR_FINDIV15_MASK GENMASK_32(5, 0)
#define RCC_FINDIV15CFGR_FINDIV15_SHIFT 0
#define RCC_FINDIV15CFGR_FINDIV15EN BIT(6)
/* RCC_FINDIV16CFGR register fields */
#define RCC_FINDIV16CFGR_FINDIV16_MASK GENMASK_32(5, 0)
#define RCC_FINDIV16CFGR_FINDIV16_SHIFT 0
#define RCC_FINDIV16CFGR_FINDIV16EN BIT(6)
/* RCC_FINDIV17CFGR register fields */
#define RCC_FINDIV17CFGR_FINDIV17_MASK GENMASK_32(5, 0)
#define RCC_FINDIV17CFGR_FINDIV17_SHIFT 0
#define RCC_FINDIV17CFGR_FINDIV17EN BIT(6)
/* RCC_FINDIV18CFGR register fields */
#define RCC_FINDIV18CFGR_FINDIV18_MASK GENMASK_32(5, 0)
#define RCC_FINDIV18CFGR_FINDIV18_SHIFT 0
#define RCC_FINDIV18CFGR_FINDIV18EN BIT(6)
/* RCC_FINDIV19CFGR register fields */
#define RCC_FINDIV19CFGR_FINDIV19_MASK GENMASK_32(5, 0)
#define RCC_FINDIV19CFGR_FINDIV19_SHIFT 0
#define RCC_FINDIV19CFGR_FINDIV19EN BIT(6)
/* RCC_FINDIV20CFGR register fields */
#define RCC_FINDIV20CFGR_FINDIV20_MASK GENMASK_32(5, 0)
#define RCC_FINDIV20CFGR_FINDIV20_SHIFT 0
#define RCC_FINDIV20CFGR_FINDIV20EN BIT(6)
/* RCC_FINDIV21CFGR register fields */
#define RCC_FINDIV21CFGR_FINDIV21_MASK GENMASK_32(5, 0)
#define RCC_FINDIV21CFGR_FINDIV21_SHIFT 0
#define RCC_FINDIV21CFGR_FINDIV21EN BIT(6)
/* RCC_FINDIV22CFGR register fields */
#define RCC_FINDIV22CFGR_FINDIV22_MASK GENMASK_32(5, 0)
#define RCC_FINDIV22CFGR_FINDIV22_SHIFT 0
#define RCC_FINDIV22CFGR_FINDIV22EN BIT(6)
/* RCC_FINDIV23CFGR register fields */
#define RCC_FINDIV23CFGR_FINDIV23_MASK GENMASK_32(5, 0)
#define RCC_FINDIV23CFGR_FINDIV23_SHIFT 0
#define RCC_FINDIV23CFGR_FINDIV23EN BIT(6)
/* RCC_FINDIV24CFGR register fields */
#define RCC_FINDIV24CFGR_FINDIV24_MASK GENMASK_32(5, 0)
#define RCC_FINDIV24CFGR_FINDIV24_SHIFT 0
#define RCC_FINDIV24CFGR_FINDIV24EN BIT(6)
/* RCC_FINDIV25CFGR register fields */
#define RCC_FINDIV25CFGR_FINDIV25_MASK GENMASK_32(5, 0)
#define RCC_FINDIV25CFGR_FINDIV25_SHIFT 0
#define RCC_FINDIV25CFGR_FINDIV25EN BIT(6)
/* RCC_FINDIV26CFGR register fields */
#define RCC_FINDIV26CFGR_FINDIV26_MASK GENMASK_32(5, 0)
#define RCC_FINDIV26CFGR_FINDIV26_SHIFT 0
#define RCC_FINDIV26CFGR_FINDIV26EN BIT(6)
/* RCC_FINDIV27CFGR register fields */
#define RCC_FINDIV27CFGR_FINDIV27_MASK GENMASK_32(5, 0)
#define RCC_FINDIV27CFGR_FINDIV27_SHIFT 0
#define RCC_FINDIV27CFGR_FINDIV27EN BIT(6)
/* RCC_FINDIV28CFGR register fields */
#define RCC_FINDIV28CFGR_FINDIV28_MASK GENMASK_32(5, 0)
#define RCC_FINDIV28CFGR_FINDIV28_SHIFT 0
#define RCC_FINDIV28CFGR_FINDIV28EN BIT(6)
/* RCC_FINDIV29CFGR register fields */
#define RCC_FINDIV29CFGR_FINDIV29_MASK GENMASK_32(5, 0)
#define RCC_FINDIV29CFGR_FINDIV29_SHIFT 0
#define RCC_FINDIV29CFGR_FINDIV29EN BIT(6)
/* RCC_FINDIV30CFGR register fields */
#define RCC_FINDIV30CFGR_FINDIV30_MASK GENMASK_32(5, 0)
#define RCC_FINDIV30CFGR_FINDIV30_SHIFT 0
#define RCC_FINDIV30CFGR_FINDIV30EN BIT(6)
/* RCC_FINDIV31CFGR register fields */
#define RCC_FINDIV31CFGR_FINDIV31_MASK GENMASK_32(5, 0)
#define RCC_FINDIV31CFGR_FINDIV31_SHIFT 0
#define RCC_FINDIV31CFGR_FINDIV31EN BIT(6)
/* RCC_FINDIV32CFGR register fields */
#define RCC_FINDIV32CFGR_FINDIV32_MASK GENMASK_32(5, 0)
#define RCC_FINDIV32CFGR_FINDIV32_SHIFT 0
#define RCC_FINDIV32CFGR_FINDIV32EN BIT(6)
/* RCC_FINDIV33CFGR register fields */
#define RCC_FINDIV33CFGR_FINDIV33_MASK GENMASK_32(5, 0)
#define RCC_FINDIV33CFGR_FINDIV33_SHIFT 0
#define RCC_FINDIV33CFGR_FINDIV33EN BIT(6)
/* RCC_FINDIV34CFGR register fields */
#define RCC_FINDIV34CFGR_FINDIV34_MASK GENMASK_32(5, 0)
#define RCC_FINDIV34CFGR_FINDIV34_SHIFT 0
#define RCC_FINDIV34CFGR_FINDIV34EN BIT(6)
/* RCC_FINDIV35CFGR register fields */
#define RCC_FINDIV35CFGR_FINDIV35_MASK GENMASK_32(5, 0)
#define RCC_FINDIV35CFGR_FINDIV35_SHIFT 0
#define RCC_FINDIV35CFGR_FINDIV35EN BIT(6)
/* RCC_FINDIV36CFGR register fields */
#define RCC_FINDIV36CFGR_FINDIV36_MASK GENMASK_32(5, 0)
#define RCC_FINDIV36CFGR_FINDIV36_SHIFT 0
#define RCC_FINDIV36CFGR_FINDIV36EN BIT(6)
/* RCC_FINDIV37CFGR register fields */
#define RCC_FINDIV37CFGR_FINDIV37_MASK GENMASK_32(5, 0)
#define RCC_FINDIV37CFGR_FINDIV37_SHIFT 0
#define RCC_FINDIV37CFGR_FINDIV37EN BIT(6)
/* RCC_FINDIV38CFGR register fields */
#define RCC_FINDIV38CFGR_FINDIV38_MASK GENMASK_32(5, 0)
#define RCC_FINDIV38CFGR_FINDIV38_SHIFT 0
#define RCC_FINDIV38CFGR_FINDIV38EN BIT(6)
/* RCC_FINDIV39CFGR register fields */
#define RCC_FINDIV39CFGR_FINDIV39_MASK GENMASK_32(5, 0)
#define RCC_FINDIV39CFGR_FINDIV39_SHIFT 0
#define RCC_FINDIV39CFGR_FINDIV39EN BIT(6)
/* RCC_FINDIV40CFGR register fields */
#define RCC_FINDIV40CFGR_FINDIV40_MASK GENMASK_32(5, 0)
#define RCC_FINDIV40CFGR_FINDIV40_SHIFT 0
#define RCC_FINDIV40CFGR_FINDIV40EN BIT(6)
/* RCC_FINDIV41CFGR register fields */
#define RCC_FINDIV41CFGR_FINDIV41_MASK GENMASK_32(5, 0)
#define RCC_FINDIV41CFGR_FINDIV41_SHIFT 0
#define RCC_FINDIV41CFGR_FINDIV41EN BIT(6)
/* RCC_FINDIV42CFGR register fields */
#define RCC_FINDIV42CFGR_FINDIV42_MASK GENMASK_32(5, 0)
#define RCC_FINDIV42CFGR_FINDIV42_SHIFT 0
#define RCC_FINDIV42CFGR_FINDIV42EN BIT(6)
/* RCC_FINDIV43CFGR register fields */
#define RCC_FINDIV43CFGR_FINDIV43_MASK GENMASK_32(5, 0)
#define RCC_FINDIV43CFGR_FINDIV43_SHIFT 0
#define RCC_FINDIV43CFGR_FINDIV43EN BIT(6)
/* RCC_FINDIV44CFGR register fields */
#define RCC_FINDIV44CFGR_FINDIV44_MASK GENMASK_32(5, 0)
#define RCC_FINDIV44CFGR_FINDIV44_SHIFT 0
#define RCC_FINDIV44CFGR_FINDIV44EN BIT(6)
/* RCC_FINDIV45CFGR register fields */
#define RCC_FINDIV45CFGR_FINDIV45_MASK GENMASK_32(5, 0)
#define RCC_FINDIV45CFGR_FINDIV45_SHIFT 0
#define RCC_FINDIV45CFGR_FINDIV45EN BIT(6)
/* RCC_FINDIV46CFGR register fields */
#define RCC_FINDIV46CFGR_FINDIV46_MASK GENMASK_32(5, 0)
#define RCC_FINDIV46CFGR_FINDIV46_SHIFT 0
#define RCC_FINDIV46CFGR_FINDIV46EN BIT(6)
/* RCC_FINDIV47CFGR register fields */
#define RCC_FINDIV47CFGR_FINDIV47_MASK GENMASK_32(5, 0)
#define RCC_FINDIV47CFGR_FINDIV47_SHIFT 0
#define RCC_FINDIV47CFGR_FINDIV47EN BIT(6)
/* RCC_FINDIV48CFGR register fields */
#define RCC_FINDIV48CFGR_FINDIV48_MASK GENMASK_32(5, 0)
#define RCC_FINDIV48CFGR_FINDIV48_SHIFT 0
#define RCC_FINDIV48CFGR_FINDIV48EN BIT(6)
/* RCC_FINDIV49CFGR register fields */
#define RCC_FINDIV49CFGR_FINDIV49_MASK GENMASK_32(5, 0)
#define RCC_FINDIV49CFGR_FINDIV49_SHIFT 0
#define RCC_FINDIV49CFGR_FINDIV49EN BIT(6)
/* RCC_FINDIV50CFGR register fields */
#define RCC_FINDIV50CFGR_FINDIV50_MASK GENMASK_32(5, 0)
#define RCC_FINDIV50CFGR_FINDIV50_SHIFT 0
#define RCC_FINDIV50CFGR_FINDIV50EN BIT(6)
/* RCC_FINDIV51CFGR register fields */
#define RCC_FINDIV51CFGR_FINDIV51_MASK GENMASK_32(5, 0)
#define RCC_FINDIV51CFGR_FINDIV51_SHIFT 0
#define RCC_FINDIV51CFGR_FINDIV51EN BIT(6)
/* RCC_FINDIV52CFGR register fields */
#define RCC_FINDIV52CFGR_FINDIV52_MASK GENMASK_32(5, 0)
#define RCC_FINDIV52CFGR_FINDIV52_SHIFT 0
#define RCC_FINDIV52CFGR_FINDIV52EN BIT(6)
/* RCC_FINDIV53CFGR register fields */
#define RCC_FINDIV53CFGR_FINDIV53_MASK GENMASK_32(5, 0)
#define RCC_FINDIV53CFGR_FINDIV53_SHIFT 0
#define RCC_FINDIV53CFGR_FINDIV53EN BIT(6)
/* RCC_FINDIV54CFGR register fields */
#define RCC_FINDIV54CFGR_FINDIV54_MASK GENMASK_32(5, 0)
#define RCC_FINDIV54CFGR_FINDIV54_SHIFT 0
#define RCC_FINDIV54CFGR_FINDIV54EN BIT(6)
/* RCC_FINDIV55CFGR register fields */
#define RCC_FINDIV55CFGR_FINDIV55_MASK GENMASK_32(5, 0)
#define RCC_FINDIV55CFGR_FINDIV55_SHIFT 0
#define RCC_FINDIV55CFGR_FINDIV55EN BIT(6)
/* RCC_FINDIV56CFGR register fields */
#define RCC_FINDIV56CFGR_FINDIV56_MASK GENMASK_32(5, 0)
#define RCC_FINDIV56CFGR_FINDIV56_SHIFT 0
#define RCC_FINDIV56CFGR_FINDIV56EN BIT(6)
/* RCC_FINDIV57CFGR register fields */
#define RCC_FINDIV57CFGR_FINDIV57_MASK GENMASK_32(5, 0)
#define RCC_FINDIV57CFGR_FINDIV57_SHIFT 0
#define RCC_FINDIV57CFGR_FINDIV57EN BIT(6)
/* RCC_FINDIV58CFGR register fields */
#define RCC_FINDIV58CFGR_FINDIV58_MASK GENMASK_32(5, 0)
#define RCC_FINDIV58CFGR_FINDIV58_SHIFT 0
#define RCC_FINDIV58CFGR_FINDIV58EN BIT(6)
/* RCC_FINDIV59CFGR register fields */
#define RCC_FINDIV59CFGR_FINDIV59_MASK GENMASK_32(5, 0)
#define RCC_FINDIV59CFGR_FINDIV59_SHIFT 0
#define RCC_FINDIV59CFGR_FINDIV59EN BIT(6)
/* RCC_FINDIV60CFGR register fields */
#define RCC_FINDIV60CFGR_FINDIV60_MASK GENMASK_32(5, 0)
#define RCC_FINDIV60CFGR_FINDIV60_SHIFT 0
#define RCC_FINDIV60CFGR_FINDIV60EN BIT(6)
/* RCC_FINDIV61CFGR register fields */
#define RCC_FINDIV61CFGR_FINDIV61_MASK GENMASK_32(5, 0)
#define RCC_FINDIV61CFGR_FINDIV61_SHIFT 0
#define RCC_FINDIV61CFGR_FINDIV61EN BIT(6)
/* RCC_FINDIV62CFGR register fields */
#define RCC_FINDIV62CFGR_FINDIV62_MASK GENMASK_32(5, 0)
#define RCC_FINDIV62CFGR_FINDIV62_SHIFT 0
#define RCC_FINDIV62CFGR_FINDIV62EN BIT(6)
/* RCC_FINDIV63CFGR register fields */
#define RCC_FINDIV63CFGR_FINDIV63_MASK GENMASK_32(5, 0)
#define RCC_FINDIV63CFGR_FINDIV63_SHIFT 0
#define RCC_FINDIV63CFGR_FINDIV63EN BIT(6)
/* RCC_FINDIVxCFGR register fields */
#define RCC_FINDIVxCFGR_FINDIVx_MASK GENMASK_32(5, 0)
#define RCC_FINDIVxCFGR_FINDIVx_SHIFT 0
#define RCC_FINDIVxCFGR_FINDIVxEN BIT(6)
/* RCC_FCALCOBS0CFGR register fields */
#define RCC_FCALCOBS0CFGR_CKINTSEL_MASK GENMASK_32(7, 0)
#define RCC_FCALCOBS0CFGR_CKINTSEL_SHIFT 0
#define RCC_FCALCOBS0CFGR_CKEXTSEL_MASK GENMASK_32(10, 8)
#define RCC_FCALCOBS0CFGR_CKEXTSEL_SHIFT 8
#define RCC_FCALCOBS0CFGR_FCALCCKEXTSEL BIT(15)
#define RCC_FCALCOBS0CFGR_CKOBSEXTSEL BIT(16)
#define RCC_FCALCOBS0CFGR_FCALCCKINV BIT(17)
#define RCC_FCALCOBS0CFGR_CKOBSINV BIT(18)
#define RCC_FCALCOBS0CFGR_CKOBSDIV_MASK GENMASK_32(24, 22)
#define RCC_FCALCOBS0CFGR_CKOBSDIV_SHIFT 22
#define RCC_FCALCOBS0CFGR_FCALCCKEN BIT(25)
#define RCC_FCALCOBS0CFGR_CKOBSEN BIT(26)
/* RCC_FCALCOBS1CFGR register fields */
#define RCC_FCALCOBS1CFGR_CKINTSEL_MASK GENMASK_32(7, 0)
#define RCC_FCALCOBS1CFGR_CKINTSEL_SHIFT 0
#define RCC_FCALCOBS1CFGR_CKEXTSEL_MASK GENMASK_32(10, 8)
#define RCC_FCALCOBS1CFGR_CKEXTSEL_SHIFT 8
#define RCC_FCALCOBS1CFGR_CKOBSEXTSEL BIT(16)
#define RCC_FCALCOBS1CFGR_CKOBSINV BIT(18)
#define RCC_FCALCOBS1CFGR_CKOBSDIV_MASK GENMASK_32(24, 22)
#define RCC_FCALCOBS1CFGR_CKOBSDIV_SHIFT 22
#define RCC_FCALCOBS1CFGR_CKOBSEN BIT(26)
#define RCC_FCALCOBS1CFGR_FCALCRSTN BIT(27)
/* RCC_FCALCREFCFGR register fields */
#define RCC_FCALCREFCFGR_FCALCREFCKSEL_MASK GENMASK_32(2, 0)
#define RCC_FCALCREFCFGR_FCALCREFCKSEL_SHIFT 0
/* RCC_FCALCCR1 register fields */
#define RCC_FCALCCR1_FCALCRUN BIT(0)
/* RCC_FCALCCR2 register fields */
#define RCC_FCALCCR2_FCALCMD_MASK GENMASK_32(4, 3)
#define RCC_FCALCCR2_FCALCMD_SHIFT 3
#define RCC_FCALCCR2_FCALCTWC_MASK GENMASK_32(14, 11)
#define RCC_FCALCCR2_FCALCTWC_SHIFT 11
#define RCC_FCALCCR2_FCALCTYP_MASK GENMASK_32(21, 17)
#define RCC_FCALCCR2_FCALCTYP_SHIFT 17
/* RCC_FCALCSR register fields */
#define RCC_FCALCSR_FVAL_MASK GENMASK_32(16, 0)
#define RCC_FCALCSR_FVAL_SHIFT 0
#define RCC_FCALCSR_FCALCSTS BIT(19)
/* RCC_PLL4CFGR1 register fields */
#define RCC_PLL4CFGR1_SSMODRST BIT(0)
#define RCC_PLL4CFGR1_PLLEN BIT(8)
#define RCC_PLL4CFGR1_PLLRDY BIT(24)
#define RCC_PLL4CFGR1_CKREFST BIT(28)
/* RCC_PLL4CFGR2 register fields */
#define RCC_PLL4CFGR2_FREFDIV_MASK GENMASK_32(5, 0)
#define RCC_PLL4CFGR2_FREFDIV_SHIFT 0
#define RCC_PLL4CFGR2_FBDIV_MASK GENMASK_32(27, 16)
#define RCC_PLL4CFGR2_FBDIV_SHIFT 16
/* RCC_PLL4CFGR3 register fields */
#define RCC_PLL4CFGR3_FRACIN_MASK GENMASK_32(23, 0)
#define RCC_PLL4CFGR3_FRACIN_SHIFT 0
#define RCC_PLL4CFGR3_DOWNSPREAD BIT(24)
#define RCC_PLL4CFGR3_DACEN BIT(25)
#define RCC_PLL4CFGR3_SSCGDIS BIT(26)
/* RCC_PLL4CFGR4 register fields */
#define RCC_PLL4CFGR4_DSMEN BIT(8)
#define RCC_PLL4CFGR4_FOUTPOSTDIVEN BIT(9)
#define RCC_PLL4CFGR4_BYPASS BIT(10)
/* RCC_PLL4CFGR5 register fields */
#define RCC_PLL4CFGR5_DIVVAL_MASK GENMASK_32(3, 0)
#define RCC_PLL4CFGR5_DIVVAL_SHIFT 0
#define RCC_PLL4CFGR5_SPREAD_MASK GENMASK_32(20, 16)
#define RCC_PLL4CFGR5_SPREAD_SHIFT 16
/* RCC_PLL4CFGR6 register fields */
#define RCC_PLL4CFGR6_POSTDIV1_MASK GENMASK_32(2, 0)
#define RCC_PLL4CFGR6_POSTDIV1_SHIFT 0
/* RCC_PLL4CFGR7 register fields */
#define RCC_PLL4CFGR7_POSTDIV2_MASK GENMASK_32(2, 0)
#define RCC_PLL4CFGR7_POSTDIV2_SHIFT 0
/* RCC_PLL5CFGR1 register fields */
#define RCC_PLL5CFGR1_SSMODRST BIT(0)
#define RCC_PLL5CFGR1_PLLEN BIT(8)
#define RCC_PLL5CFGR1_PLLRDY BIT(24)
#define RCC_PLL5CFGR1_CKREFST BIT(28)
/* RCC_PLL5CFGR2 register fields */
#define RCC_PLL5CFGR2_FREFDIV_MASK GENMASK_32(5, 0)
#define RCC_PLL5CFGR2_FREFDIV_SHIFT 0
#define RCC_PLL5CFGR2_FBDIV_MASK GENMASK_32(27, 16)
#define RCC_PLL5CFGR2_FBDIV_SHIFT 16
/* RCC_PLL5CFGR3 register fields */
#define RCC_PLL5CFGR3_FRACIN_MASK GENMASK_32(23, 0)
#define RCC_PLL5CFGR3_FRACIN_SHIFT 0
#define RCC_PLL5CFGR3_DOWNSPREAD BIT(24)
#define RCC_PLL5CFGR3_DACEN BIT(25)
#define RCC_PLL5CFGR3_SSCGDIS BIT(26)
/* RCC_PLL5CFGR4 register fields */
#define RCC_PLL5CFGR4_DSMEN BIT(8)
#define RCC_PLL5CFGR4_FOUTPOSTDIVEN BIT(9)
#define RCC_PLL5CFGR4_BYPASS BIT(10)
/* RCC_PLL5CFGR5 register fields */
#define RCC_PLL5CFGR5_DIVVAL_MASK GENMASK_32(3, 0)
#define RCC_PLL5CFGR5_DIVVAL_SHIFT 0
#define RCC_PLL5CFGR5_SPREAD_MASK GENMASK_32(20, 16)
#define RCC_PLL5CFGR5_SPREAD_SHIFT 16
/* RCC_PLL5CFGR6 register fields */
#define RCC_PLL5CFGR6_POSTDIV1_MASK GENMASK_32(2, 0)
#define RCC_PLL5CFGR6_POSTDIV1_SHIFT 0
/* RCC_PLL5CFGR7 register fields */
#define RCC_PLL5CFGR7_POSTDIV2_MASK GENMASK_32(2, 0)
#define RCC_PLL5CFGR7_POSTDIV2_SHIFT 0
/* RCC_PLL6CFGR1 register fields */
#define RCC_PLL6CFGR1_SSMODRST BIT(0)
#define RCC_PLL6CFGR1_PLLEN BIT(8)
#define RCC_PLL6CFGR1_PLLRDY BIT(24)
#define RCC_PLL6CFGR1_CKREFST BIT(28)
/* RCC_PLL6CFGR2 register fields */
#define RCC_PLL6CFGR2_FREFDIV_MASK GENMASK_32(5, 0)
#define RCC_PLL6CFGR2_FREFDIV_SHIFT 0
#define RCC_PLL6CFGR2_FBDIV_MASK GENMASK_32(27, 16)
#define RCC_PLL6CFGR2_FBDIV_SHIFT 16
/* RCC_PLL6CFGR3 register fields */
#define RCC_PLL6CFGR3_FRACIN_MASK GENMASK_32(23, 0)
#define RCC_PLL6CFGR3_FRACIN_SHIFT 0
#define RCC_PLL6CFGR3_DOWNSPREAD BIT(24)
#define RCC_PLL6CFGR3_DACEN BIT(25)
#define RCC_PLL6CFGR3_SSCGDIS BIT(26)
/* RCC_PLL6CFGR4 register fields */
#define RCC_PLL6CFGR4_DSMEN BIT(8)
#define RCC_PLL6CFGR4_FOUTPOSTDIVEN BIT(9)
#define RCC_PLL6CFGR4_BYPASS BIT(10)
/* RCC_PLL6CFGR5 register fields */
#define RCC_PLL6CFGR5_DIVVAL_MASK GENMASK_32(3, 0)
#define RCC_PLL6CFGR5_DIVVAL_SHIFT 0
#define RCC_PLL6CFGR5_SPREAD_MASK GENMASK_32(20, 16)
#define RCC_PLL6CFGR5_SPREAD_SHIFT 16
/* RCC_PLL6CFGR6 register fields */
#define RCC_PLL6CFGR6_POSTDIV1_MASK GENMASK_32(2, 0)
#define RCC_PLL6CFGR6_POSTDIV1_SHIFT 0
/* RCC_PLL6CFGR7 register fields */
#define RCC_PLL6CFGR7_POSTDIV2_MASK GENMASK_32(2, 0)
#define RCC_PLL6CFGR7_POSTDIV2_SHIFT 0
/* RCC_PLL7CFGR1 register fields */
#define RCC_PLL7CFGR1_SSMODRST BIT(0)
#define RCC_PLL7CFGR1_PLLEN BIT(8)
#define RCC_PLL7CFGR1_PLLRDY BIT(24)
#define RCC_PLL7CFGR1_CKREFST BIT(28)
/* RCC_PLL7CFGR2 register fields */
#define RCC_PLL7CFGR2_FREFDIV_MASK GENMASK_32(5, 0)
#define RCC_PLL7CFGR2_FREFDIV_SHIFT 0
#define RCC_PLL7CFGR2_FBDIV_MASK GENMASK_32(27, 16)
#define RCC_PLL7CFGR2_FBDIV_SHIFT 16
/* RCC_PLL7CFGR3 register fields */
#define RCC_PLL7CFGR3_FRACIN_MASK GENMASK_32(23, 0)
#define RCC_PLL7CFGR3_FRACIN_SHIFT 0
#define RCC_PLL7CFGR3_DOWNSPREAD BIT(24)
#define RCC_PLL7CFGR3_DACEN BIT(25)
#define RCC_PLL7CFGR3_SSCGDIS BIT(26)
/* RCC_PLL7CFGR4 register fields */
#define RCC_PLL7CFGR4_DSMEN BIT(8)
#define RCC_PLL7CFGR4_FOUTPOSTDIVEN BIT(9)
#define RCC_PLL7CFGR4_BYPASS BIT(10)
/* RCC_PLL7CFGR5 register fields */
#define RCC_PLL7CFGR5_DIVVAL_MASK GENMASK_32(3, 0)
#define RCC_PLL7CFGR5_DIVVAL_SHIFT 0
#define RCC_PLL7CFGR5_SPREAD_MASK GENMASK_32(20, 16)
#define RCC_PLL7CFGR5_SPREAD_SHIFT 16
/* RCC_PLL7CFGR6 register fields */
#define RCC_PLL7CFGR6_POSTDIV1_MASK GENMASK_32(2, 0)
#define RCC_PLL7CFGR6_POSTDIV1_SHIFT 0
/* RCC_PLL7CFGR7 register fields */
#define RCC_PLL7CFGR7_POSTDIV2_MASK GENMASK_32(2, 0)
#define RCC_PLL7CFGR7_POSTDIV2_SHIFT 0
/* RCC_PLL8CFGR1 register fields */
#define RCC_PLL8CFGR1_SSMODRST BIT(0)
#define RCC_PLL8CFGR1_PLLEN BIT(8)
#define RCC_PLL8CFGR1_PLLRDY BIT(24)
#define RCC_PLL8CFGR1_CKREFST BIT(28)
/* RCC_PLL8CFGR2 register fields */
#define RCC_PLL8CFGR2_FREFDIV_MASK GENMASK_32(5, 0)
#define RCC_PLL8CFGR2_FREFDIV_SHIFT 0
#define RCC_PLL8CFGR2_FBDIV_MASK GENMASK_32(27, 16)
#define RCC_PLL8CFGR2_FBDIV_SHIFT 16
/* RCC_PLL8CFGR3 register fields */
#define RCC_PLL8CFGR3_FRACIN_MASK GENMASK_32(23, 0)
#define RCC_PLL8CFGR3_FRACIN_SHIFT 0
#define RCC_PLL8CFGR3_DOWNSPREAD BIT(24)
#define RCC_PLL8CFGR3_DACEN BIT(25)
#define RCC_PLL8CFGR3_SSCGDIS BIT(26)
/* RCC_PLL8CFGR4 register fields */
#define RCC_PLL8CFGR4_DSMEN BIT(8)
#define RCC_PLL8CFGR4_FOUTPOSTDIVEN BIT(9)
#define RCC_PLL8CFGR4_BYPASS BIT(10)
/* RCC_PLL8CFGR5 register fields */
#define RCC_PLL8CFGR5_DIVVAL_MASK GENMASK_32(3, 0)
#define RCC_PLL8CFGR5_DIVVAL_SHIFT 0
#define RCC_PLL8CFGR5_SPREAD_MASK GENMASK_32(20, 16)
#define RCC_PLL8CFGR5_SPREAD_SHIFT 16
/* RCC_PLL8CFGR6 register fields */
#define RCC_PLL8CFGR6_POSTDIV1_MASK GENMASK_32(2, 0)
#define RCC_PLL8CFGR6_POSTDIV1_SHIFT 0
/* RCC_PLL8CFGR7 register fields */
#define RCC_PLL8CFGR7_POSTDIV2_MASK GENMASK_32(2, 0)
#define RCC_PLL8CFGR7_POSTDIV2_SHIFT 0
/* RCC_PLLxCFGR1 register fields */
#define RCC_PLLxCFGR1_SSMODRST BIT(0)
#define RCC_PLLxCFGR1_PLLEN BIT(8)
#define RCC_PLLxCFGR1_PLLRDY BIT(24)
#define RCC_PLLxCFGR1_CKREFST BIT(28)
/* RCC_PLLxCFGR2 register fields */
#define RCC_PLLxCFGR2_FREFDIV_MASK GENMASK_32(5, 0)
#define RCC_PLLxCFGR2_FREFDIV_SHIFT 0
#define RCC_PLLxCFGR2_FBDIV_MASK GENMASK_32(27, 16)
#define RCC_PLLxCFGR2_FBDIV_SHIFT 16
/* RCC_PLLxCFGR3 register fields */
#define RCC_PLLxCFGR3_FRACIN_MASK GENMASK_32(23, 0)
#define RCC_PLLxCFGR3_FRACIN_SHIFT 0
#define RCC_PLLxCFGR3_DOWNSPREAD BIT(24)
#define RCC_PLLxCFGR3_DACEN BIT(25)
#define RCC_PLLxCFGR3_SSCGDIS BIT(26)
/* RCC_PLLxCFGR4 register fields */
#define RCC_PLLxCFGR4_DSMEN BIT(8)
#define RCC_PLLxCFGR4_FOUTPOSTDIVEN BIT(9)
#define RCC_PLLxCFGR4_BYPASS BIT(10)
/* RCC_PLLxCFGR5 register fields */
#define RCC_PLLxCFGR5_DIVVAL_MASK GENMASK_32(3, 0)
#define RCC_PLLxCFGR5_DIVVAL_SHIFT 0
#define RCC_PLLxCFGR5_SPREAD_MASK GENMASK_32(20, 16)
#define RCC_PLLxCFGR5_SPREAD_SHIFT 16
/* RCC_PLLxCFGR6 register fields */
#define RCC_PLLxCFGR6_POSTDIV1_MASK GENMASK_32(2, 0)
#define RCC_PLLxCFGR6_POSTDIV1_SHIFT 0
/* RCC_PLLxCFGR7 register fields */
#define RCC_PLLxCFGR7_POSTDIV2_MASK GENMASK_32(2, 0)
#define RCC_PLLxCFGR7_POSTDIV2_SHIFT 0
/* RCC_VERR register fields */
#define RCC_VERR_MINREV_MASK GENMASK_32(3, 0)
#define RCC_VERR_MINREV_SHIFT 0
#define RCC_VERR_MAJREV_MASK GENMASK_32(7, 4)
#define RCC_VERR_MAJREV_SHIFT 4
#endif /* STM32MP2_RCC_H */
|