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
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
#[repr(C)]
#[doc = "Register block"]
pub struct RegisterBlock {
    design_id: DesignId,
    revision_id: RevisionId,
    product_id0: ProductId0,
    product_id1: ProductId1,
    config0_id: Config0Id,
    config1_id: Config1Id,
    config2_id: Config2Id,
    config3_id: Config3Id,
    _reserved8: [u8; 0xf8],
    ih_fc_stat0: IhFcStat0,
    ih_fc_stat1: IhFcStat1,
    ih_fc_stat2: IhFcStat2,
    ih_as_stat0: IhAsStat0,
    ih_phy_stat0: IhPhyStat0,
    ih_i2cm_stat0: IhI2cmStat0,
    ih_cec_stat0: IhCecStat0,
    ih_vp_stat0: IhVpStat0,
    ih_i2cmphy_stat0: IhI2cmphyStat0,
    ih_ahbdmaaud_stat0: IhAhbdmaaudStat0,
    _reserved18: [u8; 0x66],
    ih_decode: IhDecode,
    _reserved19: [u8; 0x0f],
    ih_mute_fc_stat0: IhMuteFcStat0,
    ih_mute_fc_stat1: IhMuteFcStat1,
    ih_mute_fc_stat2: IhMuteFcStat2,
    ih_mute_as_stat0: IhMuteAsStat0,
    ih_mute_phy_stat0: IhMutePhyStat0,
    ih_mute_i2cm_stat0: IhMuteI2cmStat0,
    ih_mute_cec_stat0: IhMuteCecStat0,
    ih_mute_vp_stat0: IhMuteVpStat0,
    ih_mute_i2cmphy_stat0: IhMuteI2cmphyStat0,
    ih_mute_ahbdmaaud_stat0: IhMuteAhbdmaaudStat0,
    _reserved29: [u8; 0x75],
    ih_mute: IhMute,
    tx_invid0: TxInvid0,
    tx_instuffing: TxInstuffing,
    tx_gydata0: TxGydata0,
    tx_gydata1: TxGydata1,
    tx_rcrdata0: TxRcrdata0,
    tx_rcrdata1: TxRcrdata1,
    tx_bcbdata0: TxBcbdata0,
    tx_bcbdata1: TxBcbdata1,
    _reserved38: [u8; 0x05f8],
    vp_status: VpStatus,
    vp_pr_cd: VpPrCd,
    vp_stuff: VpStuff,
    vp_remap: VpRemap,
    vp_conf: VpConf,
    _reserved43: [u8; 0x02],
    vp_mask: VpMask,
    _reserved44: [u8; 0x07f8],
    fc_invidconf: FcInvidconf,
    fc_inhactiv0: FcInhactiv0,
    fc_inhactiv1: FcInhactiv1,
    fc_inhblank0: FcInhblank0,
    fc_inhblank1: FcInhblank1,
    fc_invactiv0: FcInvactiv0,
    fc_invactiv1: FcInvactiv1,
    fc_invblank: FcInvblank,
    fc_hsyncindelay0: FcHsyncindelay0,
    fc_hsyncindelay1: FcHsyncindelay1,
    fc_hsyncinwidth0: FcHsyncinwidth0,
    fc_hsyncinwidth1: FcHsyncinwidth1,
    fc_vsyncindelay: FcVsyncindelay,
    fc_vsyncinwidth: FcVsyncinwidth,
    fc_infreq0: FcInfreq0,
    fc_infreq1: FcInfreq1,
    fc_infreq2: FcInfreq2,
    fc_ctrldur: FcCtrldur,
    fc_exctrldur: FcExctrldur,
    fc_exctrlspac: FcExctrlspac,
    fc_ch0pream: FcCh0pream,
    fc_ch1pream: FcCh1pream,
    fc_ch2pream: FcCh2pream,
    fc_aviconf3: FcAviconf3,
    fc_gcp: FcGcp,
    fc_aviconf0: FcAviconf0,
    fc_aviconf1: FcAviconf1,
    fc_aviconf2: FcAviconf2,
    fc_avivid: FcAvivid,
    fc_avietb: [FcAvietb; 2],
    fc_avisbb: [FcAvisbb; 2],
    fc_avielb: [FcAvielb; 2],
    fc_avisrb: [FcAvisrb; 2],
    fc_audiconf0: FcAudiconf0,
    fc_audiconf1: FcAudiconf1,
    fc_audiconf2: FcAudiconf2,
    fc_audiconf3: FcAudiconf3,
    fc_vsdieeeid2: FcVsdieeeid2,
    fc_vsdsize: FcVsdsize,
    _reserved83: [u8; 0x05],
    fc_vsdieeeid1: FcVsdieeeid1,
    fc_vsdieeeid0: FcVsdieeeid0,
    fc_vsdpayload: [FcVsdpayload; 24],
    fc_spdvendorname: [FcSpdvendorname; 8],
    fc_spdproductname: [FcSpdproductname; 16],
    fc_spddeviceinf: FcSpddeviceinf,
    fc_audsconf: FcAudsconf,
    fc_audsstat: FcAudsstat,
    fc_audsv: FcAudsv,
    fc_audsu: FcAudsu,
    fc_audschnl0: FcAudschnl0,
    fc_audschnl1: FcAudschnl1,
    fc_audschnl2: FcAudschnl2,
    fc_audschnl3: FcAudschnl3,
    fc_audschnl4: FcAudschnl4,
    fc_audschnl5: FcAudschnl5,
    fc_audschnl6: FcAudschnl6,
    fc_audschnl7: FcAudschnl7,
    fc_audschnl8: FcAudschnl8,
    _reserved102: [u8; 0x03],
    fc_ctrlqhigh: FcCtrlqhigh,
    fc_ctrlqlow: FcCtrlqlow,
    fc_acp0: FcAcp0,
    _reserved105: [u8; 0x0c],
    fc_acp16: FcAcp16,
    fc_acp15: FcAcp15,
    fc_acp14: FcAcp14,
    fc_acp13: FcAcp13,
    fc_acp12: FcAcp12,
    fc_acp11: FcAcp11,
    fc_acp10: FcAcp10,
    fc_acp9: FcAcp9,
    fc_acp8: FcAcp8,
    fc_acp7: FcAcp7,
    fc_acp6: FcAcp6,
    fc_acp5: FcAcp5,
    fc_acp4: FcAcp4,
    fc_acp3: FcAcp3,
    fc_acp2: FcAcp2,
    fc_acp1: FcAcp1,
    fc_iscr1_0: FcIscr1_0,
    fc_iscr1_16: FcIscr1_16,
    fc_iscr1_15: FcIscr1_15,
    fc_iscr1_14: FcIscr1_14,
    fc_iscr1_13: FcIscr1_13,
    fc_iscr1_12: FcIscr1_12,
    fc_iscr1_11: FcIscr1_11,
    fc_iscr1_10: FcIscr1_10,
    fc_iscr1_9: FcIscr1_9,
    fc_iscr1_8: FcIscr1_8,
    fc_iscr1_7: FcIscr1_7,
    fc_iscr1_6: FcIscr1_6,
    fc_iscr1_5: FcIscr1_5,
    fc_iscr1_4: FcIscr1_4,
    fc_iscr1_3: FcIscr1_3,
    fc_iscr1_2: FcIscr1_2,
    fc_iscr1_1: FcIscr1_1,
    fc_iscr2_15: FcIscr2_15,
    fc_iscr2_14: FcIscr2_14,
    fc_iscr2_13: FcIscr2_13,
    fc_iscr2_12: FcIscr2_12,
    fc_iscr2_11: FcIscr2_11,
    fc_iscr2_10: FcIscr2_10,
    fc_iscr2_9: FcIscr2_9,
    fc_iscr2_8: FcIscr2_8,
    fc_iscr2_7: FcIscr2_7,
    fc_iscr2_6: FcIscr2_6,
    fc_iscr2_5: FcIscr2_5,
    fc_iscr2_4: FcIscr2_4,
    fc_iscr2_3: FcIscr2_3,
    fc_iscr2_2: FcIscr2_2,
    fc_iscr2_1: FcIscr2_1,
    fc_iscr2_0: FcIscr2_0,
    fc_datauto0: FcDatauto0,
    fc_datauto1: FcDatauto1,
    fc_datauto2: FcDatauto2,
    fc_datman: FcDatman,
    fc_datauto3: FcDatauto3,
    fc_rdrb0: FcRdrb0,
    fc_rdrb1: FcRdrb1,
    fc_rdrb2: FcRdrb2,
    fc_rdrb3: FcRdrb3,
    fc_rdrb4: FcRdrb4,
    fc_rdrb5: FcRdrb5,
    fc_rdrb6: FcRdrb6,
    fc_rdrb7: FcRdrb7,
    fc_rdrb8: FcRdrb8,
    fc_rdrb9: FcRdrb9,
    fc_rdrb10: FcRdrb10,
    fc_rdrb11: FcRdrb11,
    fc_rdrb12: FcRdrb12,
    fc_rdrb13: FcRdrb13,
    _reserved173: [u8; 0x0c],
    fc_mask0: FcMask0,
    _reserved174: [u8; 0x03],
    fc_mask1: FcMask1,
    _reserved175: [u8; 0x03],
    fc_mask2: FcMask2,
    _reserved176: [u8; 0x05],
    fc_prconf: FcPrconf,
    fc_scrambler_ctrl: FcScramblerCtrl,
    fc_multistream_ctrl: FcMultistreamCtrl,
    fc_packet_tx_en: FcPacketTxEn,
    _reserved180: [u8; 0x04],
    fc_actspc_hdlr_cfg: FcActspcHdlrCfg,
    fc_invact_2d_0: FcInvact2d0,
    fc_invact_2d_1: FcInvact2d1,
    _reserved183: [u8; 0x15],
    fc_gmd_stat: FcGmdStat,
    fc_gmd_en: FcGmdEn,
    fc_gmd_up: FcGmdUp,
    fc_gmd_conf: FcGmdConf,
    fc_gmd_hb: FcGmdHb,
    fc_gmd_pb: [FcGmdPb; 28],
    _reserved189: [u8; 0x07],
    fc_amp_hb1: FcAmpHb1,
    fc_amp_hb2: FcAmpHb2,
    fc_amp_pb: [FcAmpPb; 28],
    _reserved192: [u8; 0x02],
    fc_nvbi_hb1: FcNvbiHb1,
    fc_nvbi_hb2: FcNvbiHb2,
    fc_nvbi_pb: [FcNvbiPb; 27],
    _reserved195: [u8; 0x02],
    fc_drm_up: FcDrmUp,
    fc_drm_hb: [FcDrmHb; 2],
    fc_drm_pb: [FcDrmPb; 27],
    _reserved198: [u8; 0x7b],
    fc_dbgforce: FcDbgforce,
    fc_dbgaud0ch0: FcDbgaud0ch0,
    fc_dbgaud1ch0: FcDbgaud1ch0,
    fc_dbgaud2ch0: FcDbgaud2ch0,
    fc_dbgaud0ch1: FcDbgaud0ch1,
    fc_dbgaud1ch1: FcDbgaud1ch1,
    fc_dbgaud2ch1: FcDbgaud2ch1,
    fc_dbgaud0ch2: FcDbgaud0ch2,
    fc_dbgaud1ch2: FcDbgaud1ch2,
    fc_dbgaud2ch2: FcDbgaud2ch2,
    fc_dbgaud0ch3: FcDbgaud0ch3,
    fc_dbgaud1ch3: FcDbgaud1ch3,
    fc_dbgaud2ch3: FcDbgaud2ch3,
    fc_dbgaud0ch4: FcDbgaud0ch4,
    fc_dbgaud1ch4: FcDbgaud1ch4,
    fc_dbgaud2ch4: FcDbgaud2ch4,
    fc_dbgaud0ch5: FcDbgaud0ch5,
    fc_dbgaud1ch5: FcDbgaud1ch5,
    fc_dbgaud2ch5: FcDbgaud2ch5,
    fc_dbgaud0ch6: FcDbgaud0ch6,
    fc_dbgaud1ch6: FcDbgaud1ch6,
    fc_dbgaud2ch6: FcDbgaud2ch6,
    fc_dbgaud0ch7: FcDbgaud0ch7,
    fc_dbgaud1ch7: FcDbgaud1ch7,
    fc_dbgaud2ch7: FcDbgaud2ch7,
    fc_dbgtmds: [FcDbgtmds; 3],
    _reserved224: [u8; 0x1de4],
    phy_conf0: PhyConf0,
    phy_tst0: PhyTst0,
    phy_tst1: PhyTst1,
    phy_tst2: PhyTst2,
    phy_stat0: PhyStat0,
    phy_int0: PhyInt0,
    phy_mask0: PhyMask0,
    phy_pol0: PhyPol0,
    phy_pclfreq0: PhyPclfreq0,
    phy_pclfreq1: PhyPclfreq1,
    phy_pllcfgfreq0: PhyPllcfgfreq0,
    phy_pllcfgfreq1: PhyPllcfgfreq1,
    phy_pllcfgfreq2: PhyPllcfgfreq2,
    _reserved237: [u8; 0x13],
    phy_i2cm_slave: PhyI2cmSlave,
    phy_i2cm_address: PhyI2cmAddress,
    phy_i2cm_datao_1: PhyI2cmDatao1,
    phy_i2cm_datao_0: PhyI2cmDatao0,
    phy_i2cm_datai_1: PhyI2cmDatai1,
    phy_i2cm_datai_0: PhyI2cmDatai0,
    phy_i2cm_operation: PhyI2cmOperation,
    phy_i2cm_int: PhyI2cmInt,
    phy_i2cm_ctlint: PhyI2cmCtlint,
    phy_i2cm_div: PhyI2cmDiv,
    phy_i2cm_softrstz: PhyI2cmSoftrstz,
    phy_i2cm_ss_scl_hcnt_1_addr: PhyI2cmSsSclHcnt1Addr,
    phy_i2cm_ss_scl_hcnt_0_addr: PhyI2cmSsSclHcnt0Addr,
    phy_i2cm_ss_scl_lcnt_1_addr: PhyI2cmSsSclLcnt1Addr,
    phy_i2cm_ss_scl_lcnt_0_addr: PhyI2cmSsSclLcnt0Addr,
    phy_i2cm_fs_scl_hcnt_1_addr: PhyI2cmFsSclHcnt1Addr,
    phy_i2cm_fs_scl_hcnt_0_addr: PhyI2cmFsSclHcnt0Addr,
    phy_i2cm_fs_scl_lcnt_1_addr: PhyI2cmFsSclLcnt1Addr,
    phy_i2cm_fs_scl_lcnt_0_addr: PhyI2cmFsSclLcnt0Addr,
    phy_i2cm_sda_hold: PhyI2cmSdaHold,
    jtag_phy_config: JtagPhyConfig,
    jtag_phy_tap_tck: JtagPhyTapTck,
    jtag_phy_tap_in: JtagPhyTapIn,
    jtag_phy_tap_out: JtagPhyTapOut,
    jtag_phy_addr: JtagPhyAddr,
    _reserved262: [u8; 0xc7],
    aud_conf0: AudConf0,
    aud_conf1: AudConf1,
    aud_int: AudInt,
    aud_conf2: AudConf2,
    _reserved266: [u8; 0xfc],
    aud_n1: AudN1,
    aud_n2: AudN2,
    aud_n3: AudN3,
    aud_cts1: AudCts1,
    aud_cts2: AudCts2,
    aud_cts3: AudCts3,
    aud_inputclkfs: AudInputclkfs,
    aud_cts_dither: AudCtsDither,
    _reserved274: [u8; 0xf8],
    aud_spdif0: AudSpdif0,
    aud_spdif1: AudSpdif1,
    aud_spdifint: AudSpdifint,
    aud_spdifint1: AudSpdifint1,
    aud_spdif2: AudSpdif2,
    _reserved279: [u8; 0x01fb],
    gp_conf0: GpConf0,
    gp_conf1: GpConf1,
    gp_conf2: GpConf2,
    _reserved282: [u8; 0x03],
    gp_mask: GpMask,
    _reserved283: [u8; 0xf9],
    ahb_dma_conf0: AhbDmaConf0,
    ahb_dma_start: AhbDmaStart,
    ahb_dma_stop: AhbDmaStop,
    ahb_dma_thrsld: AhbDmaThrsld,
    ahb_dma_straddr_set0: [AhbDmaStraddrSet0; 4],
    ahb_dma_stpaddr_set0: [AhbDmaStpaddrSet0; 4],
    ahb_dma_bstraddr: [AhbDmaBstraddr; 4],
    ahb_dma_mblength0: AhbDmaMblength0,
    ahb_dma_mblength1: AhbDmaMblength1,
    _reserved292: [u8; 0x02],
    ahb_dma_mask: AhbDmaMask,
    _reserved293: [u8; 0x01],
    ahb_dma_conf1: AhbDmaConf1,
    _reserved294: [u8; 0x02],
    ahb_dma_buffmask: AhbDmaBuffmask,
    _reserved295: [u8; 0x01],
    ahb_dma_mask1: AhbDmaMask1,
    ahb_dma_status: AhbDmaStatus,
    ahb_dma_conf2: AhbDmaConf2,
    _reserved298: [u8; 0x02],
    ahb_dma_straddr_set1: [AhbDmaStraddrSet1; 4],
    ahb_dma_stpaddr_set1: [AhbDmaStpaddrSet1; 4],
    _reserved300: [u8; 0x09d9],
    mc_clkdis: McClkdis,
    mc_swrstzreq: McSwrstzreq,
    mc_opctrl: McOpctrl,
    mc_flowctrl: McFlowctrl,
    mc_phyrstz: McPhyrstz,
    mc_lockonclock: McLockonclock,
    mc_heacphy_rst: McHeacphyRst,
    _reserved307: [u8; 0x01],
    mc_lockonclock_2: McLockonclock2,
    mc_swrstzreq_2: McSwrstzreq2,
    _reserved309: [u8; 0x05],
    mc_opsts: McOpsts,
    _reserved310: [u8; 0x07],
    base_sfrdivlow: BaseSfrdivlow,
    base_sfrdivhigh: BaseSfrdivhigh,
    _reserved312: [u8; 0xe6],
    csc_cfg: CscCfg,
    csc_scale: CscScale,
    csc_coef_a1_msb: CscCoefA1Msb,
    csc_coef_a1_lsb: CscCoefA1Lsb,
    csc_coef_a2_msb: CscCoefA2Msb,
    csc_coef_a2_lsb: CscCoefA2Lsb,
    csc_coef_a3_msb: CscCoefA3Msb,
    csc_coef_a3_lsb: CscCoefA3Lsb,
    csc_coef_a4_msb: CscCoefA4Msb,
    csc_coef_a4_lsb: CscCoefA4Lsb,
    csc_coef_b1_msb: CscCoefB1Msb,
    csc_coef_b1_lsb: CscCoefB1Lsb,
    csc_coef_b2_msb: CscCoefB2Msb,
    csc_coef_b2_lsb: CscCoefB2Lsb,
    csc_coef_b3_msb: CscCoefB3Msb,
    csc_coef_b3_lsb: CscCoefB3Lsb,
    csc_coef_b4_msb: CscCoefB4Msb,
    csc_coef_b4_lsb: CscCoefB4Lsb,
    csc_coef_c1_msb: CscCoefC1Msb,
    csc_coef_c1_lsb: CscCoefC1Lsb,
    csc_coef_c2_msb: CscCoefC2Msb,
    csc_coef_c2_lsb: CscCoefC2Lsb,
    csc_coef_c3_msb: CscCoefC3Msb,
    csc_coef_c3_lsb: CscCoefC3Lsb,
    csc_coef_c4_msb: CscCoefC4Msb,
    csc_coef_c4_lsb: CscCoefC4Lsb,
    csc_limit_up_msb: CscLimitUpMsb,
    csc_limit_up_lsb: CscLimitUpLsb,
    csc_limit_dn_msb: CscLimitDnMsb,
    csc_limit_dn_lsb: CscLimitDnLsb,
    _reserved342: [u8; 0x0ee2],
    a_hdcpcfg0: AHdcpcfg0,
    a_hdcpcfg1: AHdcpcfg1,
    a_hdcpobs0: AHdcpobs0,
    a_hdcpobs1: AHdcpobs1,
    a_hdcpobs2: AHdcpobs2,
    a_hdcpobs3: AHdcpobs3,
    a_apiintclr: AApiintclr,
    a_apiintstat: AApiintstat,
    a_apiintmsk: AApiintmsk,
    a_vidpolcfg: AVidpolcfg,
    a_oesswcfg: AOesswcfg,
    _reserved353: [u8; 0x09],
    a_coreverlsb: ACoreverlsb,
    a_corevermsb: ACorevermsb,
    a_ksvmemctrl: AKsvmemctrl,
    _reserved356: [u8; 0x09],
    hdcp_bstatus: [HdcpBstatus; 2],
    hdcp_m0: [HdcpM0; 8],
    hdcp_ksv: [HdcpKsv; 635],
    hdcp_vh: [HdcpVh; 20],
    hdcp_revoc_size_0: HdcpRevocSize0,
    hdcp_revoc_size_1: HdcpRevocSize1,
    hdcp_revoc_list: [HdcpRevocList; 5060],
    _reserved363: [u8; 0x1181],
    hdcpreg_bksv0: HdcpregBksv0,
    hdcpreg_bksv1: HdcpregBksv1,
    hdcpreg_bksv2: HdcpregBksv2,
    hdcpreg_bksv3: HdcpregBksv3,
    hdcpreg_bksv4: HdcpregBksv4,
    hdcpreg_anconf: HdcpregAnconf,
    hdcpreg_an0: HdcpregAn0,
    hdcpreg_an1: HdcpregAn1,
    hdcpreg_an2: HdcpregAn2,
    hdcpreg_an3: HdcpregAn3,
    hdcpreg_an4: HdcpregAn4,
    hdcpreg_an5: HdcpregAn5,
    hdcpreg_an6: HdcpregAn6,
    hdcpreg_an7: HdcpregAn7,
    hdcpreg_rmlctl: HdcpregRmlctl,
    hdcpreg_rmlsts: HdcpregRmlsts,
    hdcpreg_seed0: HdcpregSeed0,
    hdcpreg_seed1: HdcpregSeed1,
    hdcpreg_dpk0: HdcpregDpk0,
    hdcpreg_dpk1: HdcpregDpk1,
    hdcpreg_dpk2: HdcpregDpk2,
    hdcpreg_dpk3: HdcpregDpk3,
    hdcpreg_dpk4: HdcpregDpk4,
    hdcpreg_dpk5: HdcpregDpk5,
    hdcpreg_dpk6: HdcpregDpk6,
    _reserved388: [u8; 0xe7],
    hdcp22reg_id: Hdcp22regId,
    _reserved389: [u8; 0x03],
    hdcp22reg_ctrl: Hdcp22regCtrl,
    hdcp22reg_ctrl1: Hdcp22regCtrl1,
    _reserved391: [u8; 0x02],
    hdcp22reg_sts: Hdcp22regSts,
    _reserved392: [u8; 0x03],
    hdcp22reg_mask: Hdcp22regMask,
    hdcp22reg_stat: Hdcp22regStat,
    hdcp22reg_mute: Hdcp22regMute,
    _reserved395: [u8; 0x03f1],
    cec_ctrl: CecCtrl,
    _reserved396: [u8; 0x01],
    cec_mask: CecMask,
    _reserved397: [u8; 0x02],
    cec_addr_l: CecAddrL,
    cec_addr_h: CecAddrH,
    cec_tx_cnt: CecTxCnt,
    cec_rx_cnt: CecRxCnt,
    _reserved401: [u8; 0x07],
    cec_tx_data: [CecTxData; 16],
    cec_rx_data: [CecRxData; 16],
    cec_lock: CecLock,
    cec_wakeupctrl: CecWakeupctrl,
    _reserved405: [u8; 0xce],
    i2cm_slave: I2cmSlave,
    i2cm_address: I2cmAddress,
    i2cm_datao: I2cmDatao,
    i2cm_datai: I2cmDatai,
    i2cm_operation: I2cmOperation,
    i2cm_int: I2cmInt,
    i2cm_ctlint: I2cmCtlint,
    i2cm_div: I2cmDiv,
    i2cm_segaddr: I2cmSegaddr,
    i2cm_softrstz: I2cmSoftrstz,
    i2cm_segptr: I2cmSegptr,
    i2cm_ss_scl_hcnt_1_addr: I2cmSsSclHcnt1Addr,
    i2cm_ss_scl_hcnt_0_addr: I2cmSsSclHcnt0Addr,
    i2cm_ss_scl_lcnt_1_addr: I2cmSsSclLcnt1Addr,
    i2cm_ss_scl_lcnt_0_addr: I2cmSsSclLcnt0Addr,
    i2cm_fs_scl_hcnt_1_addr: I2cmFsSclHcnt1Addr,
    i2cm_fs_scl_hcnt_0_addr: I2cmFsSclHcnt0Addr,
    i2cm_fs_scl_lcnt_1_addr: I2cmFsSclLcnt1Addr,
    i2cm_fs_scl_lcnt_0_addr: I2cmFsSclLcnt0Addr,
    i2cm_sda_hold: I2cmSdaHold,
    i2cm_scdc_read_update: I2cmScdcReadUpdate,
    _reserved426: [u8; 0x0b],
    i2cm_read_buff0: I2cmReadBuff0,
    i2cm_read_buff1: I2cmReadBuff1,
    i2cm_read_buff2: I2cmReadBuff2,
    i2cm_read_buff3: I2cmReadBuff3,
    i2cm_read_buff4: I2cmReadBuff4,
    i2cm_read_buff5: I2cmReadBuff5,
    i2cm_read_buff6: I2cmReadBuff6,
    i2cm_read_buff7: I2cmReadBuff7,
    _reserved434: [u8; 0x08],
    i2cm_scdc_update0: I2cmScdcUpdate0,
    i2cm_scdc_update1: I2cmScdcUpdate1,
}
impl RegisterBlock {
    #[doc = "0x00 - Design ID code fixed by HDMI that Identifies the instantiated DWC_hdmi_tx controller. For example, DWC_hdmi_tx 2.11a, DESIGN_ID = 21"]
    #[inline(always)]
    pub const fn design_id(&self) -> &DesignId {
        &self.design_id
    }
    #[doc = "0x01 - Revision ID code fixed by HDMI that Identifies the instantiated DWC_hdmi_tx controller."]
    #[inline(always)]
    pub const fn revision_id(&self) -> &RevisionId {
        &self.revision_id
    }
    #[doc = "0x02 - This one byte fixed code Identifies HDMI 's product line (\"A0h\" for DWC_hdmi_tx products)."]
    #[inline(always)]
    pub const fn product_id0(&self) -> &ProductId0 {
        &self.product_id0
    }
    #[doc = "0x03 - This bit Identifies H Controller according to HDMI product line."]
    #[inline(always)]
    pub const fn product_id1(&self) -> &ProductId1 {
        &self.product_id1
    }
    #[doc = "0x04 - Indicates if HDCP is present"]
    #[inline(always)]
    pub const fn config0_id(&self) -> &Config0Id {
        &self.config0_id
    }
    #[doc = "0x05 - Reserved for future use."]
    #[inline(always)]
    pub const fn config1_id(&self) -> &Config1Id {
        &self.config1_id
    }
    #[doc = "0x06 - Indicates the type of PHY interface selected: 0x00: Legacy PHY (HDMI Tx PHY) 0xF2: PHY GEN2 (HDMI 3D TX PHY) 0xE2: PHY GEN2 (HDMI 3D TX PHY) + HEAC PHY 0xC2: PHY MHL COMBO (MHL+HDMI 2.0 TX PHY) 0xB2: PHY MHL COMBO (MHL+HDMI 2.0 TX PHY) + HEAC PHY 0xF3: PHY HDMI 20 (HDMI 2.0 TX PHY) 0xE3: PHY HDMI 20 (HDMI 2.0 TX PHY) + HEAC PHY 0xFE: External PHY"]
    #[inline(always)]
    pub const fn config2_id(&self) -> &Config2Id {
        &self.config2_id
    }
    #[doc = "0x07 - Indicates that the audio interface is Generic Parallel Audio (GPAUD)"]
    #[inline(always)]
    pub const fn config3_id(&self) -> &Config3Id {
        &self.config3_id
    }
    #[doc = "0x100 - Active after successful transmission of an Null packet. Due to high number of audio sample packets transmitted, this interrupt is by default masked at frame composer."]
    #[inline(always)]
    pub const fn ih_fc_stat0(&self) -> &IhFcStat0 {
        &self.ih_fc_stat0
    }
    #[doc = "0x101 - Active after successful transmission of an General Control Packet."]
    #[inline(always)]
    pub const fn ih_fc_stat1(&self) -> &IhFcStat1 {
        &self.ih_fc_stat1
    }
    #[doc = "0x102 - Frame Composer high priority packet queue descriptor overflow indication"]
    #[inline(always)]
    pub const fn ih_fc_stat2(&self) -> &IhFcStat2 {
        &self.ih_fc_stat2
    }
    #[doc = "0x103 - Audio Sampler audio FIFO full indication."]
    #[inline(always)]
    pub const fn ih_as_stat0(&self) -> &IhAsStat0 {
        &self.ih_as_stat0
    }
    #[doc = "0x104 - HDMI Hot Plug Detect indication. You may need to mask or change polarity of this interrupt after it has become active."]
    #[inline(always)]
    pub const fn ih_phy_stat0(&self) -> &IhPhyStat0 {
        &self.ih_phy_stat0
    }
    #[doc = "0x105 - I2C Master error indication"]
    #[inline(always)]
    pub const fn ih_i2cm_stat0(&self) -> &IhI2cmStat0 {
        &self.ih_i2cm_stat0
    }
    #[doc = "0x106 - CEC Done Indication"]
    #[inline(always)]
    pub const fn ih_cec_stat0(&self) -> &IhCecStat0 {
        &self.ih_cec_stat0
    }
    #[doc = "0x107 - Reserved and read as zero"]
    #[inline(always)]
    pub const fn ih_vp_stat0(&self) -> &IhVpStat0 {
        &self.ih_vp_stat0
    }
    #[doc = "0x108 - I2C Master PHY error indication"]
    #[inline(always)]
    pub const fn ih_i2cmphy_stat0(&self) -> &IhI2cmphyStat0 {
        &self.ih_i2cmphy_stat0
    }
    #[doc = "0x109 - AHB audio DMA lost ownership interrupt"]
    #[inline(always)]
    pub const fn ih_ahbdmaaud_stat0(&self) -> &IhAhbdmaaudStat0 {
        &self.ih_ahbdmaaud_stat0
    }
    #[doc = "0x170 - Interruption active at the ih_ahbdmaaud_stat0 register"]
    #[inline(always)]
    pub const fn ih_decode(&self) -> &IhDecode {
        &self.ih_decode
    }
    #[doc = "0x180 - When set to 1, mutes ih_fc_stat0\\[0\\]"]
    #[inline(always)]
    pub const fn ih_mute_fc_stat0(&self) -> &IhMuteFcStat0 {
        &self.ih_mute_fc_stat0
    }
    #[doc = "0x181 - When set to 1, mutes ih_fc_stat1\\[2\\]. Otherwise, this field is a \"spare\" bit with no associated functionality."]
    #[inline(always)]
    pub const fn ih_mute_fc_stat1(&self) -> &IhMuteFcStat1 {
        &self.ih_mute_fc_stat1
    }
    #[doc = "0x182 - When set to 1, mutes ih_fc_stat2\\[0\\]"]
    #[inline(always)]
    pub const fn ih_mute_fc_stat2(&self) -> &IhMuteFcStat2 {
        &self.ih_mute_fc_stat2
    }
    #[doc = "0x183 - When set to 1, mutes ih_as_stat0\\[0\\]"]
    #[inline(always)]
    pub const fn ih_mute_as_stat0(&self) -> &IhMuteAsStat0 {
        &self.ih_mute_as_stat0
    }
    #[doc = "0x184 - When set to 1, mutes ih_phy_stat0\\[0\\]"]
    #[inline(always)]
    pub const fn ih_mute_phy_stat0(&self) -> &IhMutePhyStat0 {
        &self.ih_mute_phy_stat0
    }
    #[doc = "0x185 - When set to 1, mutes ih_i2cm_stat0\\[0\\]"]
    #[inline(always)]
    pub const fn ih_mute_i2cm_stat0(&self) -> &IhMuteI2cmStat0 {
        &self.ih_mute_i2cm_stat0
    }
    #[doc = "0x186 - When set to 1, mutes ih_cec_stat0\\[0\\]"]
    #[inline(always)]
    pub const fn ih_mute_cec_stat0(&self) -> &IhMuteCecStat0 {
        &self.ih_mute_cec_stat0
    }
    #[doc = "0x187 - Reserved as “spare” bit with no associated functionality."]
    #[inline(always)]
    pub const fn ih_mute_vp_stat0(&self) -> &IhMuteVpStat0 {
        &self.ih_mute_vp_stat0
    }
    #[doc = "0x188 - When set to 1, mutes ih_i2cmphy_stat0\\[0\\]"]
    #[inline(always)]
    pub const fn ih_mute_i2cmphy_stat0(&self) -> &IhMuteI2cmphyStat0 {
        &self.ih_mute_i2cmphy_stat0
    }
    #[doc = "0x189 - When set to 1, mutes ih_ahbdmaaud_stat0\\[0\\]"]
    #[inline(always)]
    pub const fn ih_mute_ahbdmaaud_stat0(&self) -> &IhMuteAhbdmaaudStat0 {
        &self.ih_mute_ahbdmaaud_stat0
    }
    #[doc = "0x1ff - When set to 1, mutes the main interrupt line (where all interrupts are ORed). The sticky bit interrupts continue with their state; only the main interrupt line is muted."]
    #[inline(always)]
    pub const fn ih_mute(&self) -> &IhMute {
        &self.ih_mute
    }
    #[doc = "0x200 - Internal data enable (DE) generator enable. If data enable is not available for the input video, set this bit to one to activate the internal data enable generator. Attention: This feature only works for input video modes that have native repetition (such as, all CEA videos). No desired pixel repetition can be used with this feature because these configurations only affect the Frame Composer and not this block. The DE Generator does not work for the following conditions: Transmission of video with CEA VIC 39 Transmission of 3D video using the field alternative structure"]
    #[inline(always)]
    pub const fn tx_invid0(&self) -> &TxInvid0 {
        &self.tx_invid0
    }
    #[doc = "0x201 - 0b: When the dataen signal is low, the value in the gydata\\[15:0\\]
output is the one sampled from the corresponding input data. 1b: When the dataen signal is low, the value in the gydata\\[15:0\\]
output is given by the values in TX_GYDTA0 and TX_GYDATA1 registers."]
    #[inline(always)]
    pub const fn tx_instuffing(&self) -> &TxInstuffing {
        &self.tx_instuffing
    }
    #[doc = "0x202 - This register defines the value of gydata\\[7:0\\]
when TX_INSTUFFING\\[0\\]
(gydata_stuffing) is set to 1b."]
    #[inline(always)]
    pub const fn tx_gydata0(&self) -> &TxGydata0 {
        &self.tx_gydata0
    }
    #[doc = "0x203 - This register defines the value of gydata\\[15:8\\]
when TX_INSTUFFING\\[0\\]
(gydata_stuffing) is set to 1b."]
    #[inline(always)]
    pub const fn tx_gydata1(&self) -> &TxGydata1 {
        &self.tx_gydata1
    }
    #[doc = "0x204 - This register defines the value of rcrydata\\[7:0\\]
when TX_INSTUFFING\\[1\\]
(rcrdata_stuffing) is set to 1b."]
    #[inline(always)]
    pub const fn tx_rcrdata0(&self) -> &TxRcrdata0 {
        &self.tx_rcrdata0
    }
    #[doc = "0x205 - This register defines the value of rcrydata\\[15:8\\]
when TX_INSTUFFING\\[1\\]
(rcrdata_stuffing) is set to 1b."]
    #[inline(always)]
    pub const fn tx_rcrdata1(&self) -> &TxRcrdata1 {
        &self.tx_rcrdata1
    }
    #[doc = "0x206 - This register defines the value of bcbdata\\[7:0\\]
when TX_INSTUFFING\\[2\\]
(bcbdata_stuffing) is set to 1b."]
    #[inline(always)]
    pub const fn tx_bcbdata0(&self) -> &TxBcbdata0 {
        &self.tx_bcbdata0
    }
    #[doc = "0x207 - This register defines the value of bcbdata\\[15:8\\]
when TX_INSTUFFING\\[2\\]
(bcbdata_stuffing) is set to 1b."]
    #[inline(always)]
    pub const fn tx_bcbdata1(&self) -> &TxBcbdata1 {
        &self.tx_bcbdata1
    }
    #[doc = "0x800 - Read only register that holds the \"packing phase\" output of the Video Packetizer block."]
    #[inline(always)]
    pub const fn vp_status(&self) -> &VpStatus {
        &self.vp_status
    }
    #[doc = "0x801 - Desired pixel repetition factor configuration. The configured value sets H13T PHY PLL to multiply pixel clock by the factor in order to obtain the desired repetition clock. For the CEA modes some are already defined with pixel repetition in the input video. So for CEA modes this shall be always 0. Shall only be used if the user wants to do pixel repetition using H13TCTRL controller. The action is stated corresponding to desired_pr_factor\\[3:0\\]: 0000b: No pixel repetition (pixel sent only once) 0001b: Pixel sent two times (pixel repeated once) 0010b: Pixel sent three times 0011b: Pixel sent four times 0100b: Pixel sent five times 0101b: Pixel sent six times 0110b: Pixel sent seven times 0111b: Pixel sent eight times 1000b: Pixel sent nine times 1001b: Pixel sent 10 times Other: Reserved. Not used"]
    #[inline(always)]
    pub const fn vp_pr_cd(&self) -> &VpPrCd {
        &self.vp_pr_cd
    }
    #[doc = "0x802 - Pixel packing stuffing control. The action is stated corresponding to pp_stuffing: 0b: Pixel packing block in direct mode (input blanking data goes directly to output). 1b: Pixel packing block in stuffing mode. When \"de_rep\" goes to low the outputs are fixed to 0x00."]
    #[inline(always)]
    pub const fn vp_stuff(&self) -> &VpStuff {
        &self.vp_stuff
    }
    #[doc = "0x803 - YCC 422 remap input video size ycc422_size\\[1:0\\]
00b: YCC 422 16-bit input video (8 bits per component) 01b: YCC 422 20-bit input video (10 bits per component) 10b: YCC 422 24-bit input video (12 bits per component) 11b: Reserved. Not used"]
    #[inline(always)]
    pub const fn vp_remap(&self) -> &VpRemap {
        &self.vp_remap
    }
    #[doc = "0x804 - Video Packetizer output selection 0b: Data from pixel packing block 1b: Data from YCC422 remap block"]
    #[inline(always)]
    pub const fn vp_conf(&self) -> &VpConf {
        &self.vp_conf
    }
    #[doc = "0x807 - Reserved as “spare” bit with no associated functionality."]
    #[inline(always)]
    pub const fn vp_mask(&self) -> &VpMask {
        &self.vp_mask
    }
    #[doc = "0x1000 - Used for CEA861-D modes with fractional Vblank (for example, modes 5, 6, 7, 10, 11, 20, 21, and 22). For more modes, see the CEA861-D specification. Note: Set this field to 1 for video mode 39, although there is no Vblank oscillation. 1b: Active high"]
    #[inline(always)]
    pub const fn fc_invidconf(&self) -> &FcInvidconf {
        &self.fc_invidconf
    }
    #[doc = "0x1001 - Input video Horizontal active pixel region width. Number of Horizontal active pixels \\[0...8191\\]."]
    #[inline(always)]
    pub const fn fc_inhactiv0(&self) -> &FcInhactiv0 {
        &self.fc_inhactiv0
    }
    #[doc = "0x1002 - Input video Horizontal active pixel region width (0 .. 16383) If the configuration parameter HDMI_TX_20 = True (1), this bit field holds bit 13."]
    #[inline(always)]
    pub const fn fc_inhactiv1(&self) -> &FcInhactiv1 {
        &self.fc_inhactiv1
    }
    #[doc = "0x1003 - Input video Horizontal blanking pixel region width. Number of Horizontal blanking pixels \\[0...4095\\]."]
    #[inline(always)]
    pub const fn fc_inhblank0(&self) -> &FcInhblank0 {
        &self.fc_inhblank0
    }
    #[doc = "0x1004 - Input video Horizontal blanking pixel region width this bit field holds bits 9:8 of number of Horizontal blanking pixels."]
    #[inline(always)]
    pub const fn fc_inhblank1(&self) -> &FcInhblank1 {
        &self.fc_inhblank1
    }
    #[doc = "0x1005 - Input video Vertical active pixel region width. This bit field holds bits 7:0 of number of Vertical active pixels."]
    #[inline(always)]
    pub const fn fc_invactiv0(&self) -> &FcInvactiv0 {
        &self.fc_invactiv0
    }
    #[doc = "0x1006 - Input video Vertical active pixel region width. This bit field holds bits 9:8 of number of Vertical active pixels."]
    #[inline(always)]
    pub const fn fc_invactiv1(&self) -> &FcInvactiv1 {
        &self.fc_invactiv1
    }
    #[doc = "0x1007 - Input video Vertical blanking pixel region width. Number of Vertical blanking lines \\[0...255\\]."]
    #[inline(always)]
    pub const fn fc_invblank(&self) -> &FcInvblank {
        &self.fc_invblank
    }
    #[doc = "0x1008 - Input video Hsync active edge delay. Integer number of pixel clock cycles from \"de\" non active edge of the last \"de\" valid period \\[0...4095\\]."]
    #[inline(always)]
    pub const fn fc_hsyncindelay0(&self) -> &FcHsyncindelay0 {
        &self.fc_hsyncindelay0
    }
    #[doc = "0x1009 - Input video Horizontal active edge delay."]
    #[inline(always)]
    pub const fn fc_hsyncindelay1(&self) -> &FcHsyncindelay1 {
        &self.fc_hsyncindelay1
    }
    #[doc = "0x100a - Input video Hsync active pulse width. Integer number of pixel clock cycles \\[0...511\\]."]
    #[inline(always)]
    pub const fn fc_hsyncinwidth0(&self) -> &FcHsyncinwidth0 {
        &self.fc_hsyncinwidth0
    }
    #[doc = "0x100b - Input video Hsync active pulse width."]
    #[inline(always)]
    pub const fn fc_hsyncinwidth1(&self) -> &FcHsyncinwidth1 {
        &self.fc_hsyncinwidth1
    }
    #[doc = "0x100c - Input video Vsync active edge delay. Integer number of Hsync pulses from \"de\" non active edge of the last \"de\" valid period. \\[0...255\\]."]
    #[inline(always)]
    pub const fn fc_vsyncindelay(&self) -> &FcVsyncindelay {
        &self.fc_vsyncindelay
    }
    #[doc = "0x100d - Description: Input video Vsync active pulse width. Integer number of video lines \\[0...63\\]."]
    #[inline(always)]
    pub const fn fc_vsyncinwidth(&self) -> &FcVsyncinwidth {
        &self.fc_vsyncinwidth
    }
    #[doc = "0x100e - Video refresh rate in Hz*1E3 format. This register is provided for debug and informative purposes. The Hdmi_tx does not write any data to this register; the data written by software is not used by the Hdmi_tx."]
    #[inline(always)]
    pub const fn fc_infreq0(&self) -> &FcInfreq0 {
        &self.fc_infreq0
    }
    #[doc = "0x100f - Video refresh rate in Hz*1E3 format. This register is provided for debug and informative purposes. The Hdmi_tx does not write any data to this register; the data written by software is not used by the Hdmi_tx."]
    #[inline(always)]
    pub const fn fc_infreq1(&self) -> &FcInfreq1 {
        &self.fc_infreq1
    }
    #[doc = "0x1010 - Video refresh rate in Hz*1E3 format. This register is provided for debug and informative purposes. The Hdmi_tx does not write any data to this register; the data written by software is not used by the Hdmi_tx."]
    #[inline(always)]
    pub const fn fc_infreq2(&self) -> &FcInfreq2 {
        &self.fc_infreq2
    }
    #[doc = "0x1011 - Configuration of the control period minimum duration (minimum of 12 pixel clock cycles; refer to HDMI 1.4b specification). Integer number of pixel clocks cycles \\[0..223\\]."]
    #[inline(always)]
    pub const fn fc_ctrldur(&self) -> &FcCtrldur {
        &self.fc_ctrldur
    }
    #[doc = "0x1012 - Configuration of the extended control period minimum duration (minimum of 32 pixel clock cycles; refer to HDMI 1.4b specification). Integer number of pixel clocks cycles \\[0..223\\]."]
    #[inline(always)]
    pub const fn fc_exctrldur(&self) -> &FcExctrldur {
        &self.fc_exctrldur
    }
    #[doc = "0x1013 - Configuration of the maximum spacing between consecutive extended control periods (maximum of 50ms; refer to the applicable HDMI specification). When using the HDMI 2.0 supported features (HDMI_TX_20 = 1): generated spacing = (1/freq tmds clock)*256*512*(extctrlperiodspacing +1) else generated spacing = (1/freq tmds clock)*256*256*(extctrlperiodspacing +1)"]
    #[inline(always)]
    pub const fn fc_exctrlspac(&self) -> &FcExctrlspac {
        &self.fc_exctrlspac
    }
    #[doc = "0x1014 - When in control mode, configures 8 bits that fill the channel 0 data lines not used to transmit the preamble (for more clarification, refer to the HDMI 1.4b specification)."]
    #[inline(always)]
    pub const fn fc_ch0pream(&self) -> &FcCh0pream {
        &self.fc_ch0pream
    }
    #[doc = "0x1015 - When in control mode, configures 6 bits that fill the channel 1 data lines not used to transmit the preamble (for more clarification, refer to the HDMI 1.4b specification)."]
    #[inline(always)]
    pub const fn fc_ch1pream(&self) -> &FcCh1pream {
        &self.fc_ch1pream
    }
    #[doc = "0x1016 - When in control mode, configures 6 bits that fill the channel 2 data lines not used to transmit the preamble (for more clarification, refer to the HDMI 1.4b specification)."]
    #[inline(always)]
    pub const fn fc_ch2pream(&self) -> &FcCh2pream {
        &self.fc_ch2pream
    }
    #[doc = "0x1017 - IT content type according to CEA the specification"]
    #[inline(always)]
    pub const fn fc_aviconf3(&self) -> &FcAviconf3 {
        &self.fc_aviconf3
    }
    #[doc = "0x1018 - Value of \"clear_avmute\" in the GCP packet"]
    #[inline(always)]
    pub const fn fc_gcp(&self) -> &FcGcp {
        &self.fc_gcp
    }
    #[doc = "0x1019 - Y1,Y0 RGB or YCC indicator"]
    #[inline(always)]
    pub const fn fc_aviconf0(&self) -> &FcAviconf0 {
        &self.fc_aviconf0
    }
    #[doc = "0x101a - Active aspect ratio"]
    #[inline(always)]
    pub const fn fc_aviconf1(&self) -> &FcAviconf1 {
        &self.fc_aviconf1
    }
    #[doc = "0x101b - Non-uniform picture scaling"]
    #[inline(always)]
    pub const fn fc_aviconf2(&self) -> &FcAviconf2 {
        &self.fc_aviconf2
    }
    #[doc = "0x101c - Configures the AVI InfoFrame Video Identification code. For more information, refer to the CEA-861- E specification."]
    #[inline(always)]
    pub const fn fc_avivid(&self) -> &FcAvivid {
        &self.fc_avivid
    }
    #[doc = "0x101d - Defines the AVI InfoFrame End of Top Bar value. For more information, refer to the CEA-861-E specification."]
    #[inline(always)]
    pub const fn fc_avietb(&self, n: usize) -> &FcAvietb {
        &self.fc_avietb[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0x101d - Defines the AVI InfoFrame End of Top Bar value. For more information, refer to the CEA-861-E specification."]
    #[inline(always)]
    pub fn fc_avietb_iter(&self) -> impl Iterator<Item = &FcAvietb> {
        self.fc_avietb.iter()
    }
    #[doc = "0x101f - This register defines the AVI InfoFrame Start of Bottom Bar value. For more information, refer to the CEA-861-E specification."]
    #[inline(always)]
    pub const fn fc_avisbb(&self, n: usize) -> &FcAvisbb {
        &self.fc_avisbb[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0x101f - This register defines the AVI InfoFrame Start of Bottom Bar value. For more information, refer to the CEA-861-E specification."]
    #[inline(always)]
    pub fn fc_avisbb_iter(&self) -> impl Iterator<Item = &FcAvisbb> {
        self.fc_avisbb.iter()
    }
    #[doc = "0x1021 - This register defines the AVI InfoFrame End of Left Bar value. For more information, refer to the CEA- 861-E specification."]
    #[inline(always)]
    pub const fn fc_avielb(&self, n: usize) -> &FcAvielb {
        &self.fc_avielb[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0x1021 - This register defines the AVI InfoFrame End of Left Bar value. For more information, refer to the CEA- 861-E specification."]
    #[inline(always)]
    pub fn fc_avielb_iter(&self) -> impl Iterator<Item = &FcAvielb> {
        self.fc_avielb.iter()
    }
    #[doc = "0x1023 - This register defines the AVI InfoFrame Start of Right Bar value. For more information, refer to the CEA-861-E specification."]
    #[inline(always)]
    pub const fn fc_avisrb(&self, n: usize) -> &FcAvisrb {
        &self.fc_avisrb[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0x1023 - This register defines the AVI InfoFrame Start of Right Bar value. For more information, refer to the CEA-861-E specification."]
    #[inline(always)]
    pub fn fc_avisrb_iter(&self) -> impl Iterator<Item = &FcAvisrb> {
        self.fc_avisrb.iter()
    }
    #[doc = "0x1025 - Coding Type"]
    #[inline(always)]
    pub const fn fc_audiconf0(&self) -> &FcAudiconf0 {
        &self.fc_audiconf0
    }
    #[doc = "0x1026 - Sampling frequency"]
    #[inline(always)]
    pub const fn fc_audiconf1(&self) -> &FcAudiconf1 {
        &self.fc_audiconf1
    }
    #[doc = "0x1027 - Channel allocation"]
    #[inline(always)]
    pub const fn fc_audiconf2(&self) -> &FcAudiconf2 {
        &self.fc_audiconf2
    }
    #[doc = "0x1028 - Level shift value (for down mixing)"]
    #[inline(always)]
    pub const fn fc_audiconf3(&self) -> &FcAudiconf3 {
        &self.fc_audiconf3
    }
    #[doc = "0x1029 - This register configures the Vendor Specific InfoFrame IEEE registration identifier. For more information, refer to the CEA- 861-E specification."]
    #[inline(always)]
    pub const fn fc_vsdieeeid2(&self) -> &FcVsdieeeid2 {
        &self.fc_vsdieeeid2
    }
    #[doc = "0x102a - Packet size as described in the HDMI Vendor Specific InfoFrame (from the HDMI specification)."]
    #[inline(always)]
    pub const fn fc_vsdsize(&self) -> &FcVsdsize {
        &self.fc_vsdsize
    }
    #[doc = "0x1030 - This register configures the Vendor Specific InfoFrame IEEE registration identifier. For more information, refer to the CEA-861-E specification."]
    #[inline(always)]
    pub const fn fc_vsdieeeid1(&self) -> &FcVsdieeeid1 {
        &self.fc_vsdieeeid1
    }
    #[doc = "0x1031 - This register configures the Vendor Specific InfoFrame IEEE registration identifier. For more information, refer to the CEA-861-E specification."]
    #[inline(always)]
    pub const fn fc_vsdieeeid0(&self) -> &FcVsdieeeid0 {
        &self.fc_vsdieeeid0
    }
    #[doc = "0x1032..0x104a - Frame Composer VSI Packet Data Payload Register Array Configures the Vendor Specific infoFrame 24 bytes specific payload. For more information, refer to the CEA-861-E specification."]
    #[inline(always)]
    pub const fn fc_vsdpayload(&self, n: usize) -> &FcVsdpayload {
        &self.fc_vsdpayload[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0x1032..0x104a - Frame Composer VSI Packet Data Payload Register Array Configures the Vendor Specific infoFrame 24 bytes specific payload. For more information, refer to the CEA-861-E specification."]
    #[inline(always)]
    pub fn fc_vsdpayload_iter(&self) -> impl Iterator<Item = &FcVsdpayload> {
        self.fc_vsdpayload.iter()
    }
    #[doc = "0x104a..0x1052 - Frame Composer SPD Packet Data Vendor Name Register Array Configures the Source Product Descriptor infoFrame 8 bytes Vendor name. For more information, refer to the CEA-861-E specification."]
    #[inline(always)]
    pub const fn fc_spdvendorname(&self, n: usize) -> &FcSpdvendorname {
        &self.fc_spdvendorname[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0x104a..0x1052 - Frame Composer SPD Packet Data Vendor Name Register Array Configures the Source Product Descriptor infoFrame 8 bytes Vendor name. For more information, refer to the CEA-861-E specification."]
    #[inline(always)]
    pub fn fc_spdvendorname_iter(&self) -> impl Iterator<Item = &FcSpdvendorname> {
        self.fc_spdvendorname.iter()
    }
    #[doc = "0x1052..0x1062 - Frame Composer SPD packet Data Product Name Register Array Configures the Source Product Descriptor infoFrame 16 bytes Product name. For more information, refer to the CEA-861-E specification."]
    #[inline(always)]
    pub const fn fc_spdproductname(&self, n: usize) -> &FcSpdproductname {
        &self.fc_spdproductname[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0x1052..0x1062 - Frame Composer SPD packet Data Product Name Register Array Configures the Source Product Descriptor infoFrame 16 bytes Product name. For more information, refer to the CEA-861-E specification."]
    #[inline(always)]
    pub fn fc_spdproductname_iter(&self) -> impl Iterator<Item = &FcSpdproductname> {
        self.fc_spdproductname.iter()
    }
    #[doc = "0x1062 - Frame Composer SPD Packet Data Source Product Descriptor Register"]
    #[inline(always)]
    pub const fn fc_spddeviceinf(&self) -> &FcSpddeviceinf {
        &self.fc_spddeviceinf
    }
    #[doc = "0x1063 - Set the audio packet layout to be sent in the packet: 1b: layout 1 0b: layout 0 If HDMI_TX_20 is defined and register field fc_multistream_ctrl.fc_mas_packet_en is active, this bit has no effect."]
    #[inline(always)]
    pub const fn fc_audsconf(&self) -> &FcAudsconf {
        &self.fc_audsconf
    }
    #[doc = "0x1064 - Shows the data sample present indication of the last Audio sample packet sent by the HDMI Tx Controller. This register information is at TMDS clock rate."]
    #[inline(always)]
    pub const fn fc_audsstat(&self) -> &FcAudsstat {
        &self.fc_audsstat
    }
    #[doc = "0x1065 - Set validity bit \"V\" for Channel 0, Left"]
    #[inline(always)]
    pub const fn fc_audsv(&self) -> &FcAudsv {
        &self.fc_audsv
    }
    #[doc = "0x1066 - Set user bit \"U\" for Channel 0, Left"]
    #[inline(always)]
    pub const fn fc_audsu(&self) -> &FcAudsu {
        &self.fc_audsu
    }
    #[doc = "0x1067 - IEC Copyright indication"]
    #[inline(always)]
    pub const fn fc_audschnl0(&self) -> &FcAudschnl0 {
        &self.fc_audschnl0
    }
    #[doc = "0x1068 - Category code"]
    #[inline(always)]
    pub const fn fc_audschnl1(&self) -> &FcAudschnl1 {
        &self.fc_audschnl1
    }
    #[doc = "0x1069 - Source number"]
    #[inline(always)]
    pub const fn fc_audschnl2(&self) -> &FcAudschnl2 {
        &self.fc_audschnl2
    }
    #[doc = "0x106a - Channel number for first right sample"]
    #[inline(always)]
    pub const fn fc_audschnl3(&self) -> &FcAudschnl3 {
        &self.fc_audschnl3
    }
    #[doc = "0x106b - Channel number for third right sample"]
    #[inline(always)]
    pub const fn fc_audschnl4(&self) -> &FcAudschnl4 {
        &self.fc_audschnl4
    }
    #[doc = "0x106c - Channel number for first left sample"]
    #[inline(always)]
    pub const fn fc_audschnl5(&self) -> &FcAudschnl5 {
        &self.fc_audschnl5
    }
    #[doc = "0x106d - Channel number for third left sample"]
    #[inline(always)]
    pub const fn fc_audschnl6(&self) -> &FcAudschnl6 {
        &self.fc_audschnl6
    }
    #[doc = "0x106e - Sampling frequency"]
    #[inline(always)]
    pub const fn fc_audschnl7(&self) -> &FcAudschnl7 {
        &self.fc_audschnl7
    }
    #[doc = "0x106f - Word length configuration"]
    #[inline(always)]
    pub const fn fc_audschnl8(&self) -> &FcAudschnl8 {
        &self.fc_audschnl8
    }
    #[doc = "0x1073 - Configures the number of high priority packets or audio sample packets consecutively attended before checking low priority queue status. Valid range is from 5'd1 to 5'd31."]
    #[inline(always)]
    pub const fn fc_ctrlqhigh(&self) -> &FcCtrlqhigh {
        &self.fc_ctrlqhigh
    }
    #[doc = "0x1074 - Configures the number of low priority packets or null packets consecutively attended before checking high priority queue status or audio samples availability. Valid range is from 5'd1 to 5'd31."]
    #[inline(always)]
    pub const fn fc_ctrlqlow(&self) -> &FcCtrlqlow {
        &self.fc_ctrlqlow
    }
    #[doc = "0x1075 - Configures the ACP packet type."]
    #[inline(always)]
    pub const fn fc_acp0(&self) -> &FcAcp0 {
        &self.fc_acp0
    }
    #[doc = "0x1082 - Frame Composer ACP Packet Body Configuration Register 16"]
    #[inline(always)]
    pub const fn fc_acp16(&self) -> &FcAcp16 {
        &self.fc_acp16
    }
    #[doc = "0x1083 - Frame Composer ACP Packet Body Configuration Register 15"]
    #[inline(always)]
    pub const fn fc_acp15(&self) -> &FcAcp15 {
        &self.fc_acp15
    }
    #[doc = "0x1084 - Frame Composer ACP Packet Body Configuration Register 14"]
    #[inline(always)]
    pub const fn fc_acp14(&self) -> &FcAcp14 {
        &self.fc_acp14
    }
    #[doc = "0x1085 - Frame Composer ACP Packet Body Configuration Register 13"]
    #[inline(always)]
    pub const fn fc_acp13(&self) -> &FcAcp13 {
        &self.fc_acp13
    }
    #[doc = "0x1086 - Frame Composer ACP Packet Body Configuration Register 12"]
    #[inline(always)]
    pub const fn fc_acp12(&self) -> &FcAcp12 {
        &self.fc_acp12
    }
    #[doc = "0x1087 - Frame Composer ACP Packet Body Configuration Register 11"]
    #[inline(always)]
    pub const fn fc_acp11(&self) -> &FcAcp11 {
        &self.fc_acp11
    }
    #[doc = "0x1088 - Frame Composer ACP Packet Body Configuration Register 10"]
    #[inline(always)]
    pub const fn fc_acp10(&self) -> &FcAcp10 {
        &self.fc_acp10
    }
    #[doc = "0x1089 - Frame Composer ACP Packet Body Configuration Register 9"]
    #[inline(always)]
    pub const fn fc_acp9(&self) -> &FcAcp9 {
        &self.fc_acp9
    }
    #[doc = "0x108a - Frame Composer ACP Packet Body Configuration Register 8"]
    #[inline(always)]
    pub const fn fc_acp8(&self) -> &FcAcp8 {
        &self.fc_acp8
    }
    #[doc = "0x108b - Frame Composer ACP Packet Body Configuration Register 7"]
    #[inline(always)]
    pub const fn fc_acp7(&self) -> &FcAcp7 {
        &self.fc_acp7
    }
    #[doc = "0x108c - Frame Composer ACP Packet Body Configuration Register 6"]
    #[inline(always)]
    pub const fn fc_acp6(&self) -> &FcAcp6 {
        &self.fc_acp6
    }
    #[doc = "0x108d - Frame Composer ACP Packet Body Configuration Register 5"]
    #[inline(always)]
    pub const fn fc_acp5(&self) -> &FcAcp5 {
        &self.fc_acp5
    }
    #[doc = "0x108e - Frame Composer ACP Packet Body Configuration Register 4"]
    #[inline(always)]
    pub const fn fc_acp4(&self) -> &FcAcp4 {
        &self.fc_acp4
    }
    #[doc = "0x108f - Frame Composer ACP Packet Body Configuration Register 3"]
    #[inline(always)]
    pub const fn fc_acp3(&self) -> &FcAcp3 {
        &self.fc_acp3
    }
    #[doc = "0x1090 - Frame Composer ACP Packet Body Configuration Register 2"]
    #[inline(always)]
    pub const fn fc_acp2(&self) -> &FcAcp2 {
        &self.fc_acp2
    }
    #[doc = "0x1091 - Frame Composer ACP Packet Body Configuration Register 1"]
    #[inline(always)]
    pub const fn fc_acp1(&self) -> &FcAcp1 {
        &self.fc_acp1
    }
    #[doc = "0x1092 - ISRC1 Indication of packet continuation (ISRC2 will be transmitted)"]
    #[inline(always)]
    pub const fn fc_iscr1_0(&self) -> &FcIscr1_0 {
        &self.fc_iscr1_0
    }
    #[doc = "0x1093 - Frame Composer ISRC1 Packet Body Register 16; configures ISRC1 packet body of the ISRC1 packet"]
    #[inline(always)]
    pub const fn fc_iscr1_16(&self) -> &FcIscr1_16 {
        &self.fc_iscr1_16
    }
    #[doc = "0x1094 - Frame Composer ISRC1 Packet Body Register 15"]
    #[inline(always)]
    pub const fn fc_iscr1_15(&self) -> &FcIscr1_15 {
        &self.fc_iscr1_15
    }
    #[doc = "0x1095 - Frame Composer ISRC1 Packet Body Register 14"]
    #[inline(always)]
    pub const fn fc_iscr1_14(&self) -> &FcIscr1_14 {
        &self.fc_iscr1_14
    }
    #[doc = "0x1096 - Frame Composer ISRC1 Packet Body Register 13"]
    #[inline(always)]
    pub const fn fc_iscr1_13(&self) -> &FcIscr1_13 {
        &self.fc_iscr1_13
    }
    #[doc = "0x1097 - Frame Composer ISRC1 Packet Body Register 12"]
    #[inline(always)]
    pub const fn fc_iscr1_12(&self) -> &FcIscr1_12 {
        &self.fc_iscr1_12
    }
    #[doc = "0x1098 - Frame Composer ISRC1 Packet Body Register 11"]
    #[inline(always)]
    pub const fn fc_iscr1_11(&self) -> &FcIscr1_11 {
        &self.fc_iscr1_11
    }
    #[doc = "0x1099 - Frame Composer ISRC1 Packet Body Register 10"]
    #[inline(always)]
    pub const fn fc_iscr1_10(&self) -> &FcIscr1_10 {
        &self.fc_iscr1_10
    }
    #[doc = "0x109a - Frame Composer ISRC1 Packet Body Register 9"]
    #[inline(always)]
    pub const fn fc_iscr1_9(&self) -> &FcIscr1_9 {
        &self.fc_iscr1_9
    }
    #[doc = "0x109b - Frame Composer ISRC1 Packet Body Register 8"]
    #[inline(always)]
    pub const fn fc_iscr1_8(&self) -> &FcIscr1_8 {
        &self.fc_iscr1_8
    }
    #[doc = "0x109c - Frame Composer ISRC1 Packet Body Register 7"]
    #[inline(always)]
    pub const fn fc_iscr1_7(&self) -> &FcIscr1_7 {
        &self.fc_iscr1_7
    }
    #[doc = "0x109d - Frame Composer ISRC1 Packet Body Register 6"]
    #[inline(always)]
    pub const fn fc_iscr1_6(&self) -> &FcIscr1_6 {
        &self.fc_iscr1_6
    }
    #[doc = "0x109e - Frame Composer ISRC1 Packet Body Register 5"]
    #[inline(always)]
    pub const fn fc_iscr1_5(&self) -> &FcIscr1_5 {
        &self.fc_iscr1_5
    }
    #[doc = "0x109f - Frame Composer ISRC1 Packet Body Register 4"]
    #[inline(always)]
    pub const fn fc_iscr1_4(&self) -> &FcIscr1_4 {
        &self.fc_iscr1_4
    }
    #[doc = "0x10a0 - Frame Composer ISRC1 Packet Body Register 3"]
    #[inline(always)]
    pub const fn fc_iscr1_3(&self) -> &FcIscr1_3 {
        &self.fc_iscr1_3
    }
    #[doc = "0x10a1 - Frame Composer ISRC1 Packet Body Register 2"]
    #[inline(always)]
    pub const fn fc_iscr1_2(&self) -> &FcIscr1_2 {
        &self.fc_iscr1_2
    }
    #[doc = "0x10a2 - Frame Composer ISRC1 Packet Body Register 1"]
    #[inline(always)]
    pub const fn fc_iscr1_1(&self) -> &FcIscr1_1 {
        &self.fc_iscr1_1
    }
    #[doc = "0x10a3 - Frame Composer ISRC2 Packet Body Register 15; configures the ISRC2 packet body of the ISRC2 packet"]
    #[inline(always)]
    pub const fn fc_iscr2_15(&self) -> &FcIscr2_15 {
        &self.fc_iscr2_15
    }
    #[doc = "0x10a4 - Frame Composer ISRC2 Packet Body Register 14"]
    #[inline(always)]
    pub const fn fc_iscr2_14(&self) -> &FcIscr2_14 {
        &self.fc_iscr2_14
    }
    #[doc = "0x10a5 - Frame Composer ISRC2 Packet Body Register 13"]
    #[inline(always)]
    pub const fn fc_iscr2_13(&self) -> &FcIscr2_13 {
        &self.fc_iscr2_13
    }
    #[doc = "0x10a6 - Frame Composer ISRC2 Packet Body Register 12"]
    #[inline(always)]
    pub const fn fc_iscr2_12(&self) -> &FcIscr2_12 {
        &self.fc_iscr2_12
    }
    #[doc = "0x10a7 - Frame Composer ISRC2 Packet Body Register 11"]
    #[inline(always)]
    pub const fn fc_iscr2_11(&self) -> &FcIscr2_11 {
        &self.fc_iscr2_11
    }
    #[doc = "0x10a8 - Frame Composer ISRC2 Packet Body Register 10"]
    #[inline(always)]
    pub const fn fc_iscr2_10(&self) -> &FcIscr2_10 {
        &self.fc_iscr2_10
    }
    #[doc = "0x10a9 - Frame Composer ISRC2 Packet Body Register 9"]
    #[inline(always)]
    pub const fn fc_iscr2_9(&self) -> &FcIscr2_9 {
        &self.fc_iscr2_9
    }
    #[doc = "0x10aa - Frame Composer ISRC2 Packet Body Register 8"]
    #[inline(always)]
    pub const fn fc_iscr2_8(&self) -> &FcIscr2_8 {
        &self.fc_iscr2_8
    }
    #[doc = "0x10ab - Frame Composer ISRC2 Packet Body Register 7"]
    #[inline(always)]
    pub const fn fc_iscr2_7(&self) -> &FcIscr2_7 {
        &self.fc_iscr2_7
    }
    #[doc = "0x10ac - Frame Composer ISRC2 Packet Body Register 6"]
    #[inline(always)]
    pub const fn fc_iscr2_6(&self) -> &FcIscr2_6 {
        &self.fc_iscr2_6
    }
    #[doc = "0x10ad - Frame Composer ISRC2 Packet Body Register 5"]
    #[inline(always)]
    pub const fn fc_iscr2_5(&self) -> &FcIscr2_5 {
        &self.fc_iscr2_5
    }
    #[doc = "0x10ae - Frame Composer ISRC2 Packet Body Register 4"]
    #[inline(always)]
    pub const fn fc_iscr2_4(&self) -> &FcIscr2_4 {
        &self.fc_iscr2_4
    }
    #[doc = "0x10af - Frame Composer ISRC2 Packet Body Register 3"]
    #[inline(always)]
    pub const fn fc_iscr2_3(&self) -> &FcIscr2_3 {
        &self.fc_iscr2_3
    }
    #[doc = "0x10b0 - Frame Composer ISRC2 Packet Body Register 2"]
    #[inline(always)]
    pub const fn fc_iscr2_2(&self) -> &FcIscr2_2 {
        &self.fc_iscr2_2
    }
    #[doc = "0x10b1 - Frame Composer ISRC2 Packet Body Register 1"]
    #[inline(always)]
    pub const fn fc_iscr2_1(&self) -> &FcIscr2_1 {
        &self.fc_iscr2_1
    }
    #[doc = "0x10b2 - Frame Composer ISRC2 Packet Body Register 0"]
    #[inline(always)]
    pub const fn fc_iscr2_0(&self) -> &FcIscr2_0 {
        &self.fc_iscr2_0
    }
    #[doc = "0x10b3 - Enables ACP automatic packet scheduling"]
    #[inline(always)]
    pub const fn fc_datauto0(&self) -> &FcDatauto0 {
        &self.fc_datauto0
    }
    #[doc = "0x10b4 - Packet frame interpolation for automatic packet scheduling"]
    #[inline(always)]
    pub const fn fc_datauto1(&self) -> &FcDatauto1 {
        &self.fc_datauto1
    }
    #[doc = "0x10b5 - Packets line spacing, for automatic packet scheduling"]
    #[inline(always)]
    pub const fn fc_datauto2(&self) -> &FcDatauto2 {
        &self.fc_datauto2
    }
    #[doc = "0x10b6 - ACP packet"]
    #[inline(always)]
    pub const fn fc_datman(&self) -> &FcDatman {
        &self.fc_datman
    }
    #[doc = "0x10b7 - Enables ACR packet insertion"]
    #[inline(always)]
    pub const fn fc_datauto3(&self) -> &FcDatauto3 {
        &self.fc_datauto3
    }
    #[doc = "0x10b8 - ACR Frame interpolation"]
    #[inline(always)]
    pub const fn fc_rdrb0(&self) -> &FcRdrb0 {
        &self.fc_rdrb0
    }
    #[doc = "0x10b9 - ACR packet line spacing"]
    #[inline(always)]
    pub const fn fc_rdrb1(&self) -> &FcRdrb1 {
        &self.fc_rdrb1
    }
    #[doc = "0x10ba - Audio frame interpolation"]
    #[inline(always)]
    pub const fn fc_rdrb2(&self) -> &FcRdrb2 {
        &self.fc_rdrb2
    }
    #[doc = "0x10bb - Audio packets line spacing"]
    #[inline(always)]
    pub const fn fc_rdrb3(&self) -> &FcRdrb3 {
        &self.fc_rdrb3
    }
    #[doc = "0x10bc - Frames interpolated between GCP packets"]
    #[inline(always)]
    pub const fn fc_rdrb4(&self) -> &FcRdrb4 {
        &self.fc_rdrb4
    }
    #[doc = "0x10bd - GCP packets line spacing"]
    #[inline(always)]
    pub const fn fc_rdrb5(&self) -> &FcRdrb5 {
        &self.fc_rdrb5
    }
    #[doc = "0x10be - Frames interpolated between AVI packets"]
    #[inline(always)]
    pub const fn fc_rdrb6(&self) -> &FcRdrb6 {
        &self.fc_rdrb6
    }
    #[doc = "0x10bf - AVI packets line spacing"]
    #[inline(always)]
    pub const fn fc_rdrb7(&self) -> &FcRdrb7 {
        &self.fc_rdrb7
    }
    #[doc = "0x10c0 - AMP frame interpolation"]
    #[inline(always)]
    pub const fn fc_rdrb8(&self) -> &FcRdrb8 {
        &self.fc_rdrb8
    }
    #[doc = "0x10c1 - AMP packets line spacing"]
    #[inline(always)]
    pub const fn fc_rdrb9(&self) -> &FcRdrb9 {
        &self.fc_rdrb9
    }
    #[doc = "0x10c2 - NTSC VBI frame interpolation"]
    #[inline(always)]
    pub const fn fc_rdrb10(&self) -> &FcRdrb10 {
        &self.fc_rdrb10
    }
    #[doc = "0x10c3 - NTSC VBI packets line spacing"]
    #[inline(always)]
    pub const fn fc_rdrb11(&self) -> &FcRdrb11 {
        &self.fc_rdrb11
    }
    #[doc = "0x10c4 - Description: DRM frame interpolation"]
    #[inline(always)]
    pub const fn fc_rdrb12(&self) -> &FcRdrb12 {
        &self.fc_rdrb12
    }
    #[doc = "0x10c5 - DRM packets line spacing"]
    #[inline(always)]
    pub const fn fc_rdrb13(&self) -> &FcRdrb13 {
        &self.fc_rdrb13
    }
    #[doc = "0x10d2 - Mask bit for FC_INT0.NULL interrupt bit"]
    #[inline(always)]
    pub const fn fc_mask0(&self) -> &FcMask0 {
        &self.fc_mask0
    }
    #[doc = "0x10d6 - Mask bit for FC_INT1.GCP interrupt bit"]
    #[inline(always)]
    pub const fn fc_mask1(&self) -> &FcMask1 {
        &self.fc_mask1
    }
    #[doc = "0x10da - Mask bit for FC_INT2.HighPriority_overflow interrupt bit"]
    #[inline(always)]
    pub const fn fc_mask2(&self) -> &FcMask2 {
        &self.fc_mask2
    }
    #[doc = "0x10e0 - Configures the video pixel repetition ratio to be sent on the AVI InfoFrame. This value must be valid according to the HDMI specification. The output_pr_factor = incoming_pr_factor * (desired_pr_factor + 1) – 1. output_pr_factor\\[3:0\\]
0000b: No action. Not used. 0001b: Pixel sent two times (pixel repeated once) 0010b: Pixel sent three times 0011b: Pixel sent four times 0100b: Pixel sent five times 0101b: Pixel sent six times 0110b: Pixel sent seven times 0111b: Pixel sent eight times 1000b: Pixel sent nine times 1001b: Pixel sent 10 times Other: Reserved. Not used Note: When working in YCC422 video, the actual repetition of the stream is Incoming_pr_factor * (desired_pr_factor + 1). This calculation is done internally in the H13TCTRL and no hardware overflow protection is available. Care must be taken to avoid this result passes the maximum number of 10 pixels repeated because no HDMI support is available for this in the specification and the H13TPHY does not support this higher repetition values."]
    #[inline(always)]
    pub const fn fc_prconf(&self) -> &FcPrconf {
        &self.fc_prconf
    }
    #[doc = "0x10e1 - When set (1'b1), this field activates the HDMI 2.0 scrambler feature. When disabled (1'b0) the scrambler feature is bypassed, placing Hdmi_tx in HDMI 1.4b compatible mode. To activate the scrambler feature, you must ensure that the quasi- static configuration bit fc_invidconf.HDCP_keepout is set (1'b1) at configuration time, before the required mc_swrstzreq.tmdsswrst_req reset request is issued. This is field can be changed in runtime."]
    #[inline(always)]
    pub const fn fc_scrambler_ctrl(&self) -> &FcScramblerCtrl {
        &self.fc_scrambler_ctrl
    }
    #[doc = "0x10e2 - This field, when set (1'b1), activates the HDMI 2.0 Multi- Stream support. The audio stream present at the input of the Hdmi_tx controller is transported using Multi-Stream Audio Sample Packets."]
    #[inline(always)]
    pub const fn fc_multistream_ctrl(&self) -> &FcMultistreamCtrl {
        &self.fc_multistream_ctrl
    }
    #[doc = "0x10e3 - ACR packet transmission control 1b: Transmission enabled 0b: Transmission disabled"]
    #[inline(always)]
    pub const fn fc_packet_tx_en(&self) -> &FcPacketTxEn {
        &self.fc_packet_tx_en
    }
    #[doc = "0x10e8 - Active Space Handler Control 1b: Fixed active space value mode enabled. During active space, a fixed value of 0xAA is applied to all TMDS channels. 0b: Fixed active space value mode disabled"]
    #[inline(always)]
    pub const fn fc_actspc_hdlr_cfg(&self) -> &FcActspcHdlrCfg {
        &self.fc_actspc_hdlr_cfg
    }
    #[doc = "0x10e9 - 2D Input video vertical active pixel region width. Number of 2D video vertical active lines \\[7:0\\]."]
    #[inline(always)]
    pub const fn fc_invact_2d_0(&self) -> &FcInvact2d0 {
        &self.fc_invact_2d_0
    }
    #[doc = "0x10ea - 2D Input video vertical active pixel region width. Number of 2D video vertical active lines \\[11:8\\]."]
    #[inline(always)]
    pub const fn fc_invact_2d_1(&self) -> &FcInvact2d1 {
        &self.fc_invact_2d_1
    }
    #[doc = "0x1100 - Gamut scheduling: Current Gamut packet sequence number"]
    #[inline(always)]
    pub const fn fc_gmd_stat(&self) -> &FcGmdStat {
        &self.fc_gmd_stat
    }
    #[doc = "0x1101 - Gamut Metadata packet transmission enable (1b)"]
    #[inline(always)]
    pub const fn fc_gmd_en(&self) -> &FcGmdEn {
        &self.fc_gmd_en
    }
    #[doc = "0x1102 - Gamut Metadata packet update"]
    #[inline(always)]
    pub const fn fc_gmd_up(&self) -> &FcGmdUp {
        &self.fc_gmd_up
    }
    #[doc = "0x1103 - Number of line spacing between the transmitted GMD packets"]
    #[inline(always)]
    pub const fn fc_gmd_conf(&self) -> &FcGmdConf {
        &self.fc_gmd_conf
    }
    #[doc = "0x1104 - Affected gamut sequence number"]
    #[inline(always)]
    pub const fn fc_gmd_hb(&self) -> &FcGmdHb {
        &self.fc_gmd_hb
    }
    #[doc = "0x1105..0x1121 - Frame Composer GMD Packet Body Register Array"]
    #[inline(always)]
    pub const fn fc_gmd_pb(&self, n: usize) -> &FcGmdPb {
        &self.fc_gmd_pb[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0x1105..0x1121 - Frame Composer GMD Packet Body Register Array"]
    #[inline(always)]
    pub fn fc_gmd_pb_iter(&self) -> impl Iterator<Item = &FcGmdPb> {
        self.fc_gmd_pb.iter()
    }
    #[doc = "0x1128 - Frame Composer AMP Packet Header Register 1"]
    #[inline(always)]
    pub const fn fc_amp_hb1(&self) -> &FcAmpHb1 {
        &self.fc_amp_hb1
    }
    #[doc = "0x1129 - Frame Composer AMP Packet Header Register 2"]
    #[inline(always)]
    pub const fn fc_amp_hb2(&self) -> &FcAmpHb2 {
        &self.fc_amp_hb2
    }
    #[doc = "0x112a..0x1146 - Frame Composer AMP Packet Body Register Array"]
    #[inline(always)]
    pub const fn fc_amp_pb(&self, n: usize) -> &FcAmpPb {
        &self.fc_amp_pb[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0x112a..0x1146 - Frame Composer AMP Packet Body Register Array"]
    #[inline(always)]
    pub fn fc_amp_pb_iter(&self) -> impl Iterator<Item = &FcAmpPb> {
        self.fc_amp_pb.iter()
    }
    #[doc = "0x1148 - Frame Composer NTSC VBI Packet Header Register 1"]
    #[inline(always)]
    pub const fn fc_nvbi_hb1(&self) -> &FcNvbiHb1 {
        &self.fc_nvbi_hb1
    }
    #[doc = "0x1149 - Frame Composer NTSC VBI Packet Header Register 2"]
    #[inline(always)]
    pub const fn fc_nvbi_hb2(&self) -> &FcNvbiHb2 {
        &self.fc_nvbi_hb2
    }
    #[doc = "0x114a..0x1165 - Frame Composer NTSC VBI Packet Body Register Array"]
    #[inline(always)]
    pub const fn fc_nvbi_pb(&self, n: usize) -> &FcNvbiPb {
        &self.fc_nvbi_pb[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0x114a..0x1165 - Frame Composer NTSC VBI Packet Body Register Array"]
    #[inline(always)]
    pub fn fc_nvbi_pb_iter(&self) -> impl Iterator<Item = &FcNvbiPb> {
        self.fc_nvbi_pb.iter()
    }
    #[doc = "0x1167 - DRM packet update"]
    #[inline(always)]
    pub const fn fc_drm_up(&self) -> &FcDrmUp {
        &self.fc_drm_up
    }
    #[doc = "0x1168 - Frame Composer DRM Packet Header Register Array"]
    #[inline(always)]
    pub const fn fc_drm_hb(&self, n: usize) -> &FcDrmHb {
        &self.fc_drm_hb[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0x1168 - Frame Composer DRM Packet Header Register Array"]
    #[inline(always)]
    pub fn fc_drm_hb_iter(&self) -> impl Iterator<Item = &FcDrmHb> {
        self.fc_drm_hb.iter()
    }
    #[doc = "0x116a..0x1185 - Frame Composer DRM Packet Body Register Array"]
    #[inline(always)]
    pub const fn fc_drm_pb(&self, n: usize) -> &FcDrmPb {
        &self.fc_drm_pb[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0x116a..0x1185 - Frame Composer DRM Packet Body Register Array"]
    #[inline(always)]
    pub fn fc_drm_pb_iter(&self) -> impl Iterator<Item = &FcDrmPb> {
        self.fc_drm_pb.iter()
    }
    #[doc = "0x1200 - Force fixed video output with FC_DBGTMDSx register contents."]
    #[inline(always)]
    pub const fn fc_dbgforce(&self) -> &FcDbgforce {
        &self.fc_dbgforce
    }
    #[doc = "0x1201 - Frame Composer Audio Data Channel 0 Register 0"]
    #[inline(always)]
    pub const fn fc_dbgaud0ch0(&self) -> &FcDbgaud0ch0 {
        &self.fc_dbgaud0ch0
    }
    #[doc = "0x1202 - Frame Composer Audio Data Channel 0 Register 1"]
    #[inline(always)]
    pub const fn fc_dbgaud1ch0(&self) -> &FcDbgaud1ch0 {
        &self.fc_dbgaud1ch0
    }
    #[doc = "0x1203 - Frame Composer Audio Data Channel 0 Register 2"]
    #[inline(always)]
    pub const fn fc_dbgaud2ch0(&self) -> &FcDbgaud2ch0 {
        &self.fc_dbgaud2ch0
    }
    #[doc = "0x1204 - Frame Composer Audio Data Channel 1 Register 0"]
    #[inline(always)]
    pub const fn fc_dbgaud0ch1(&self) -> &FcDbgaud0ch1 {
        &self.fc_dbgaud0ch1
    }
    #[doc = "0x1205 - Frame Composer Audio Data Channel 1 Register 1"]
    #[inline(always)]
    pub const fn fc_dbgaud1ch1(&self) -> &FcDbgaud1ch1 {
        &self.fc_dbgaud1ch1
    }
    #[doc = "0x1206 - Frame Composer Audio Data Channel 1 Register 2"]
    #[inline(always)]
    pub const fn fc_dbgaud2ch1(&self) -> &FcDbgaud2ch1 {
        &self.fc_dbgaud2ch1
    }
    #[doc = "0x1207 - Frame Composer Audio Data Channel 2 Register 0"]
    #[inline(always)]
    pub const fn fc_dbgaud0ch2(&self) -> &FcDbgaud0ch2 {
        &self.fc_dbgaud0ch2
    }
    #[doc = "0x1208 - Frame Composer Audio Data Channel 2 Register 1"]
    #[inline(always)]
    pub const fn fc_dbgaud1ch2(&self) -> &FcDbgaud1ch2 {
        &self.fc_dbgaud1ch2
    }
    #[doc = "0x1209 - Frame Composer Audio Data Channel 2 Register 2"]
    #[inline(always)]
    pub const fn fc_dbgaud2ch2(&self) -> &FcDbgaud2ch2 {
        &self.fc_dbgaud2ch2
    }
    #[doc = "0x120a - Frame Composer Audio Data Channel 3 Register 0"]
    #[inline(always)]
    pub const fn fc_dbgaud0ch3(&self) -> &FcDbgaud0ch3 {
        &self.fc_dbgaud0ch3
    }
    #[doc = "0x120b - Frame Composer Audio Data Channel 3 Register 1"]
    #[inline(always)]
    pub const fn fc_dbgaud1ch3(&self) -> &FcDbgaud1ch3 {
        &self.fc_dbgaud1ch3
    }
    #[doc = "0x120c - Frame Composer Audio Data Channel 3 Register 2"]
    #[inline(always)]
    pub const fn fc_dbgaud2ch3(&self) -> &FcDbgaud2ch3 {
        &self.fc_dbgaud2ch3
    }
    #[doc = "0x120d - Frame Composer Audio Data Channel 4 Register 0"]
    #[inline(always)]
    pub const fn fc_dbgaud0ch4(&self) -> &FcDbgaud0ch4 {
        &self.fc_dbgaud0ch4
    }
    #[doc = "0x120e - Frame Composer Audio Data Channel 4 Register 1"]
    #[inline(always)]
    pub const fn fc_dbgaud1ch4(&self) -> &FcDbgaud1ch4 {
        &self.fc_dbgaud1ch4
    }
    #[doc = "0x120f - Frame Composer Audio Data Channel 4 Register 2"]
    #[inline(always)]
    pub const fn fc_dbgaud2ch4(&self) -> &FcDbgaud2ch4 {
        &self.fc_dbgaud2ch4
    }
    #[doc = "0x1210 - Frame Composer Audio Data Channel 5 Register 0"]
    #[inline(always)]
    pub const fn fc_dbgaud0ch5(&self) -> &FcDbgaud0ch5 {
        &self.fc_dbgaud0ch5
    }
    #[doc = "0x1211 - Frame Composer Audio Data Channel 5 Register 1"]
    #[inline(always)]
    pub const fn fc_dbgaud1ch5(&self) -> &FcDbgaud1ch5 {
        &self.fc_dbgaud1ch5
    }
    #[doc = "0x1212 - Frame Composer Audio Data Channel 5 Register 2"]
    #[inline(always)]
    pub const fn fc_dbgaud2ch5(&self) -> &FcDbgaud2ch5 {
        &self.fc_dbgaud2ch5
    }
    #[doc = "0x1213 - Frame Composer Audio Data Channel 6 Register 0"]
    #[inline(always)]
    pub const fn fc_dbgaud0ch6(&self) -> &FcDbgaud0ch6 {
        &self.fc_dbgaud0ch6
    }
    #[doc = "0x1214 - Frame Composer Audio Data Channel 6 Register 1"]
    #[inline(always)]
    pub const fn fc_dbgaud1ch6(&self) -> &FcDbgaud1ch6 {
        &self.fc_dbgaud1ch6
    }
    #[doc = "0x1215 - Frame Composer Audio Data Channel 6 Register 2"]
    #[inline(always)]
    pub const fn fc_dbgaud2ch6(&self) -> &FcDbgaud2ch6 {
        &self.fc_dbgaud2ch6
    }
    #[doc = "0x1216 - Frame Composer Audio Data Channel 7 Register 0"]
    #[inline(always)]
    pub const fn fc_dbgaud0ch7(&self) -> &FcDbgaud0ch7 {
        &self.fc_dbgaud0ch7
    }
    #[doc = "0x1217 - Frame Composer Audio Data Channel 7 Register 1"]
    #[inline(always)]
    pub const fn fc_dbgaud1ch7(&self) -> &FcDbgaud1ch7 {
        &self.fc_dbgaud1ch7
    }
    #[doc = "0x1218 - Frame Composer Audio Data Channel 7 Register 2"]
    #[inline(always)]
    pub const fn fc_dbgaud2ch7(&self) -> &FcDbgaud2ch7 {
        &self.fc_dbgaud2ch7
    }
    #[doc = "0x1219 - Frame Composer TMDS Data Channel 0 Register"]
    #[inline(always)]
    pub const fn fc_dbgtmds(&self, n: usize) -> &FcDbgtmds {
        &self.fc_dbgtmds[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0x1219 - Frame Composer TMDS Data Channel 0 Register"]
    #[inline(always)]
    pub fn fc_dbgtmds_iter(&self) -> impl Iterator<Item = &FcDbgtmds> {
        self.fc_dbgtmds.iter()
    }
    #[doc = "0x3000 - Select interface control."]
    #[inline(always)]
    pub const fn phy_conf0(&self) -> &PhyConf0 {
        &self.phy_conf0
    }
    #[doc = "0x3001 - Test Clock signal. Otherwise, this field is a \"spare\" bit with no associated functionality."]
    #[inline(always)]
    pub const fn phy_tst0(&self) -> &PhyTst0 {
        &self.phy_tst0
    }
    #[doc = "0x3002 - Test Data input Otherwise, this field is a \"spare\" bit with no associated functionality."]
    #[inline(always)]
    pub const fn phy_tst1(&self) -> &PhyTst1 {
        &self.phy_tst1
    }
    #[doc = "0x3003 - Test Data output. Otherwise, this field is a \"spare\" bit with no associated functionality."]
    #[inline(always)]
    pub const fn phy_tst2(&self) -> &PhyTst2 {
        &self.phy_tst2
    }
    #[doc = "0x3004 - Status bit. TX PHY PLL lock indication. You may need to mask or change polarity of this interrupt after it has became active."]
    #[inline(always)]
    pub const fn phy_stat0(&self) -> &PhyStat0 {
        &self.phy_stat0
    }
    #[doc = "0x3005 - Interrupt indication bit. TX PHY PLL lock indication interrupt."]
    #[inline(always)]
    pub const fn phy_int0(&self) -> &PhyInt0 {
        &self.phy_int0
    }
    #[doc = "0x3006 - Mask bit for PHY_INT0.TX_PHY_LOCK interrupt bit"]
    #[inline(always)]
    pub const fn phy_mask0(&self) -> &PhyMask0 {
        &self.phy_mask0
    }
    #[doc = "0x3007 - Polarity bit for PHY_INT0.TX_PHY_LOCK interrupt bit"]
    #[inline(always)]
    pub const fn phy_pol0(&self) -> &PhyPol0 {
        &self.phy_pol0
    }
    #[doc = "0x3008 - Pixel Clock Frequency (pclk_freq\\[7:0\\])."]
    #[inline(always)]
    pub const fn phy_pclfreq0(&self) -> &PhyPclfreq0 {
        &self.phy_pclfreq0
    }
    #[doc = "0x3009 - Pixel Clock Frequency (pclk_freq\\[9:8\\])."]
    #[inline(always)]
    pub const fn phy_pclfreq1(&self) -> &PhyPclfreq1 {
        &self.phy_pclfreq1
    }
    #[doc = "0x300a - PLL Configuration Frequency (pllcfgfreq\\[7:0\\])."]
    #[inline(always)]
    pub const fn phy_pllcfgfreq0(&self) -> &PhyPllcfgfreq0 {
        &self.phy_pllcfgfreq0
    }
    #[doc = "0x300b - PLL Configuration Frequency (pllcfgfreq\\[15:8\\])."]
    #[inline(always)]
    pub const fn phy_pllcfgfreq1(&self) -> &PhyPllcfgfreq1 {
        &self.phy_pllcfgfreq1
    }
    #[doc = "0x300c - PLL Configuration Frequency (pllcfgfreq\\[23:16\\])."]
    #[inline(always)]
    pub const fn phy_pllcfgfreq2(&self) -> &PhyPllcfgfreq2 {
        &self.phy_pllcfgfreq2
    }
    #[doc = "0x3020 - Slave address to be sent during read and write operations. PHY Gen2 slave address: 7'h69 HEAC PHY slave address: 7'h49"]
    #[inline(always)]
    pub const fn phy_i2cm_slave(&self) -> &PhyI2cmSlave {
        &self.phy_i2cm_slave
    }
    #[doc = "0x3021 - Register address for read and write operations"]
    #[inline(always)]
    pub const fn phy_i2cm_address(&self) -> &PhyI2cmAddress {
        &self.phy_i2cm_address
    }
    #[doc = "0x3022 - Data MSB (datao\\[15:8\\]) to be written on register pointed by phy_i2cm_address \\[7:0\\]."]
    #[inline(always)]
    pub const fn phy_i2cm_datao_1(&self) -> &PhyI2cmDatao1 {
        &self.phy_i2cm_datao_1
    }
    #[doc = "0x3023 - Data LSB (datao\\[7:0\\]) to be written on register pointed by phy_i2cm_address \\[7:0\\]."]
    #[inline(always)]
    pub const fn phy_i2cm_datao_0(&self) -> &PhyI2cmDatao0 {
        &self.phy_i2cm_datao_0
    }
    #[doc = "0x3024 - Data MSB (datai\\[15:8\\]) read from register pointed by phy_i2cm_address\\[7:0\\]."]
    #[inline(always)]
    pub const fn phy_i2cm_datai_1(&self) -> &PhyI2cmDatai1 {
        &self.phy_i2cm_datai_1
    }
    #[doc = "0x3025 - Data LSB (datai\\[7:0\\]) read from register pointed by phy_i2cm_address\\[7:0\\]."]
    #[inline(always)]
    pub const fn phy_i2cm_datai_0(&self) -> &PhyI2cmDatai0 {
        &self.phy_i2cm_datai_0
    }
    #[doc = "0x3026 - Read operation request"]
    #[inline(always)]
    pub const fn phy_i2cm_operation(&self) -> &PhyI2cmOperation {
        &self.phy_i2cm_operation
    }
    #[doc = "0x3027 - Operation done status bit. Marks the end of a read or write operation."]
    #[inline(always)]
    pub const fn phy_i2cm_int(&self) -> &PhyI2cmInt {
        &self.phy_i2cm_int
    }
    #[doc = "0x3028 - Arbitration error interrupt bit Bits Name Attr Description {arbitration_interrupt = (arbitration_mask==0b) &amp;&amp; (arbitration_status==arbitration_pol)} Note: This bit field is read by the sticky bits present on the ih_i2cmphy_stat0 register."]
    #[inline(always)]
    pub const fn phy_i2cm_ctlint(&self) -> &PhyI2cmCtlint {
        &self.phy_i2cm_ctlint
    }
    #[doc = "0x3029 - Reserved as \"spare\" register with no associated functionality."]
    #[inline(always)]
    pub const fn phy_i2cm_div(&self) -> &PhyI2cmDiv {
        &self.phy_i2cm_div
    }
    #[doc = "0x302a - I2C Master Software Reset. Active by writing a zero and auto cleared to one in the following cycle."]
    #[inline(always)]
    pub const fn phy_i2cm_softrstz(&self) -> &PhyI2cmSoftrstz {
        &self.phy_i2cm_softrstz
    }
    #[doc = "0x302b - PHY I2C Slow Speed SCL High Level Control Register 1"]
    #[inline(always)]
    pub const fn phy_i2cm_ss_scl_hcnt_1_addr(&self) -> &PhyI2cmSsSclHcnt1Addr {
        &self.phy_i2cm_ss_scl_hcnt_1_addr
    }
    #[doc = "0x302c - PHY I2C Slow Speed SCL High Level Control Register 0"]
    #[inline(always)]
    pub const fn phy_i2cm_ss_scl_hcnt_0_addr(&self) -> &PhyI2cmSsSclHcnt0Addr {
        &self.phy_i2cm_ss_scl_hcnt_0_addr
    }
    #[doc = "0x302d - PHY I2C Slow Speed SCL Low Level Control Register 1"]
    #[inline(always)]
    pub const fn phy_i2cm_ss_scl_lcnt_1_addr(&self) -> &PhyI2cmSsSclLcnt1Addr {
        &self.phy_i2cm_ss_scl_lcnt_1_addr
    }
    #[doc = "0x302e - PHY I2C Slow Speed SCL Low Level Control Register 0"]
    #[inline(always)]
    pub const fn phy_i2cm_ss_scl_lcnt_0_addr(&self) -> &PhyI2cmSsSclLcnt0Addr {
        &self.phy_i2cm_ss_scl_lcnt_0_addr
    }
    #[doc = "0x302f - PHY I2C Fast Speed SCL High Level Control Register 1"]
    #[inline(always)]
    pub const fn phy_i2cm_fs_scl_hcnt_1_addr(&self) -> &PhyI2cmFsSclHcnt1Addr {
        &self.phy_i2cm_fs_scl_hcnt_1_addr
    }
    #[doc = "0x3030 - PHY I2C Fast Speed SCL High Level Control Register Bits Name Attr Description 0"]
    #[inline(always)]
    pub const fn phy_i2cm_fs_scl_hcnt_0_addr(&self) -> &PhyI2cmFsSclHcnt0Addr {
        &self.phy_i2cm_fs_scl_hcnt_0_addr
    }
    #[doc = "0x3031 - PHY I2C Fast Speed SCL Low Level Control Register 1"]
    #[inline(always)]
    pub const fn phy_i2cm_fs_scl_lcnt_1_addr(&self) -> &PhyI2cmFsSclLcnt1Addr {
        &self.phy_i2cm_fs_scl_lcnt_1_addr
    }
    #[doc = "0x3032 - PHY I2C Fast Speed SCL Low Level Control Register 0"]
    #[inline(always)]
    pub const fn phy_i2cm_fs_scl_lcnt_0_addr(&self) -> &PhyI2cmFsSclLcnt0Addr {
        &self.phy_i2cm_fs_scl_lcnt_0_addr
    }
    #[doc = "0x3033 - Defines the number of SFR clock cycles to meet tHD:DAT (300 ns) osda_hold = round_to_high_integer (300 ns / (1/ isfrclk_frequency))"]
    #[inline(always)]
    pub const fn phy_i2cm_sda_hold(&self) -> &PhyI2cmSdaHold {
        &self.phy_i2cm_sda_hold
    }
    #[doc = "0x3034 - Configures the JTAG PHY interface output pin Bits Name Attr Description JTAG_TRST_N when in internal control mode (iphy_ext_ctrl=1'b0) or ophyext_jtag_trst_n when PHY_EXTERNAL=1."]
    #[inline(always)]
    pub const fn jtag_phy_config(&self) -> &JtagPhyConfig {
        &self.jtag_phy_config
    }
    #[doc = "0x3035 - Configures the JTAG PHY interface pin JTAG_TCK when in internal control mode (iphy_ext_ctrl=1'b0) or ophyext_jtag_tck when PHY_EXTERNAL=1."]
    #[inline(always)]
    pub const fn jtag_phy_tap_tck(&self) -> &JtagPhyTapTck {
        &self.jtag_phy_tap_tck
    }
    #[doc = "0x3036 - Configures the JTAG PHY interface pin JTAG_TDI when in internal control mode (iphy_ext_ctrl=1'b0) or ophyext_jtag_tdi when PHY_EXTERNAL=1."]
    #[inline(always)]
    pub const fn jtag_phy_tap_in(&self) -> &JtagPhyTapIn {
        &self.jtag_phy_tap_in
    }
    #[doc = "0x3037 - Read JTAG PHY interface input pin JTAG_TDO when in internal control mode (iphy_ext_ctrl=1'b0) or Bits Name Attr Description iphyext_jtag_tdo when PHY_EXTERNAL=1 Value After Reset: 0x0 jtag_phy_addr Description: PHY JTAG Address Control Register Size: 8 bits Offset: 0x3038 Bits Name Attr Description 7:0 jtag_addr R/W Configures the JTAG PHY interface pin JTAG_ADDR\\[7:0\\]
when in internal control mode (iphy_ext_ctrl=1'b0) or iphyext_jtag_addr\\[7:0\\]
when PHY_EXTERNAL=1"]
    #[inline(always)]
    pub const fn jtag_phy_tap_out(&self) -> &JtagPhyTapOut {
        &self.jtag_phy_tap_out
    }
    #[doc = "0x3038 - Configures the JTAG PHY interface pin JTAG_ADDR\\[7:0\\]
when in internal control mode (iphy_ext_ctrl=1'b0) or iphyext_jtag_addr\\[7:0\\]
when PHY_EXTERNAL=1"]
    #[inline(always)]
    pub const fn jtag_phy_addr(&self) -> &JtagPhyAddr {
        &self.jtag_phy_addr
    }
    #[doc = "0x3100 - Action I2S_in_en\\[0\\]
- I2Sdata\\[0\\]
enable I2S_in_en\\[1\\]
- I2Sdata\\[1\\]
enable I2S_in_en\\[2\\]
- I2Sdata\\[2\\]
enable I2S_in_en\\[3\\]
- I2Sdata\\[3\\]
enable"]
    #[inline(always)]
    pub const fn aud_conf0(&self) -> &AudConf0 {
        &self.aud_conf0
    }
    #[doc = "0x3101 - I2S input data width I2S_width\\[4:0\\]
| Action 00000b-01111b | Not used 10000b | 16 bit data samples at input 10001b | 17 bit data samples at input 10010b | 18 bit data samples at input 10011b | 19 bit data samples at input 10100b | 20 bit data samples at input 10101b | 21 bit data samples at input 10110b | 22 bit data samples at input 10111b | 23 bit data samples at input 11000b | 24 bit data samples at input 11001b- 11111b | Not Used"]
    #[inline(always)]
    pub const fn aud_conf1(&self) -> &AudConf1 {
        &self.aud_conf1
    }
    #[doc = "0x3102 - Reserved for future use."]
    #[inline(always)]
    pub const fn aud_int(&self) -> &AudInt {
        &self.aud_int
    }
    #[doc = "0x3103 - I2S HBR Mode Enable. When enabled, the I2S audio stream is transmitted using HBR packets."]
    #[inline(always)]
    pub const fn aud_conf2(&self) -> &AudConf2 {
        &self.aud_conf2
    }
    #[doc = "0x3200 - HDMI Audio Clock Regenerator N value"]
    #[inline(always)]
    pub const fn aud_n1(&self) -> &AudN1 {
        &self.aud_n1
    }
    #[doc = "0x3201 - HDMI Audio Clock Regenerator N value"]
    #[inline(always)]
    pub const fn aud_n2(&self) -> &AudN2 {
        &self.aud_n2
    }
    #[doc = "0x3202 - HDMI Audio Clock Regenerator N value"]
    #[inline(always)]
    pub const fn aud_n3(&self) -> &AudN3 {
        &self.aud_n3
    }
    #[doc = "0x3203 - HDMI Audio Clock Regenerator CTS calculated value. This value can be manually set using the CTS_manual (AUD_CTS3) mechanism."]
    #[inline(always)]
    pub const fn aud_cts1(&self) -> &AudCts1 {
        &self.aud_cts1
    }
    #[doc = "0x3204 - HDMI Audio Clock Regenerator CTS calculated value. This value can be manually set using the CTS_manual (AUD_CTS3) mechanism."]
    #[inline(always)]
    pub const fn aud_cts2(&self) -> &AudCts2 {
        &self.aud_cts2
    }
    #[doc = "0x3205 - HDMI Audio Clock Regenerator CTS calculated value. This value can be manually set using the CTS_manual (AUD_CTS3) mechanism."]
    #[inline(always)]
    pub const fn aud_cts3(&self) -> &AudCts3 {
        &self.aud_cts3
    }
    #[doc = "0x3206 - Fs factor configuration: ifsfactor\\[2:0\\]
| Audio Clock | Action 0 | 128xFs | If you select the Bypass SPDIF DRU unit in coreConsultant, the input audio clock (either I2S or SPDIF according to configuration) is used at the audio packetizer to calculate the CTS value and ACR packet insertion rate. | 256xFs | The input audio clock (I2S only) is divided by 2 and then used at audio packetizer to calculate the CTS value and ACR packet insertion rate. | 512xFs | The input audio clock (either I2S or SPDIF according to configuration) used divided by 4 and then used at the audio packetizer to calculate the CTS value and ACR packet insertion rate. Note: When the SPDIF interface is receiving an HBR audio stream (\"Support for HBR over SDPIF\" parameter must be enabled), it is required that the selected IFSFACTOR to be set at 512xFs in order to comply with the HDMI ACR requirements for HBR Bits Name Attr Description audio streams. | Reserved | 64xFs | The input audio clock (I2S only) is multiplied by 2 and then used at the audio packetizer to calculate the CTS value and ACR packet insertion rate. others | 128xFs | If you select the Bypass SPDIF DRU unit in coreConsultant, the input audio clock (either I2S or SPDIF according to configuration) is used at the audio packetizer to calculate the CTS value and ACR packet insertion rate. The SPDIF interface, for non HBR audio, requires that the configured oversampling value to be 128xFs when HTX_SPDIFBYPDRU is enabled and 512xFs if not. When the SPDIF interface is receiving HBR audio (HBR_ON_SPDIF must be enabled), in order to comply with the HDMI ACR requirements for HBR audio streams."]
    #[inline(always)]
    pub const fn aud_inputclkfs(&self) -> &AudInputclkfs {
        &self.aud_inputclkfs
    }
    #[doc = "0x3207 - Dither dividend (4'd1 if no CTS Dither). This field should be configured with the value of dividend from the HDMI specification."]
    #[inline(always)]
    pub const fn aud_cts_dither(&self) -> &AudCtsDither {
        &self.aud_cts_dither
    }
    #[doc = "0x3300 - Reserved as \"spare\" bit with no associated functionality."]
    #[inline(always)]
    pub const fn aud_spdif0(&self) -> &AudSpdif0 {
        &self.aud_spdif0
    }
    #[doc = "0x3301 - When set to 1'b1, this bit field indicates that the input stream has a High Bit Rate (HBR) to be transmitted in HDMI HBR packets. When clear (1b'0), the audio is transmitted in HDMI AUDS packets.Note:&lt; Otherwise, this field is a \"spare\" bit with no associated functionality."]
    #[inline(always)]
    pub const fn aud_spdif1(&self) -> &AudSpdif1 {
        &self.aud_spdif1
    }
    #[doc = "0x3302 - Reserved for future use."]
    #[inline(always)]
    pub const fn aud_spdifint(&self) -> &AudSpdifint {
        &self.aud_spdifint
    }
    #[doc = "0x3303 - Reserved for future use."]
    #[inline(always)]
    pub const fn aud_spdifint1(&self) -> &AudSpdifint1 {
        &self.aud_spdifint1
    }
    #[doc = "0x3304 - Action SPDIF_in_en\\[0\\]
- ispdifdata\\[0\\]
enable SPDIF_in_en\\[1\\]
- ispdifdata\\[1\\]
enable SPDIF_in_en\\[2\\]
- ispdifdata\\[2\\]
enable SPDIF_in_en\\[3\\]
- ispdifdata\\[3\\]
enable"]
    #[inline(always)]
    pub const fn aud_spdif2(&self) -> &AudSpdif2 {
        &self.aud_spdif2
    }
    #[doc = "0x3500 - Audio FIFOs software reset Writing 0b: no action taken Writing 1b: Resets all audio FIFOs Reading from this register always returns 0b. Note: If a FIFO reset request (via register write command) lands in the middle of an GPAUD audio transaction, the samples become misaligned (left-right sequence lost). As a solution, for each FIFO reset, an associated SPDIF reset must be issued (writing 8'h7F to MC_SWRSTZ register)."]
    #[inline(always)]
    pub const fn gp_conf0(&self) -> &GpConf0 {
        &self.gp_conf0
    }
    #[doc = "0x3501 - Each bit controls the enabling of the respective audio channel. For instance, bit 1, when set (1'b1), the audio Channel 1 is enabled. When cleared, the referred channel is disabled."]
    #[inline(always)]
    pub const fn gp_conf1(&self) -> &GpConf1 {
        &self.gp_conf1
    }
    #[doc = "0x3502 - HBR packets enable. The Hdmi_tx sends the HBR packets. This bit is enabled when the audio frequency is higher than 192 kHz. If this bit is enabled, the number of channels configured in GP_CONF1 must be set to 8'hFF."]
    #[inline(always)]
    pub const fn gp_conf2(&self) -> &GpConf2 {
        &self.gp_conf2
    }
    #[doc = "0x3506 - FIFO full flag mask"]
    #[inline(always)]
    pub const fn gp_mask(&self) -> &GpMask {
        &self.gp_mask
    }
    #[doc = "0x3600 - 1'b: Forces the burst mode to be fixed beat, incremental burst mode designated by the incr_type\\[1:0\\]
signal. 0'b: Normal operation is unspecified length, incremental burst. It corresponds to INCR AHB burst mode."]
    #[inline(always)]
    pub const fn ahb_dma_conf0(&self) -> &AhbDmaConf0 {
        &self.ahb_dma_conf0
    }
    #[doc = "0x3601 - Start DMA transaction This register is auto-cleared when the transfer operation is completed (done)."]
    #[inline(always)]
    pub const fn ahb_dma_start(&self) -> &AhbDmaStart {
        &self.ahb_dma_start
    }
    #[doc = "0x3602 - Stop DMA transaction This register is auto-cleared when the transfer operation is stopped (done)."]
    #[inline(always)]
    pub const fn ahb_dma_stop(&self) -> &AhbDmaStop {
        &self.ahb_dma_stop
    }
    #[doc = "0x3603 - FIFO medium threshold occupation value"]
    #[inline(always)]
    pub const fn ahb_dma_thrsld(&self) -> &AhbDmaThrsld {
        &self.ahb_dma_thrsld
    }
    #[doc = "0x3604 - Defines init_addr\\[7:0\\]
to initiate DMA burst transactions"]
    #[inline(always)]
    pub const fn ahb_dma_straddr_set0(&self, n: usize) -> &AhbDmaStraddrSet0 {
        &self.ahb_dma_straddr_set0[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0x3604 - Defines init_addr\\[7:0\\]
to initiate DMA burst transactions"]
    #[inline(always)]
    pub fn ahb_dma_straddr_set0_iter(&self) -> impl Iterator<Item = &AhbDmaStraddrSet0> {
        self.ahb_dma_straddr_set0.iter()
    }
    #[doc = "0x3608 - Defines final_addr\\[7:0\\]
to end DMA burst transactions"]
    #[inline(always)]
    pub const fn ahb_dma_stpaddr_set0(&self, n: usize) -> &AhbDmaStpaddrSet0 {
        &self.ahb_dma_stpaddr_set0[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0x3608 - Defines final_addr\\[7:0\\]
to end DMA burst transactions"]
    #[inline(always)]
    pub fn ahb_dma_stpaddr_set0_iter(&self) -> impl Iterator<Item = &AhbDmaStpaddrSet0> {
        self.ahb_dma_stpaddr_set0.iter()
    }
    #[doc = "0x360c - Start address for the current burst operation"]
    #[inline(always)]
    pub const fn ahb_dma_bstraddr(&self, n: usize) -> &AhbDmaBstraddr {
        &self.ahb_dma_bstraddr[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0x360c - Start address for the current burst operation"]
    #[inline(always)]
    pub fn ahb_dma_bstraddr_iter(&self) -> impl Iterator<Item = &AhbDmaBstraddr> {
        self.ahb_dma_bstraddr.iter()
    }
    #[doc = "0x3610 - Requested burst length (mburstlength\\[7:0\\])"]
    #[inline(always)]
    pub const fn ahb_dma_mblength0(&self) -> &AhbDmaMblength0 {
        &self.ahb_dma_mblength0
    }
    #[doc = "0x3611 - Requested burst length"]
    #[inline(always)]
    pub const fn ahb_dma_mblength1(&self) -> &AhbDmaMblength1 {
        &self.ahb_dma_mblength1
    }
    #[doc = "0x3614 - Audio FIFO empty interrupt mask."]
    #[inline(always)]
    pub const fn ahb_dma_mask(&self) -> &AhbDmaMask {
        &self.ahb_dma_mask
    }
    #[doc = "0x3616 - Each bit controls the enabling of the respective audio channel. For instance, when bit 1 is set (1'b1) the audio Channel 1 is enabled. When cleared, the referred channel is disabled."]
    #[inline(always)]
    pub const fn ahb_dma_conf1(&self) -> &AhbDmaConf1 {
        &self.ahb_dma_conf1
    }
    #[doc = "0x3619 - Buffer empty flag mask"]
    #[inline(always)]
    pub const fn ahb_dma_buffmask(&self) -> &AhbDmaBuffmask {
        &self.ahb_dma_buffmask
    }
    #[doc = "0x361b - AHB DMA FIFO overrun mask"]
    #[inline(always)]
    pub const fn ahb_dma_mask1(&self) -> &AhbDmaMask1 {
        &self.ahb_dma_mask1
    }
    #[doc = "0x361c - Indicates the set of start and stop addresses currently used by the AHB audio DMA. If cleared (1'b0), the start and stop addresses configured in the address range 0x3604 to 0x360B are being used. When set (1'b1), the configurations at address range 0x3620 to 0x3627 are being used. This bit is always at zero when autostart_enable is cleared (1'b0)."]
    #[inline(always)]
    pub const fn ahb_dma_status(&self) -> &AhbDmaStatus {
        &self.ahb_dma_status
    }
    #[doc = "0x361d - Enables the AHB audio DMA auto-start feature"]
    #[inline(always)]
    pub const fn ahb_dma_conf2(&self) -> &AhbDmaConf2 {
        &self.ahb_dma_conf2
    }
    #[doc = "0x3620 - Defines init_addr_1\\[7:0\\]
to initiate DMA burst transactions"]
    #[inline(always)]
    pub const fn ahb_dma_straddr_set1(&self, n: usize) -> &AhbDmaStraddrSet1 {
        &self.ahb_dma_straddr_set1[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0x3620 - Defines init_addr_1\\[7:0\\]
to initiate DMA burst transactions"]
    #[inline(always)]
    pub fn ahb_dma_straddr_set1_iter(&self) -> impl Iterator<Item = &AhbDmaStraddrSet1> {
        self.ahb_dma_straddr_set1.iter()
    }
    #[doc = "0x3624 - Defines final_addr_1\\[7:0\\]
to end DMA burst transactions"]
    #[inline(always)]
    pub const fn ahb_dma_stpaddr_set1(&self, n: usize) -> &AhbDmaStpaddrSet1 {
        &self.ahb_dma_stpaddr_set1[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0x3624 - Defines final_addr_1\\[7:0\\]
to end DMA burst transactions"]
    #[inline(always)]
    pub fn ahb_dma_stpaddr_set1_iter(&self) -> impl Iterator<Item = &AhbDmaStpaddrSet1> {
        self.ahb_dma_stpaddr_set1.iter()
    }
    #[doc = "0x4001 - Audio Sampler clock synchronous disable signal."]
    #[inline(always)]
    pub const fn mc_clkdis(&self) -> &McClkdis {
        &self.mc_clkdis
    }
    #[doc = "0x4002 - Pixel software reset request."]
    #[inline(always)]
    pub const fn mc_swrstzreq(&self) -> &McSwrstzreq {
        &self.mc_swrstzreq
    }
    #[doc = "0x4003 - Block HDCP bypass mechanism 1'b0: This is the default value. You can write to the hdcp_clkdisable bit of the register mc_clkdis and bypass HDCP by acting on the register mc_clkdis bit 6 (hdcp_clkdisable) 1'b1: You can still write to the hdcp_clkdisable bit of the register mc_clkdis but this action disables the HDCP module and blocks the bypass mechanism. The output data is frozen and the HDMI Tx and RX fail authentication. Once you set the value to 1'b1, you can change the value back to 1'b0 only by issuing a master reset to the Bits Name Attr Description Hdmi_tx. Otherwise, this field is a \"spare\" bit with no associated functionality."]
    #[inline(always)]
    pub const fn mc_opctrl(&self) -> &McOpctrl {
        &self.mc_opctrl
    }
    #[doc = "0x4004 - Video path Feed Through enable bit: 1b: Color Space Converter is in the video data path. 0b: Color Space Converter is bypassed (not in the video data path)."]
    #[inline(always)]
    pub const fn mc_flowctrl(&self) -> &McFlowctrl {
        &self.mc_flowctrl
    }
    #[doc = "0x4005 - HDMI Source PHY active low reset control for PHY GEN1, active high reset control for PHY GEN2."]
    #[inline(always)]
    pub const fn mc_phyrstz(&self) -> &McPhyrstz {
        &self.mc_phyrstz
    }
    #[doc = "0x4006 - CEC clock status. Indicates that the clock is present in the system. Cleared by WR 1 to this position."]
    #[inline(always)]
    pub const fn mc_lockonclock(&self) -> &McLockonclock {
        &self.mc_lockonclock
    }
    #[doc = "0x4007 - HEAC PHY reset (active high)"]
    #[inline(always)]
    pub const fn mc_heacphy_rst(&self) -> &McHeacphyRst {
        &self.mc_heacphy_rst
    }
    #[doc = "0x4009 - AHB audio DMA clock status. Indicates that the clock is present in the system. Cleared by WR 1 to this position."]
    #[inline(always)]
    pub const fn mc_lockonclock_2(&self) -> &McLockonclock2 {
        &self.mc_lockonclock_2
    }
    #[doc = "0x400a - AHB audio DMA software reset request. Writing 1'b1 does not result in any action. Writing 1'b0 to this register resets all AHB audio logic."]
    #[inline(always)]
    pub const fn mc_swrstzreq_2(&self) -> &McSwrstzreq2 {
        &self.mc_swrstzreq_2
    }
    #[doc = "0x4010 - HDCP SNPS 2.2 versus 1.4 switch value status. 1'b0: HDCP 1.4 selected 1'b1: HDCP 2.2 selected"]
    #[inline(always)]
    pub const fn mc_opsts(&self) -> &McOpsts {
        &self.mc_opsts
    }
    #[doc = "0x4018 - SFR clock divider Low This register must be configured with the 8 least- significant bits of the value sfrclk frequency divided by 1000 (for example, for 27 MHz base_sfrdiv\\[14:0\\]
= 27027). The configured data is used to generate a reference pulse of 1ms period that is needed by several timers within the controller."]
    #[inline(always)]
    pub const fn base_sfrdivlow(&self) -> &BaseSfrdivlow {
        &self.base_sfrdivlow
    }
    #[doc = "0x4019 - SFR clock divider High This register must be configured with the 7 most- significant bits of the value sfrclk frequency divided by 1000 (for example, for 27 MHz base_sfrdiv\\[14:0\\]
= 27027). The configured data is used to generate a reference pulse of 1ms period that is needed by several timers within the controller."]
    #[inline(always)]
    pub const fn base_sfrdivhigh(&self) -> &BaseSfrdivhigh {
        &self.base_sfrdivhigh
    }
    #[doc = "0x4100 - Chroma decimation configuration: decmode\\[1:0\\]
| Chroma Decimation 00 | decimation disabled 01 | Hd (z) =1 10 | Hd(z)=1/ 4 + 1/2z^(-1 )+1/4 z^(-2) 11 | Hd(z)x2^(11)= -5+12z^(-2) - 22z^(- 4)+39z^(-8) +109z^(-10) -204z^(-12)+648z^(-14) + 1024z^(-15) +648z^(-16) - 204z^(-18) +109z^(-20)- 65z^(-22) +39z^(-24) - 22z^(-26) +12z^(- 28)-5z^(-30)"]
    #[inline(always)]
    pub const fn csc_cfg(&self) -> &CscCfg {
        &self.csc_cfg
    }
    #[doc = "0x4101 - Defines the cscscale\\[1:0\\]
scale factor to apply to all coefficients in Color Space Conversion. This scale factor is expressed in the number of left shifts to apply to each of the coefficients, ranging from 0 to 2."]
    #[inline(always)]
    pub const fn csc_scale(&self) -> &CscScale {
        &self.csc_scale
    }
    #[doc = "0x4102 - Color Space Converter Matrix A1 Coefficient Register MSB"]
    #[inline(always)]
    pub const fn csc_coef_a1_msb(&self) -> &CscCoefA1Msb {
        &self.csc_coef_a1_msb
    }
    #[doc = "0x4103 - Color Space Converter Matrix A1 Coefficient Register LSB"]
    #[inline(always)]
    pub const fn csc_coef_a1_lsb(&self) -> &CscCoefA1Lsb {
        &self.csc_coef_a1_lsb
    }
    #[doc = "0x4104 - Color Space Converter Matrix A2 Coefficient Register MSB"]
    #[inline(always)]
    pub const fn csc_coef_a2_msb(&self) -> &CscCoefA2Msb {
        &self.csc_coef_a2_msb
    }
    #[doc = "0x4105 - Color Space Converter Matrix A2 Coefficient Register LSB"]
    #[inline(always)]
    pub const fn csc_coef_a2_lsb(&self) -> &CscCoefA2Lsb {
        &self.csc_coef_a2_lsb
    }
    #[doc = "0x4106 - Color Space Converter Matrix A3 Coefficient Register MSB"]
    #[inline(always)]
    pub const fn csc_coef_a3_msb(&self) -> &CscCoefA3Msb {
        &self.csc_coef_a3_msb
    }
    #[doc = "0x4107 - Color Space Converter Matrix A3 Coefficient Register LSB"]
    #[inline(always)]
    pub const fn csc_coef_a3_lsb(&self) -> &CscCoefA3Lsb {
        &self.csc_coef_a3_lsb
    }
    #[doc = "0x4108 - Color Space Converter Matrix A4 Coefficient Register MSB"]
    #[inline(always)]
    pub const fn csc_coef_a4_msb(&self) -> &CscCoefA4Msb {
        &self.csc_coef_a4_msb
    }
    #[doc = "0x4109 - Color Space Converter Matrix A4 Coefficient Register LSB"]
    #[inline(always)]
    pub const fn csc_coef_a4_lsb(&self) -> &CscCoefA4Lsb {
        &self.csc_coef_a4_lsb
    }
    #[doc = "0x410a - Color Space Converter Matrix B1 Coefficient Register MSB"]
    #[inline(always)]
    pub const fn csc_coef_b1_msb(&self) -> &CscCoefB1Msb {
        &self.csc_coef_b1_msb
    }
    #[doc = "0x410b - Color Space Converter Matrix B1 Coefficient Register LSB"]
    #[inline(always)]
    pub const fn csc_coef_b1_lsb(&self) -> &CscCoefB1Lsb {
        &self.csc_coef_b1_lsb
    }
    #[doc = "0x410c - Color Space Converter Matrix B2 Coefficient Register MSB"]
    #[inline(always)]
    pub const fn csc_coef_b2_msb(&self) -> &CscCoefB2Msb {
        &self.csc_coef_b2_msb
    }
    #[doc = "0x410d - Color Space Converter Matrix B2 Coefficient Register LSB"]
    #[inline(always)]
    pub const fn csc_coef_b2_lsb(&self) -> &CscCoefB2Lsb {
        &self.csc_coef_b2_lsb
    }
    #[doc = "0x410e - Color Space Converter Matrix B3 Coefficient Register MSB"]
    #[inline(always)]
    pub const fn csc_coef_b3_msb(&self) -> &CscCoefB3Msb {
        &self.csc_coef_b3_msb
    }
    #[doc = "0x410f - Color Space Converter Matrix B3 Coefficient Register LSB"]
    #[inline(always)]
    pub const fn csc_coef_b3_lsb(&self) -> &CscCoefB3Lsb {
        &self.csc_coef_b3_lsb
    }
    #[doc = "0x4110 - Color Space Converter Matrix B4 Coefficient Register MSB"]
    #[inline(always)]
    pub const fn csc_coef_b4_msb(&self) -> &CscCoefB4Msb {
        &self.csc_coef_b4_msb
    }
    #[doc = "0x4111 - Color Space Converter Matrix B4 Coefficient Register LSB"]
    #[inline(always)]
    pub const fn csc_coef_b4_lsb(&self) -> &CscCoefB4Lsb {
        &self.csc_coef_b4_lsb
    }
    #[doc = "0x4112 - Color Space Converter Matrix C1 Coefficient Register MSB"]
    #[inline(always)]
    pub const fn csc_coef_c1_msb(&self) -> &CscCoefC1Msb {
        &self.csc_coef_c1_msb
    }
    #[doc = "0x4113 - Color Space Converter Matrix C1 Coefficient Register LSB"]
    #[inline(always)]
    pub const fn csc_coef_c1_lsb(&self) -> &CscCoefC1Lsb {
        &self.csc_coef_c1_lsb
    }
    #[doc = "0x4114 - Color Space Converter Matrix C2 Coefficient Register MSB"]
    #[inline(always)]
    pub const fn csc_coef_c2_msb(&self) -> &CscCoefC2Msb {
        &self.csc_coef_c2_msb
    }
    #[doc = "0x4115 - Color Space Converter Matrix C2 Coefficient Register LSB"]
    #[inline(always)]
    pub const fn csc_coef_c2_lsb(&self) -> &CscCoefC2Lsb {
        &self.csc_coef_c2_lsb
    }
    #[doc = "0x4116 - Color Space Converter Matrix C3 Coefficient Register MSB"]
    #[inline(always)]
    pub const fn csc_coef_c3_msb(&self) -> &CscCoefC3Msb {
        &self.csc_coef_c3_msb
    }
    #[doc = "0x4117 - Color Space Converter Matrix C3 Coefficient Register LSB"]
    #[inline(always)]
    pub const fn csc_coef_c3_lsb(&self) -> &CscCoefC3Lsb {
        &self.csc_coef_c3_lsb
    }
    #[doc = "0x4118 - Description: Color Space Converter Matrix C4 Coefficient Register MSB"]
    #[inline(always)]
    pub const fn csc_coef_c4_msb(&self) -> &CscCoefC4Msb {
        &self.csc_coef_c4_msb
    }
    #[doc = "0x4119 - Color Space Converter Matrix C4 Coefficient Register LSB"]
    #[inline(always)]
    pub const fn csc_coef_c4_lsb(&self) -> &CscCoefC4Lsb {
        &self.csc_coef_c4_lsb
    }
    #[doc = "0x411a - Color Space Converter Matrix Output Upper Limit Register MSB"]
    #[inline(always)]
    pub const fn csc_limit_up_msb(&self) -> &CscLimitUpMsb {
        &self.csc_limit_up_msb
    }
    #[doc = "0x411b - Color Space Converter Matrix Output Upper Limit Register LSB"]
    #[inline(always)]
    pub const fn csc_limit_up_lsb(&self) -> &CscLimitUpLsb {
        &self.csc_limit_up_lsb
    }
    #[doc = "0x411c - Color Space Converter Matrix output Down Limit Register MSB"]
    #[inline(always)]
    pub const fn csc_limit_dn_msb(&self) -> &CscLimitDnMsb {
        &self.csc_limit_dn_msb
    }
    #[doc = "0x411d - Color Space Converter Matrix Output Down Limit Register LSB"]
    #[inline(always)]
    pub const fn csc_limit_dn_lsb(&self) -> &CscLimitDnLsb {
        &self.csc_limit_dn_lsb
    }
    #[doc = "0x5000 - Configures the transmitter to operate with a HDMI capable device or with a DVI device."]
    #[inline(always)]
    pub const fn a_hdcpcfg0(&self) -> &AHdcpcfg0 {
        &self.a_hdcpcfg0
    }
    #[doc = "0x5001 - Software reset signal, active by writing a zero and auto cleared to 1 in the following cycle."]
    #[inline(always)]
    pub const fn a_hdcpcfg1(&self) -> &AHdcpcfg1 {
        &self.a_hdcpcfg1
    }
    #[doc = "0x5002 - Informs that the current HDMI link has the HDCP protocol fully engaged."]
    #[inline(always)]
    pub const fn a_hdcpobs0(&self) -> &AHdcpobs0 {
        &self.a_hdcpobs0
    }
    #[doc = "0x5003 - Observability register informs in which state the revocation machine is on."]
    #[inline(always)]
    pub const fn a_hdcpobs1(&self) -> &AHdcpobs1 {
        &self.a_hdcpobs1
    }
    #[doc = "0x5004 - Observability register informs in which state the EESS machine is on."]
    #[inline(always)]
    pub const fn a_hdcpobs2(&self) -> &AHdcpobs2 {
        &self.a_hdcpobs2
    }
    #[doc = "0x5005 - Register read from attached sink device: Bcap(0x40) bit 0."]
    #[inline(always)]
    pub const fn a_hdcpobs3(&self) -> &AHdcpobs3 {
        &self.a_hdcpobs3
    }
    #[doc = "0x5006 - Clears the interruption related to KSV Attr grant for Read-Write access."]
    #[inline(always)]
    pub const fn a_apiintclr(&self) -> &AApiintclr {
        &self.a_apiintclr
    }
    #[doc = "0x5007 - Notifies that the KSV Attr as been guaranteed for Read-Write access."]
    #[inline(always)]
    pub const fn a_apiintstat(&self) -> &AApiintstat {
        &self.a_apiintstat
    }
    #[doc = "0x5008 - Masks the interruption related to KSV Attr grant for Read-Write access."]
    #[inline(always)]
    pub const fn a_apiintmsk(&self) -> &AApiintmsk {
        &self.a_apiintmsk
    }
    #[doc = "0x5009 - Reserved as \"spare\" bit with no associated functionality."]
    #[inline(always)]
    pub const fn a_vidpolcfg(&self) -> &AVidpolcfg {
        &self.a_vidpolcfg
    }
    #[doc = "0x500a - HDCP OESS WOO Configuration Register"]
    #[inline(always)]
    pub const fn a_oesswcfg(&self) -> &AOesswcfg {
        &self.a_oesswcfg
    }
    #[doc = "0x5014 - HDCP Controller Version Register LSB"]
    #[inline(always)]
    pub const fn a_coreverlsb(&self) -> &ACoreverlsb {
        &self.a_coreverlsb
    }
    #[doc = "0x5015 - HDCP Controller Version Register MSB"]
    #[inline(always)]
    pub const fn a_corevermsb(&self) -> &ACorevermsb {
        &self.a_corevermsb
    }
    #[doc = "0x5016 - Request access to the KSV memory; must be de- asserted after the access is completed by the system."]
    #[inline(always)]
    pub const fn a_ksvmemctrl(&self) -> &AKsvmemctrl {
        &self.a_ksvmemctrl
    }
    #[doc = "0x5020 - HDCP BSTATUS\\[15:0\\]. If Attr has not been granted (see register a_ksvmemctrl), the value read will be 8'hff."]
    #[inline(always)]
    pub const fn hdcp_bstatus(&self, n: usize) -> &HdcpBstatus {
        &self.hdcp_bstatus[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0x5020 - HDCP BSTATUS\\[15:0\\]. If Attr has not been granted (see register a_ksvmemctrl), the value read will be 8'hff."]
    #[inline(always)]
    pub fn hdcp_bstatus_iter(&self) -> impl Iterator<Item = &HdcpBstatus> {
        self.hdcp_bstatus.iter()
    }
    #[doc = "0x5022..0x502a - HDCP M0\\[32:0\\]. If Attr has not been granted (see register a_ksvmemctrl) , the value read will be 8'hff. These values are only available on a configuration that has the SHA1 calculation by software."]
    #[inline(always)]
    pub const fn hdcp_m0(&self, n: usize) -> &HdcpM0 {
        &self.hdcp_m0[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0x5022..0x502a - HDCP M0\\[32:0\\]. If Attr has not been granted (see register a_ksvmemctrl) , the value read will be 8'hff. These values are only available on a configuration that has the SHA1 calculation by software."]
    #[inline(always)]
    pub fn hdcp_m0_iter(&self) -> impl Iterator<Item = &HdcpM0> {
        self.hdcp_m0.iter()
    }
    #[doc = "0x502a..0x52a5 - Sink KSV FIFO byte, ordered in little endian (byte at address 0x502a belongs to byte 0 of KSV0). If Attr has not been granted (see register a_ksvmemctrl), the value read is 8'hff. In this address space, 635 KSV FIFO bytes are mapped, which allow for 127 KSV values, each with 5 bytes (40 bits)."]
    #[inline(always)]
    pub const fn hdcp_ksv(&self, n: usize) -> &HdcpKsv {
        &self.hdcp_ksv[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0x502a..0x52a5 - Sink KSV FIFO byte, ordered in little endian (byte at address 0x502a belongs to byte 0 of KSV0). If Attr has not been granted (see register a_ksvmemctrl), the value read is 8'hff. In this address space, 635 KSV FIFO bytes are mapped, which allow for 127 KSV values, each with 5 bytes (40 bits)."]
    #[inline(always)]
    pub fn hdcp_ksv_iter(&self) -> impl Iterator<Item = &HdcpKsv> {
        self.hdcp_ksv.iter()
    }
    #[doc = "0x52a5..0x52b9 - Sink VH' byte, ordered in little endian (byte at address 0x525a belongs to byte 0 of VH0). If Attr has not been granted (see register a_ksvmemctrl), the value read is 8'hff. In this address space 20 VH bytes are mapped, which allow for 5 VH values, each with 4 bytes (32bits)."]
    #[inline(always)]
    pub const fn hdcp_vh(&self, n: usize) -> &HdcpVh {
        &self.hdcp_vh[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0x52a5..0x52b9 - Sink VH' byte, ordered in little endian (byte at address 0x525a belongs to byte 0 of VH0). If Attr has not been granted (see register a_ksvmemctrl), the value read is 8'hff. In this address space 20 VH bytes are mapped, which allow for 5 VH values, each with 4 bytes (32bits)."]
    #[inline(always)]
    pub fn hdcp_vh_iter(&self) -> impl Iterator<Item = &HdcpVh> {
        self.hdcp_vh.iter()
    }
    #[doc = "0x52b9 - Register containing the LSB of KSV list size (ksv_list_size\\[7:0\\]). If Attr has not been granted (see register a_ksvmemctrl), the value read is 8'hff."]
    #[inline(always)]
    pub const fn hdcp_revoc_size_0(&self) -> &HdcpRevocSize0 {
        &self.hdcp_revoc_size_0
    }
    #[doc = "0x52ba - Register containing the MSB of KSV list size (ksv_list_size\\[15:8\\]). If Attr has not been granted (see register a_ksvmemctrl), the value read is 8'hff."]
    #[inline(always)]
    pub const fn hdcp_revoc_size_1(&self) -> &HdcpRevocSize1 {
        &self.hdcp_revoc_size_1
    }
    #[doc = "0x52bb..0x667f - Revocation KSV byte, ordered in little endian (byte at address 0x52bb belongs to byte 0 of the first revoked KSV). If Attr has not been granted (see register a_ksvmemctrl), the value read is 8'hff. In this address space 5060 revoked KSV bytes are mapped, which allow for 1012 KSV values, each with 5 bytes (40 bits)."]
    #[inline(always)]
    pub const fn hdcp_revoc_list(&self, n: usize) -> &HdcpRevocList {
        &self.hdcp_revoc_list[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0x52bb..0x667f - Revocation KSV byte, ordered in little endian (byte at address 0x52bb belongs to byte 0 of the first revoked KSV). If Attr has not been granted (see register a_ksvmemctrl), the value read is 8'hff. In this address space 5060 revoked KSV bytes are mapped, which allow for 1012 KSV values, each with 5 bytes (40 bits)."]
    #[inline(always)]
    pub fn hdcp_revoc_list_iter(&self) -> impl Iterator<Item = &HdcpRevocList> {
        self.hdcp_revoc_list.iter()
    }
    #[doc = "0x7800 - Contains the value of BKSV\\[7:0\\]."]
    #[inline(always)]
    pub const fn hdcpreg_bksv0(&self) -> &HdcpregBksv0 {
        &self.hdcpreg_bksv0
    }
    #[doc = "0x7801 - Description: Contains the value of BKSV\\[15:8\\]."]
    #[inline(always)]
    pub const fn hdcpreg_bksv1(&self) -> &HdcpregBksv1 {
        &self.hdcpreg_bksv1
    }
    #[doc = "0x7802 - Contains the value of BKSV\\[23:16\\]."]
    #[inline(always)]
    pub const fn hdcpreg_bksv2(&self) -> &HdcpregBksv2 {
        &self.hdcpreg_bksv2
    }
    #[doc = "0x7803 - Contains the value of BKSV\\[31:24\\]."]
    #[inline(always)]
    pub const fn hdcpreg_bksv3(&self) -> &HdcpregBksv3 {
        &self.hdcpreg_bksv3
    }
    #[doc = "0x7804 - Contains the value of BKSV\\[39:32\\]."]
    #[inline(always)]
    pub const fn hdcpreg_bksv4(&self) -> &HdcpregBksv4 {
        &self.hdcpreg_bksv4
    }
    #[doc = "0x7805 - When oanbypass=1, the value of AN used in the HDCP engine comes from the hdcpreg_an0 to hdcpreg_an7 registers. When oanbypass=0, the value of AN used in the HDCP engine comes from the random number input."]
    #[inline(always)]
    pub const fn hdcpreg_anconf(&self) -> &HdcpregAnconf {
        &self.hdcpreg_anconf
    }
    #[doc = "0x7806 - Contains the value of AN\\[7:0\\]"]
    #[inline(always)]
    pub const fn hdcpreg_an0(&self) -> &HdcpregAn0 {
        &self.hdcpreg_an0
    }
    #[doc = "0x7807 - Contains the value of AN\\[15:8\\]"]
    #[inline(always)]
    pub const fn hdcpreg_an1(&self) -> &HdcpregAn1 {
        &self.hdcpreg_an1
    }
    #[doc = "0x7808 - Contains the value of AN\\[23:16\\]"]
    #[inline(always)]
    pub const fn hdcpreg_an2(&self) -> &HdcpregAn2 {
        &self.hdcpreg_an2
    }
    #[doc = "0x7809 - Contains the value of AN\\[31:24\\]"]
    #[inline(always)]
    pub const fn hdcpreg_an3(&self) -> &HdcpregAn3 {
        &self.hdcpreg_an3
    }
    #[doc = "0x780a - Contains the value of AN\\[39:32\\]"]
    #[inline(always)]
    pub const fn hdcpreg_an4(&self) -> &HdcpregAn4 {
        &self.hdcpreg_an4
    }
    #[doc = "0x780b - Contains the value of AN\\[47:40\\]"]
    #[inline(always)]
    pub const fn hdcpreg_an5(&self) -> &HdcpregAn5 {
        &self.hdcpreg_an5
    }
    #[doc = "0x780c - Contains the value of AN\\[55:48\\]"]
    #[inline(always)]
    pub const fn hdcpreg_an6(&self) -> &HdcpregAn6 {
        &self.hdcpreg_an6
    }
    #[doc = "0x780d - Contains the value of BKSV\\[63:56\\]"]
    #[inline(always)]
    pub const fn hdcpreg_an7(&self) -> &HdcpregAn7 {
        &self.hdcpreg_an7
    }
    #[doc = "0x780e - When set (1'b1), this bit activates the decryption of the Device Private keys."]
    #[inline(always)]
    pub const fn hdcpreg_rmlctl(&self) -> &HdcpregRmlctl {
        &self.hdcpreg_rmlctl
    }
    #[doc = "0x780f - Current Device Private Key being written plus one. Position 0 is occupied by the AKSV."]
    #[inline(always)]
    pub const fn hdcpreg_rmlsts(&self) -> &HdcpregRmlsts {
        &self.hdcpreg_rmlsts
    }
    #[doc = "0x7810 - Least significant byte of the decryption seed value (dpk_decrypt_seed\\[7:0\\])."]
    #[inline(always)]
    pub const fn hdcpreg_seed0(&self) -> &HdcpregSeed0 {
        &self.hdcpreg_seed0
    }
    #[doc = "0x7811 - Most significant byte of the decryption seed value (dpk_decrypt_seed\\[15:8\\])."]
    #[inline(always)]
    pub const fn hdcpreg_seed1(&self) -> &HdcpregSeed1 {
        &self.hdcpreg_seed1
    }
    #[doc = "0x7812 - Byte of the encrypted DPK value. dpk\\[7:0\\]
When this byte is written, a strobe signal is generated that triggers the decryption and/or storage of the DPK word on the DPK internal RAM memory."]
    #[inline(always)]
    pub const fn hdcpreg_dpk0(&self) -> &HdcpregDpk0 {
        &self.hdcpreg_dpk0
    }
    #[doc = "0x7813 - Byte of the encrypted DPK value. dpk\\[15:8\\]"]
    #[inline(always)]
    pub const fn hdcpreg_dpk1(&self) -> &HdcpregDpk1 {
        &self.hdcpreg_dpk1
    }
    #[doc = "0x7814 - Byte of the encrypted DPK value. dpk\\[23:16\\]"]
    #[inline(always)]
    pub const fn hdcpreg_dpk2(&self) -> &HdcpregDpk2 {
        &self.hdcpreg_dpk2
    }
    #[doc = "0x7815 - Byte of the encrypted DPK value. dpk\\[31:24\\]"]
    #[inline(always)]
    pub const fn hdcpreg_dpk3(&self) -> &HdcpregDpk3 {
        &self.hdcpreg_dpk3
    }
    #[doc = "0x7816 - Byte of the encrypted DPK value. dpk\\[39:32\\]"]
    #[inline(always)]
    pub const fn hdcpreg_dpk4(&self) -> &HdcpregDpk4 {
        &self.hdcpreg_dpk4
    }
    #[doc = "0x7817 - Contains the value of DPK\\[x\\]\\[47:40\\]"]
    #[inline(always)]
    pub const fn hdcpreg_dpk5(&self) -> &HdcpregDpk5 {
        &self.hdcpreg_dpk5
    }
    #[doc = "0x7818 - Contains the value of DPK\\[x\\]\\[55:48\\]"]
    #[inline(always)]
    pub const fn hdcpreg_dpk6(&self) -> &HdcpregDpk6 {
        &self.hdcpreg_dpk6
    }
    #[doc = "0x7900 - Reserved for future use."]
    #[inline(always)]
    pub const fn hdcp22reg_id(&self) -> &Hdcp22regId {
        &self.hdcp22reg_id
    }
    #[doc = "0x7904 - HDCP 2.2 switch lock 1'b0: Enables you to change the direction of the HDCP 2.2 versus 1.4 switch by using the hdcp22_ovr_en and hdcp22_ovr_val. 1'b1: You can still write to hdcp22_ovr_en and hdcp22_ovr_val but has no effect over the HDCP 2.2 versus 1.4 switch, that keeps as it was configured by hdcp22_ovr_en and hdcp22_ovr_val at the time the 1'b1 was written to this bit field. Once you set the value to 1'b1, you can change the value back to 1'b0 only by issuing a master reset to the Hdmi_tx."]
    #[inline(always)]
    pub const fn hdcp22reg_ctrl(&self) -> &Hdcp22regCtrl {
        &self.hdcp22reg_ctrl
    }
    #[doc = "0x7905 - HDCP 2.2 versus 1.4 color depth override enable: 1'b0: The default 1'b0 value indicates that the color depth sent to the external interface is the one configured in the vp_pr_cd.color_depth register field. 1'b1: Although the used color depth for pixel encoding is defined by the field vp_pr_cd.color_depth register, the color depth sent to the external interface is the one defined in register field hdcp22reg_ctrl1.hdcp22_cd_ovr_val."]
    #[inline(always)]
    pub const fn hdcp22reg_ctrl1(&self) -> &Hdcp22regCtrl1 {
        &self.hdcp22reg_ctrl1
    }
    #[doc = "0x7908 - HDCP 2.2 HPD external interface status after lock mechanism (hdcp22reg_ctrl.hdcp22_switch_lock, hdcp22reg_ctrl.hdcp22_ovr_en and hdcp22reg_ctrl.hdcp22_ovr_val). 1'b0: Sink not detected (HPD line clear ) 1'b1: Sink detected (HPD line set)"]
    #[inline(always)]
    pub const fn hdcp22reg_sts(&self) -> &Hdcp22regSts {
        &self.hdcp22reg_sts
    }
    #[doc = "0x790c - Active high interrupt mask to HDCP 2.2 capable rise interrupt status"]
    #[inline(always)]
    pub const fn hdcp22reg_mask(&self) -> &Hdcp22regMask {
        &self.hdcp22reg_mask
    }
    #[doc = "0x790d - HDCP 2.2 capable rise interrupt status sticky bit. Clear by Write 1 to this bit field"]
    #[inline(always)]
    pub const fn hdcp22reg_stat(&self) -> &Hdcp22regStat {
        &self.hdcp22reg_stat
    }
    #[doc = "0x790e - Active high interrupt mute to HDCP 2.2 capable rise interrupt status"]
    #[inline(always)]
    pub const fn hdcp22reg_mute(&self) -> &Hdcp22regMute {
        &self.hdcp22reg_mute
    }
    #[doc = "0x7d00 - 2'b00: Signal Free Time = 3-bit periods. Previous attempt to send frame is unsuccessful. 2'b01: Signal Free Time = 5-bit periods. New initiator wants to send a frame. 2'b10: Signal Free Time = 7-bit periods. Present initiator wants to send another frame immediately after its previous frame. (specification CEC 9.1). 2'b11: Illegal value. If software writes this value, hardware sets the value to the default 2'b01."]
    #[inline(always)]
    pub const fn cec_ctrl(&self) -> &CecCtrl {
        &self.cec_ctrl
    }
    #[doc = "0x7d02 - The current transmission is successful (for initiator only)"]
    #[inline(always)]
    pub const fn cec_mask(&self) -> &CecMask {
        &self.cec_mask
    }
    #[doc = "0x7d05 - Logical address 0 - Device TV"]
    #[inline(always)]
    pub const fn cec_addr_l(&self) -> &CecAddrL {
        &self.cec_addr_l
    }
    #[doc = "0x7d06 - Logical address 8 - Playback Device 2"]
    #[inline(always)]
    pub const fn cec_addr_h(&self) -> &CecAddrH {
        &self.cec_addr_h
    }
    #[doc = "0x7d07 - CEC Transmitter Counter register 5'd0: No data needs to be transmitted 5'd1: Frame size is 1 byte 5'd16: Frame size is 16 bytes"]
    #[inline(always)]
    pub const fn cec_tx_cnt(&self) -> &CecTxCnt {
        &self.cec_tx_cnt
    }
    #[doc = "0x7d08 - CEC Receiver Counter register: 5'd0: No data received 5'd1: 1-byte data is received 5'd16: 16-byte data is received"]
    #[inline(always)]
    pub const fn cec_rx_cnt(&self) -> &CecRxCnt {
        &self.cec_rx_cnt
    }
    #[doc = "0x7d10..0x7d20 - Data byte\\[x\\], where x is 0 to 15"]
    #[inline(always)]
    pub const fn cec_tx_data(&self, n: usize) -> &CecTxData {
        &self.cec_tx_data[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0x7d10..0x7d20 - Data byte\\[x\\], where x is 0 to 15"]
    #[inline(always)]
    pub fn cec_tx_data_iter(&self) -> impl Iterator<Item = &CecTxData> {
        self.cec_tx_data.iter()
    }
    #[doc = "0x7d20..0x7d30 - Data byte\\[x\\], where x is 0 to 15"]
    #[inline(always)]
    pub const fn cec_rx_data(&self, n: usize) -> &CecRxData {
        &self.cec_rx_data[n]
    }
    #[doc = "Iterator for array of:"]
    #[doc = "0x7d20..0x7d30 - Data byte\\[x\\], where x is 0 to 15"]
    #[inline(always)]
    pub fn cec_rx_data_iter(&self) -> impl Iterator<Item = &CecRxData> {
        self.cec_rx_data.iter()
    }
    #[doc = "0x7d30 - When a frame is received, this bit would be active. The CEC controller answers to all the messages with NACK until the CPU writes it to '0'."]
    #[inline(always)]
    pub const fn cec_lock(&self) -> &CecLock {
        &self.cec_lock
    }
    #[doc = "0x7d31 - OPCODE 0x04 wake up enable"]
    #[inline(always)]
    pub const fn cec_wakeupctrl(&self) -> &CecWakeupctrl {
        &self.cec_wakeupctrl
    }
    #[doc = "0x7e00 - Slave address to be sent during read and write normal operations."]
    #[inline(always)]
    pub const fn i2cm_slave(&self) -> &I2cmSlave {
        &self.i2cm_slave
    }
    #[doc = "0x7e01 - Register address for read and write operations"]
    #[inline(always)]
    pub const fn i2cm_address(&self) -> &I2cmAddress {
        &self.i2cm_address
    }
    #[doc = "0x7e02 - Data to be written on register pointed by address\\[7:0\\]."]
    #[inline(always)]
    pub const fn i2cm_datao(&self) -> &I2cmDatao {
        &self.i2cm_datao
    }
    #[doc = "0x7e03 - Data read from register pointed by address\\[7:0\\]."]
    #[inline(always)]
    pub const fn i2cm_datai(&self) -> &I2cmDatai {
        &self.i2cm_datai
    }
    #[doc = "0x7e04 - Single byte read operation request"]
    #[inline(always)]
    pub const fn i2cm_operation(&self) -> &I2cmOperation {
        &self.i2cm_operation
    }
    #[doc = "0x7e05 - Reserved for future use."]
    #[inline(always)]
    pub const fn i2cm_int(&self) -> &I2cmInt {
        &self.i2cm_int
    }
    #[doc = "0x7e06 - Arbitration error interrupt mask signal."]
    #[inline(always)]
    pub const fn i2cm_ctlint(&self) -> &I2cmCtlint {
        &self.i2cm_ctlint
    }
    #[doc = "0x7e07 - Reserved as \"spare\" bit with no associated functionality."]
    #[inline(always)]
    pub const fn i2cm_div(&self) -> &I2cmDiv {
        &self.i2cm_div
    }
    #[doc = "0x7e08 - I2C DDC Segment Address Configuration Register"]
    #[inline(always)]
    pub const fn i2cm_segaddr(&self) -> &I2cmSegaddr {
        &self.i2cm_segaddr
    }
    #[doc = "0x7e09 - I2C Master Software Reset. Active by writing a zero and auto cleared to one in the following cycle."]
    #[inline(always)]
    pub const fn i2cm_softrstz(&self) -> &I2cmSoftrstz {
        &self.i2cm_softrstz
    }
    #[doc = "0x7e0a - I2C DDC Segment Pointer Register"]
    #[inline(always)]
    pub const fn i2cm_segptr(&self) -> &I2cmSegptr {
        &self.i2cm_segptr
    }
    #[doc = "0x7e0b - I2C DDC Slow Speed SCL High Level Control Register 1"]
    #[inline(always)]
    pub const fn i2cm_ss_scl_hcnt_1_addr(&self) -> &I2cmSsSclHcnt1Addr {
        &self.i2cm_ss_scl_hcnt_1_addr
    }
    #[doc = "0x7e0c - I2C DDC Slow Speed SCL High Level Control Register 0"]
    #[inline(always)]
    pub const fn i2cm_ss_scl_hcnt_0_addr(&self) -> &I2cmSsSclHcnt0Addr {
        &self.i2cm_ss_scl_hcnt_0_addr
    }
    #[doc = "0x7e0d - I2C DDC Slow Speed SCL Low Level Control Register 1"]
    #[inline(always)]
    pub const fn i2cm_ss_scl_lcnt_1_addr(&self) -> &I2cmSsSclLcnt1Addr {
        &self.i2cm_ss_scl_lcnt_1_addr
    }
    #[doc = "0x7e0e - I2C DDC Slow Speed SCL Low Level Control Register 0"]
    #[inline(always)]
    pub const fn i2cm_ss_scl_lcnt_0_addr(&self) -> &I2cmSsSclLcnt0Addr {
        &self.i2cm_ss_scl_lcnt_0_addr
    }
    #[doc = "0x7e0f - I2C DDC Fast Speed SCL High Level Control Register 1"]
    #[inline(always)]
    pub const fn i2cm_fs_scl_hcnt_1_addr(&self) -> &I2cmFsSclHcnt1Addr {
        &self.i2cm_fs_scl_hcnt_1_addr
    }
    #[doc = "0x7e10 - I2C DDC Fast Speed SCL High Level Control Register 0"]
    #[inline(always)]
    pub const fn i2cm_fs_scl_hcnt_0_addr(&self) -> &I2cmFsSclHcnt0Addr {
        &self.i2cm_fs_scl_hcnt_0_addr
    }
    #[doc = "0x7e11 - I2C DDC Fast Speed SCL Low Level Control Register 1"]
    #[inline(always)]
    pub const fn i2cm_fs_scl_lcnt_1_addr(&self) -> &I2cmFsSclLcnt1Addr {
        &self.i2cm_fs_scl_lcnt_1_addr
    }
    #[doc = "0x7e12 - I2C DDC Fast Speed SCL Low Level Control Register 0"]
    #[inline(always)]
    pub const fn i2cm_fs_scl_lcnt_0_addr(&self) -> &I2cmFsSclLcnt0Addr {
        &self.i2cm_fs_scl_lcnt_0_addr
    }
    #[doc = "0x7e13 - Defines the number of SFR clock cycles to meet tHD;DAT (300 ns) osda_hold = round_to_high_integer (300 ns / (1 / isfrclk_frequency))"]
    #[inline(always)]
    pub const fn i2cm_sda_hold(&self) -> &I2cmSdaHold {
        &self.i2cm_sda_hold
    }
    #[doc = "0x7e14 - When set to 1'b1, a SCDC Update Read is performed and the read data loaded into registers i2cm_scdc_update0 and i2cm_scdc_update1."]
    #[inline(always)]
    pub const fn i2cm_scdc_read_update(&self) -> &I2cmScdcReadUpdate {
        &self.i2cm_scdc_read_update
    }
    #[doc = "0x7e20 - Byte 0 of a I2C read buffer sequential read (from address i2cm_address)"]
    #[inline(always)]
    pub const fn i2cm_read_buff0(&self) -> &I2cmReadBuff0 {
        &self.i2cm_read_buff0
    }
    #[doc = "0x7e21 - Byte 1 of a I2C read buffer sequential read (from address i2cm_address+1)"]
    #[inline(always)]
    pub const fn i2cm_read_buff1(&self) -> &I2cmReadBuff1 {
        &self.i2cm_read_buff1
    }
    #[doc = "0x7e22 - Byte 2 of a I2C read buffer sequential read (from address i2cm_address+2)"]
    #[inline(always)]
    pub const fn i2cm_read_buff2(&self) -> &I2cmReadBuff2 {
        &self.i2cm_read_buff2
    }
    #[doc = "0x7e23 - Byte 3 of a I2C read buffer sequential read (from address i2cm_address+3)"]
    #[inline(always)]
    pub const fn i2cm_read_buff3(&self) -> &I2cmReadBuff3 {
        &self.i2cm_read_buff3
    }
    #[doc = "0x7e24 - Byte 4 of a I2C read buffer sequential read (from address i2cm_address+4)"]
    #[inline(always)]
    pub const fn i2cm_read_buff4(&self) -> &I2cmReadBuff4 {
        &self.i2cm_read_buff4
    }
    #[doc = "0x7e25 - Byte 5 of a I2C read buffer sequential read (from address i2cm_address+5)"]
    #[inline(always)]
    pub const fn i2cm_read_buff5(&self) -> &I2cmReadBuff5 {
        &self.i2cm_read_buff5
    }
    #[doc = "0x7e26 - Byte 6 of a I2C read buffer sequential read (from address i2cm_address+6)"]
    #[inline(always)]
    pub const fn i2cm_read_buff6(&self) -> &I2cmReadBuff6 {
        &self.i2cm_read_buff6
    }
    #[doc = "0x7e27 - Byte 7 of a I2C read buffer sequential read (from address i2cm_address+7)"]
    #[inline(always)]
    pub const fn i2cm_read_buff7(&self) -> &I2cmReadBuff7 {
        &self.i2cm_read_buff7
    }
    #[doc = "0x7e30 - Byte 0 of a SCDC I2C update sequential read"]
    #[inline(always)]
    pub const fn i2cm_scdc_update0(&self) -> &I2cmScdcUpdate0 {
        &self.i2cm_scdc_update0
    }
    #[doc = "0x7e31 - Byte 1 of a SCDC I2C update sequential read Bits Name Attr Description"]
    #[inline(always)]
    pub const fn i2cm_scdc_update1(&self) -> &I2cmScdcUpdate1 {
        &self.i2cm_scdc_update1
    }
}
#[doc = "DESIGN_ID (r) register accessor: Design ID code fixed by HDMI that Identifies the instantiated DWC_hdmi_tx controller. For example, DWC_hdmi_tx 2.11a, DESIGN_ID = 21\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`design_id::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@design_id`]
module"]
#[doc(alias = "DESIGN_ID")]
pub type DesignId = crate::Reg<design_id::DesignIdSpec>;
#[doc = "Design ID code fixed by HDMI that Identifies the instantiated DWC_hdmi_tx controller. For example, DWC_hdmi_tx 2.11a, DESIGN_ID = 21"]
pub mod design_id;
#[doc = "REVISION_ID (r) register accessor: Revision ID code fixed by HDMI that Identifies the instantiated DWC_hdmi_tx controller.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`revision_id::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@revision_id`]
module"]
#[doc(alias = "REVISION_ID")]
pub type RevisionId = crate::Reg<revision_id::RevisionIdSpec>;
#[doc = "Revision ID code fixed by HDMI that Identifies the instantiated DWC_hdmi_tx controller."]
pub mod revision_id;
#[doc = "PRODUCT_ID0 (r) register accessor: This one byte fixed code Identifies HDMI 's product line (\"A0h\" for DWC_hdmi_tx products).\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`product_id0::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@product_id0`]
module"]
#[doc(alias = "PRODUCT_ID0")]
pub type ProductId0 = crate::Reg<product_id0::ProductId0Spec>;
#[doc = "This one byte fixed code Identifies HDMI 's product line (\"A0h\" for DWC_hdmi_tx products)."]
pub mod product_id0;
#[doc = "PRODUCT_ID1 (r) register accessor: This bit Identifies H Controller according to HDMI product line.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`product_id1::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@product_id1`]
module"]
#[doc(alias = "PRODUCT_ID1")]
pub type ProductId1 = crate::Reg<product_id1::ProductId1Spec>;
#[doc = "This bit Identifies H Controller according to HDMI product line."]
pub mod product_id1;
#[doc = "CONFIG0_ID (r) register accessor: Indicates if HDCP is present\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`config0_id::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@config0_id`]
module"]
#[doc(alias = "CONFIG0_ID")]
pub type Config0Id = crate::Reg<config0_id::Config0IdSpec>;
#[doc = "Indicates if HDCP is present"]
pub mod config0_id;
#[doc = "CONFIG1_ID (r) register accessor: Reserved for future use.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`config1_id::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@config1_id`]
module"]
#[doc(alias = "CONFIG1_ID")]
pub type Config1Id = crate::Reg<config1_id::Config1IdSpec>;
#[doc = "Reserved for future use."]
pub mod config1_id;
#[doc = "CONFIG2_ID (r) register accessor: Indicates the type of PHY interface selected: 0x00: Legacy PHY (HDMI Tx PHY) 0xF2: PHY GEN2 (HDMI 3D TX PHY) 0xE2: PHY GEN2 (HDMI 3D TX PHY) + HEAC PHY 0xC2: PHY MHL COMBO (MHL+HDMI 2.0 TX PHY) 0xB2: PHY MHL COMBO (MHL+HDMI 2.0 TX PHY) + HEAC PHY 0xF3: PHY HDMI 20 (HDMI 2.0 TX PHY) 0xE3: PHY HDMI 20 (HDMI 2.0 TX PHY) + HEAC PHY 0xFE: External PHY\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`config2_id::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@config2_id`]
module"]
#[doc(alias = "CONFIG2_ID")]
pub type Config2Id = crate::Reg<config2_id::Config2IdSpec>;
#[doc = "Indicates the type of PHY interface selected: 0x00: Legacy PHY (HDMI Tx PHY) 0xF2: PHY GEN2 (HDMI 3D TX PHY) 0xE2: PHY GEN2 (HDMI 3D TX PHY) + HEAC PHY 0xC2: PHY MHL COMBO (MHL+HDMI 2.0 TX PHY) 0xB2: PHY MHL COMBO (MHL+HDMI 2.0 TX PHY) + HEAC PHY 0xF3: PHY HDMI 20 (HDMI 2.0 TX PHY) 0xE3: PHY HDMI 20 (HDMI 2.0 TX PHY) + HEAC PHY 0xFE: External PHY"]
pub mod config2_id;
#[doc = "CONFIG3_ID (r) register accessor: Indicates that the audio interface is Generic Parallel Audio (GPAUD)\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`config3_id::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@config3_id`]
module"]
#[doc(alias = "CONFIG3_ID")]
pub type Config3Id = crate::Reg<config3_id::Config3IdSpec>;
#[doc = "Indicates that the audio interface is Generic Parallel Audio (GPAUD)"]
pub mod config3_id;
#[doc = "IH_FC_STAT0 (rw) register accessor: Active after successful transmission of an Null packet. Due to high number of audio sample packets transmitted, this interrupt is by default masked at frame composer.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ih_fc_stat0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ih_fc_stat0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ih_fc_stat0`]
module"]
#[doc(alias = "IH_FC_STAT0")]
pub type IhFcStat0 = crate::Reg<ih_fc_stat0::IhFcStat0Spec>;
#[doc = "Active after successful transmission of an Null packet. Due to high number of audio sample packets transmitted, this interrupt is by default masked at frame composer."]
pub mod ih_fc_stat0;
#[doc = "IH_FC_STAT1 (rw) register accessor: Active after successful transmission of an General Control Packet.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ih_fc_stat1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ih_fc_stat1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ih_fc_stat1`]
module"]
#[doc(alias = "IH_FC_STAT1")]
pub type IhFcStat1 = crate::Reg<ih_fc_stat1::IhFcStat1Spec>;
#[doc = "Active after successful transmission of an General Control Packet."]
pub mod ih_fc_stat1;
#[doc = "IH_FC_STAT2 (rw) register accessor: Frame Composer high priority packet queue descriptor overflow indication\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ih_fc_stat2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ih_fc_stat2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ih_fc_stat2`]
module"]
#[doc(alias = "IH_FC_STAT2")]
pub type IhFcStat2 = crate::Reg<ih_fc_stat2::IhFcStat2Spec>;
#[doc = "Frame Composer high priority packet queue descriptor overflow indication"]
pub mod ih_fc_stat2;
#[doc = "IH_AS_STAT0 (rw) register accessor: Audio Sampler audio FIFO full indication.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ih_as_stat0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ih_as_stat0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ih_as_stat0`]
module"]
#[doc(alias = "IH_AS_STAT0")]
pub type IhAsStat0 = crate::Reg<ih_as_stat0::IhAsStat0Spec>;
#[doc = "Audio Sampler audio FIFO full indication."]
pub mod ih_as_stat0;
#[doc = "IH_PHY_STAT0 (rw) register accessor: HDMI Hot Plug Detect indication. You may need to mask or change polarity of this interrupt after it has become active.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ih_phy_stat0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ih_phy_stat0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ih_phy_stat0`]
module"]
#[doc(alias = "IH_PHY_STAT0")]
pub type IhPhyStat0 = crate::Reg<ih_phy_stat0::IhPhyStat0Spec>;
#[doc = "HDMI Hot Plug Detect indication. You may need to mask or change polarity of this interrupt after it has become active."]
pub mod ih_phy_stat0;
#[doc = "IH_I2CM_STAT0 (rw) register accessor: I2C Master error indication\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ih_i2cm_stat0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ih_i2cm_stat0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ih_i2cm_stat0`]
module"]
#[doc(alias = "IH_I2CM_STAT0")]
pub type IhI2cmStat0 = crate::Reg<ih_i2cm_stat0::IhI2cmStat0Spec>;
#[doc = "I2C Master error indication"]
pub mod ih_i2cm_stat0;
#[doc = "IH_CEC_STAT0 (rw) register accessor: CEC Done Indication\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ih_cec_stat0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ih_cec_stat0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ih_cec_stat0`]
module"]
#[doc(alias = "IH_CEC_STAT0")]
pub type IhCecStat0 = crate::Reg<ih_cec_stat0::IhCecStat0Spec>;
#[doc = "CEC Done Indication"]
pub mod ih_cec_stat0;
#[doc = "IH_VP_STAT0 (rw) register accessor: Reserved and read as zero\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ih_vp_stat0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ih_vp_stat0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ih_vp_stat0`]
module"]
#[doc(alias = "IH_VP_STAT0")]
pub type IhVpStat0 = crate::Reg<ih_vp_stat0::IhVpStat0Spec>;
#[doc = "Reserved and read as zero"]
pub mod ih_vp_stat0;
#[doc = "IH_I2CMPHY_STAT0 (rw) register accessor: I2C Master PHY error indication\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ih_i2cmphy_stat0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ih_i2cmphy_stat0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ih_i2cmphy_stat0`]
module"]
#[doc(alias = "IH_I2CMPHY_STAT0")]
pub type IhI2cmphyStat0 = crate::Reg<ih_i2cmphy_stat0::IhI2cmphyStat0Spec>;
#[doc = "I2C Master PHY error indication"]
pub mod ih_i2cmphy_stat0;
#[doc = "IH_AHBDMAAUD_STAT0 (rw) register accessor: AHB audio DMA lost ownership interrupt\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ih_ahbdmaaud_stat0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ih_ahbdmaaud_stat0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ih_ahbdmaaud_stat0`]
module"]
#[doc(alias = "IH_AHBDMAAUD_STAT0")]
pub type IhAhbdmaaudStat0 = crate::Reg<ih_ahbdmaaud_stat0::IhAhbdmaaudStat0Spec>;
#[doc = "AHB audio DMA lost ownership interrupt"]
pub mod ih_ahbdmaaud_stat0;
#[doc = "IH_DECODE (r) register accessor: Interruption active at the ih_ahbdmaaud_stat0 register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ih_decode::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ih_decode`]
module"]
#[doc(alias = "IH_DECODE")]
pub type IhDecode = crate::Reg<ih_decode::IhDecodeSpec>;
#[doc = "Interruption active at the ih_ahbdmaaud_stat0 register"]
pub mod ih_decode;
#[doc = "IH_MUTE_FC_STAT0 (rw) register accessor: When set to 1, mutes ih_fc_stat0\\[0\\]\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ih_mute_fc_stat0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ih_mute_fc_stat0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ih_mute_fc_stat0`]
module"]
#[doc(alias = "IH_MUTE_FC_STAT0")]
pub type IhMuteFcStat0 = crate::Reg<ih_mute_fc_stat0::IhMuteFcStat0Spec>;
#[doc = "When set to 1, mutes ih_fc_stat0\\[0\\]"]
pub mod ih_mute_fc_stat0;
#[doc = "IH_MUTE_FC_STAT1 (rw) register accessor: When set to 1, mutes ih_fc_stat1\\[2\\]. Otherwise, this field is a \"spare\" bit with no associated functionality.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ih_mute_fc_stat1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ih_mute_fc_stat1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ih_mute_fc_stat1`]
module"]
#[doc(alias = "IH_MUTE_FC_STAT1")]
pub type IhMuteFcStat1 = crate::Reg<ih_mute_fc_stat1::IhMuteFcStat1Spec>;
#[doc = "When set to 1, mutes ih_fc_stat1\\[2\\]. Otherwise, this field is a \"spare\" bit with no associated functionality."]
pub mod ih_mute_fc_stat1;
#[doc = "IH_MUTE_FC_STAT2 (rw) register accessor: When set to 1, mutes ih_fc_stat2\\[0\\]\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ih_mute_fc_stat2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ih_mute_fc_stat2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ih_mute_fc_stat2`]
module"]
#[doc(alias = "IH_MUTE_FC_STAT2")]
pub type IhMuteFcStat2 = crate::Reg<ih_mute_fc_stat2::IhMuteFcStat2Spec>;
#[doc = "When set to 1, mutes ih_fc_stat2\\[0\\]"]
pub mod ih_mute_fc_stat2;
#[doc = "IH_MUTE_AS_STAT0 (rw) register accessor: When set to 1, mutes ih_as_stat0\\[0\\]\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ih_mute_as_stat0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ih_mute_as_stat0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ih_mute_as_stat0`]
module"]
#[doc(alias = "IH_MUTE_AS_STAT0")]
pub type IhMuteAsStat0 = crate::Reg<ih_mute_as_stat0::IhMuteAsStat0Spec>;
#[doc = "When set to 1, mutes ih_as_stat0\\[0\\]"]
pub mod ih_mute_as_stat0;
#[doc = "IH_MUTE_PHY_STAT0 (rw) register accessor: When set to 1, mutes ih_phy_stat0\\[0\\]\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ih_mute_phy_stat0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ih_mute_phy_stat0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ih_mute_phy_stat0`]
module"]
#[doc(alias = "IH_MUTE_PHY_STAT0")]
pub type IhMutePhyStat0 = crate::Reg<ih_mute_phy_stat0::IhMutePhyStat0Spec>;
#[doc = "When set to 1, mutes ih_phy_stat0\\[0\\]"]
pub mod ih_mute_phy_stat0;
#[doc = "IH_MUTE_I2CM_STAT0 (rw) register accessor: When set to 1, mutes ih_i2cm_stat0\\[0\\]\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ih_mute_i2cm_stat0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ih_mute_i2cm_stat0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ih_mute_i2cm_stat0`]
module"]
#[doc(alias = "IH_MUTE_I2CM_STAT0")]
pub type IhMuteI2cmStat0 = crate::Reg<ih_mute_i2cm_stat0::IhMuteI2cmStat0Spec>;
#[doc = "When set to 1, mutes ih_i2cm_stat0\\[0\\]"]
pub mod ih_mute_i2cm_stat0;
#[doc = "IH_MUTE_CEC_STAT0 (rw) register accessor: When set to 1, mutes ih_cec_stat0\\[0\\]\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ih_mute_cec_stat0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ih_mute_cec_stat0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ih_mute_cec_stat0`]
module"]
#[doc(alias = "IH_MUTE_CEC_STAT0")]
pub type IhMuteCecStat0 = crate::Reg<ih_mute_cec_stat0::IhMuteCecStat0Spec>;
#[doc = "When set to 1, mutes ih_cec_stat0\\[0\\]"]
pub mod ih_mute_cec_stat0;
#[doc = "IH_MUTE_VP_STAT0 (rw) register accessor: Reserved as “spare” bit with no associated functionality.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ih_mute_vp_stat0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ih_mute_vp_stat0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ih_mute_vp_stat0`]
module"]
#[doc(alias = "IH_MUTE_VP_STAT0")]
pub type IhMuteVpStat0 = crate::Reg<ih_mute_vp_stat0::IhMuteVpStat0Spec>;
#[doc = "Reserved as “spare” bit with no associated functionality."]
pub mod ih_mute_vp_stat0;
#[doc = "IH_MUTE_I2CMPHY_STAT0 (rw) register accessor: When set to 1, mutes ih_i2cmphy_stat0\\[0\\]\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ih_mute_i2cmphy_stat0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ih_mute_i2cmphy_stat0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ih_mute_i2cmphy_stat0`]
module"]
#[doc(alias = "IH_MUTE_I2CMPHY_STAT0")]
pub type IhMuteI2cmphyStat0 = crate::Reg<ih_mute_i2cmphy_stat0::IhMuteI2cmphyStat0Spec>;
#[doc = "When set to 1, mutes ih_i2cmphy_stat0\\[0\\]"]
pub mod ih_mute_i2cmphy_stat0;
#[doc = "IH_MUTE_AHBDMAAUD_STAT0 (rw) register accessor: When set to 1, mutes ih_ahbdmaaud_stat0\\[0\\]\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ih_mute_ahbdmaaud_stat0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ih_mute_ahbdmaaud_stat0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ih_mute_ahbdmaaud_stat0`]
module"]
#[doc(alias = "IH_MUTE_AHBDMAAUD_STAT0")]
pub type IhMuteAhbdmaaudStat0 = crate::Reg<ih_mute_ahbdmaaud_stat0::IhMuteAhbdmaaudStat0Spec>;
#[doc = "When set to 1, mutes ih_ahbdmaaud_stat0\\[0\\]"]
pub mod ih_mute_ahbdmaaud_stat0;
#[doc = "IH_MUTE (rw) register accessor: When set to 1, mutes the main interrupt line (where all interrupts are ORed). The sticky bit interrupts continue with their state; only the main interrupt line is muted.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ih_mute::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ih_mute::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ih_mute`]
module"]
#[doc(alias = "IH_MUTE")]
pub type IhMute = crate::Reg<ih_mute::IhMuteSpec>;
#[doc = "When set to 1, mutes the main interrupt line (where all interrupts are ORed). The sticky bit interrupts continue with their state; only the main interrupt line is muted."]
pub mod ih_mute;
#[doc = "TX_INVID0 (rw) register accessor: Internal data enable (DE) generator enable. If data enable is not available for the input video, set this bit to one to activate the internal data enable generator. Attention: This feature only works for input video modes that have native repetition (such as, all CEA videos). No desired pixel repetition can be used with this feature because these configurations only affect the Frame Composer and not this block. The DE Generator does not work for the following conditions: Transmission of video with CEA VIC 39 Transmission of 3D video using the field alternative structure\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`tx_invid0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`tx_invid0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tx_invid0`]
module"]
#[doc(alias = "TX_INVID0")]
pub type TxInvid0 = crate::Reg<tx_invid0::TxInvid0Spec>;
#[doc = "Internal data enable (DE) generator enable. If data enable is not available for the input video, set this bit to one to activate the internal data enable generator. Attention: This feature only works for input video modes that have native repetition (such as, all CEA videos). No desired pixel repetition can be used with this feature because these configurations only affect the Frame Composer and not this block. The DE Generator does not work for the following conditions: Transmission of video with CEA VIC 39 Transmission of 3D video using the field alternative structure"]
pub mod tx_invid0;
#[doc = "TX_INSTUFFING (rw) register accessor: 0b: When the dataen signal is low, the value in the gydata\\[15:0\\]
output is the one sampled from the corresponding input data. 1b: When the dataen signal is low, the value in the gydata\\[15:0\\]
output is given by the values in TX_GYDTA0 and TX_GYDATA1 registers.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`tx_instuffing::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`tx_instuffing::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tx_instuffing`]
module"]
#[doc(alias = "TX_INSTUFFING")]
pub type TxInstuffing = crate::Reg<tx_instuffing::TxInstuffingSpec>;
#[doc = "0b: When the dataen signal is low, the value in the gydata\\[15:0\\]
output is the one sampled from the corresponding input data. 1b: When the dataen signal is low, the value in the gydata\\[15:0\\]
output is given by the values in TX_GYDTA0 and TX_GYDATA1 registers."]
pub mod tx_instuffing;
#[doc = "TX_GYDATA0 (rw) register accessor: This register defines the value of gydata\\[7:0\\]
when TX_INSTUFFING\\[0\\]
(gydata_stuffing) is set to 1b.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`tx_gydata0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`tx_gydata0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tx_gydata0`]
module"]
#[doc(alias = "TX_GYDATA0")]
pub type TxGydata0 = crate::Reg<tx_gydata0::TxGydata0Spec>;
#[doc = "This register defines the value of gydata\\[7:0\\]
when TX_INSTUFFING\\[0\\]
(gydata_stuffing) is set to 1b."]
pub mod tx_gydata0;
#[doc = "TX_GYDATA1 (rw) register accessor: This register defines the value of gydata\\[15:8\\]
when TX_INSTUFFING\\[0\\]
(gydata_stuffing) is set to 1b.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`tx_gydata1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`tx_gydata1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tx_gydata1`]
module"]
#[doc(alias = "TX_GYDATA1")]
pub type TxGydata1 = crate::Reg<tx_gydata1::TxGydata1Spec>;
#[doc = "This register defines the value of gydata\\[15:8\\]
when TX_INSTUFFING\\[0\\]
(gydata_stuffing) is set to 1b."]
pub mod tx_gydata1;
#[doc = "TX_RCRDATA0 (rw) register accessor: This register defines the value of rcrydata\\[7:0\\]
when TX_INSTUFFING\\[1\\]
(rcrdata_stuffing) is set to 1b.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`tx_rcrdata0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`tx_rcrdata0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tx_rcrdata0`]
module"]
#[doc(alias = "TX_RCRDATA0")]
pub type TxRcrdata0 = crate::Reg<tx_rcrdata0::TxRcrdata0Spec>;
#[doc = "This register defines the value of rcrydata\\[7:0\\]
when TX_INSTUFFING\\[1\\]
(rcrdata_stuffing) is set to 1b."]
pub mod tx_rcrdata0;
#[doc = "TX_RCRDATA1 (rw) register accessor: This register defines the value of rcrydata\\[15:8\\]
when TX_INSTUFFING\\[1\\]
(rcrdata_stuffing) is set to 1b.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`tx_rcrdata1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`tx_rcrdata1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tx_rcrdata1`]
module"]
#[doc(alias = "TX_RCRDATA1")]
pub type TxRcrdata1 = crate::Reg<tx_rcrdata1::TxRcrdata1Spec>;
#[doc = "This register defines the value of rcrydata\\[15:8\\]
when TX_INSTUFFING\\[1\\]
(rcrdata_stuffing) is set to 1b."]
pub mod tx_rcrdata1;
#[doc = "TX_BCBDATA0 (rw) register accessor: This register defines the value of bcbdata\\[7:0\\]
when TX_INSTUFFING\\[2\\]
(bcbdata_stuffing) is set to 1b.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`tx_bcbdata0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`tx_bcbdata0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tx_bcbdata0`]
module"]
#[doc(alias = "TX_BCBDATA0")]
pub type TxBcbdata0 = crate::Reg<tx_bcbdata0::TxBcbdata0Spec>;
#[doc = "This register defines the value of bcbdata\\[7:0\\]
when TX_INSTUFFING\\[2\\]
(bcbdata_stuffing) is set to 1b."]
pub mod tx_bcbdata0;
#[doc = "TX_BCBDATA1 (rw) register accessor: This register defines the value of bcbdata\\[15:8\\]
when TX_INSTUFFING\\[2\\]
(bcbdata_stuffing) is set to 1b.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`tx_bcbdata1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`tx_bcbdata1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@tx_bcbdata1`]
module"]
#[doc(alias = "TX_BCBDATA1")]
pub type TxBcbdata1 = crate::Reg<tx_bcbdata1::TxBcbdata1Spec>;
#[doc = "This register defines the value of bcbdata\\[15:8\\]
when TX_INSTUFFING\\[2\\]
(bcbdata_stuffing) is set to 1b."]
pub mod tx_bcbdata1;
#[doc = "VP_STATUS (r) register accessor: Read only register that holds the \"packing phase\" output of the Video Packetizer block.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`vp_status::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@vp_status`]
module"]
#[doc(alias = "VP_STATUS")]
pub type VpStatus = crate::Reg<vp_status::VpStatusSpec>;
#[doc = "Read only register that holds the \"packing phase\" output of the Video Packetizer block."]
pub mod vp_status;
#[doc = "VP_PR_CD (rw) register accessor: Desired pixel repetition factor configuration. The configured value sets H13T PHY PLL to multiply pixel clock by the factor in order to obtain the desired repetition clock. For the CEA modes some are already defined with pixel repetition in the input video. So for CEA modes this shall be always 0. Shall only be used if the user wants to do pixel repetition using H13TCTRL controller. The action is stated corresponding to desired_pr_factor\\[3:0\\]: 0000b: No pixel repetition (pixel sent only once) 0001b: Pixel sent two times (pixel repeated once) 0010b: Pixel sent three times 0011b: Pixel sent four times 0100b: Pixel sent five times 0101b: Pixel sent six times 0110b: Pixel sent seven times 0111b: Pixel sent eight times 1000b: Pixel sent nine times 1001b: Pixel sent 10 times Other: Reserved. Not used\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`vp_pr_cd::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`vp_pr_cd::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@vp_pr_cd`]
module"]
#[doc(alias = "VP_PR_CD")]
pub type VpPrCd = crate::Reg<vp_pr_cd::VpPrCdSpec>;
#[doc = "Desired pixel repetition factor configuration. The configured value sets H13T PHY PLL to multiply pixel clock by the factor in order to obtain the desired repetition clock. For the CEA modes some are already defined with pixel repetition in the input video. So for CEA modes this shall be always 0. Shall only be used if the user wants to do pixel repetition using H13TCTRL controller. The action is stated corresponding to desired_pr_factor\\[3:0\\]: 0000b: No pixel repetition (pixel sent only once) 0001b: Pixel sent two times (pixel repeated once) 0010b: Pixel sent three times 0011b: Pixel sent four times 0100b: Pixel sent five times 0101b: Pixel sent six times 0110b: Pixel sent seven times 0111b: Pixel sent eight times 1000b: Pixel sent nine times 1001b: Pixel sent 10 times Other: Reserved. Not used"]
pub mod vp_pr_cd;
#[doc = "VP_STUFF (rw) register accessor: Pixel packing stuffing control. The action is stated corresponding to pp_stuffing: 0b: Pixel packing block in direct mode (input blanking data goes directly to output). 1b: Pixel packing block in stuffing mode. When \"de_rep\" goes to low the outputs are fixed to 0x00.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`vp_stuff::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`vp_stuff::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@vp_stuff`]
module"]
#[doc(alias = "VP_STUFF")]
pub type VpStuff = crate::Reg<vp_stuff::VpStuffSpec>;
#[doc = "Pixel packing stuffing control. The action is stated corresponding to pp_stuffing: 0b: Pixel packing block in direct mode (input blanking data goes directly to output). 1b: Pixel packing block in stuffing mode. When \"de_rep\" goes to low the outputs are fixed to 0x00."]
pub mod vp_stuff;
#[doc = "VP_REMAP (rw) register accessor: YCC 422 remap input video size ycc422_size\\[1:0\\]
00b: YCC 422 16-bit input video (8 bits per component) 01b: YCC 422 20-bit input video (10 bits per component) 10b: YCC 422 24-bit input video (12 bits per component) 11b: Reserved. Not used\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`vp_remap::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`vp_remap::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@vp_remap`]
module"]
#[doc(alias = "VP_REMAP")]
pub type VpRemap = crate::Reg<vp_remap::VpRemapSpec>;
#[doc = "YCC 422 remap input video size ycc422_size\\[1:0\\]
00b: YCC 422 16-bit input video (8 bits per component) 01b: YCC 422 20-bit input video (10 bits per component) 10b: YCC 422 24-bit input video (12 bits per component) 11b: Reserved. Not used"]
pub mod vp_remap;
#[doc = "VP_CONF (rw) register accessor: Video Packetizer output selection 0b: Data from pixel packing block 1b: Data from YCC422 remap block\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`vp_conf::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`vp_conf::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@vp_conf`]
module"]
#[doc(alias = "VP_CONF")]
pub type VpConf = crate::Reg<vp_conf::VpConfSpec>;
#[doc = "Video Packetizer output selection 0b: Data from pixel packing block 1b: Data from YCC422 remap block"]
pub mod vp_conf;
#[doc = "VP_MASK (rw) register accessor: Reserved as “spare” bit with no associated functionality.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`vp_mask::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`vp_mask::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@vp_mask`]
module"]
#[doc(alias = "VP_MASK")]
pub type VpMask = crate::Reg<vp_mask::VpMaskSpec>;
#[doc = "Reserved as “spare” bit with no associated functionality."]
pub mod vp_mask;
#[doc = "FC_INVIDCONF (rw) register accessor: Used for CEA861-D modes with fractional Vblank (for example, modes 5, 6, 7, 10, 11, 20, 21, and 22). For more modes, see the CEA861-D specification. Note: Set this field to 1 for video mode 39, although there is no Vblank oscillation. 1b: Active high\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_invidconf::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_invidconf::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_invidconf`]
module"]
#[doc(alias = "FC_INVIDCONF")]
pub type FcInvidconf = crate::Reg<fc_invidconf::FcInvidconfSpec>;
#[doc = "Used for CEA861-D modes with fractional Vblank (for example, modes 5, 6, 7, 10, 11, 20, 21, and 22). For more modes, see the CEA861-D specification. Note: Set this field to 1 for video mode 39, although there is no Vblank oscillation. 1b: Active high"]
pub mod fc_invidconf;
#[doc = "FC_INHACTIV0 (rw) register accessor: Input video Horizontal active pixel region width. Number of Horizontal active pixels \\[0...8191\\].\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_inhactiv0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_inhactiv0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_inhactiv0`]
module"]
#[doc(alias = "FC_INHACTIV0")]
pub type FcInhactiv0 = crate::Reg<fc_inhactiv0::FcInhactiv0Spec>;
#[doc = "Input video Horizontal active pixel region width. Number of Horizontal active pixels \\[0...8191\\]."]
pub mod fc_inhactiv0;
#[doc = "FC_INHACTIV1 (rw) register accessor: Input video Horizontal active pixel region width (0 .. 16383) If the configuration parameter HDMI_TX_20 = True (1), this bit field holds bit 13.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_inhactiv1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_inhactiv1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_inhactiv1`]
module"]
#[doc(alias = "FC_INHACTIV1")]
pub type FcInhactiv1 = crate::Reg<fc_inhactiv1::FcInhactiv1Spec>;
#[doc = "Input video Horizontal active pixel region width (0 .. 16383) If the configuration parameter HDMI_TX_20 = True (1), this bit field holds bit 13."]
pub mod fc_inhactiv1;
#[doc = "FC_INHBLANK0 (rw) register accessor: Input video Horizontal blanking pixel region width. Number of Horizontal blanking pixels \\[0...4095\\].\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_inhblank0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_inhblank0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_inhblank0`]
module"]
#[doc(alias = "FC_INHBLANK0")]
pub type FcInhblank0 = crate::Reg<fc_inhblank0::FcInhblank0Spec>;
#[doc = "Input video Horizontal blanking pixel region width. Number of Horizontal blanking pixels \\[0...4095\\]."]
pub mod fc_inhblank0;
#[doc = "FC_INHBLANK1 (rw) register accessor: Input video Horizontal blanking pixel region width this bit field holds bits 9:8 of number of Horizontal blanking pixels.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_inhblank1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_inhblank1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_inhblank1`]
module"]
#[doc(alias = "FC_INHBLANK1")]
pub type FcInhblank1 = crate::Reg<fc_inhblank1::FcInhblank1Spec>;
#[doc = "Input video Horizontal blanking pixel region width this bit field holds bits 9:8 of number of Horizontal blanking pixels."]
pub mod fc_inhblank1;
#[doc = "FC_INVACTIV0 (rw) register accessor: Input video Vertical active pixel region width. This bit field holds bits 7:0 of number of Vertical active pixels.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_invactiv0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_invactiv0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_invactiv0`]
module"]
#[doc(alias = "FC_INVACTIV0")]
pub type FcInvactiv0 = crate::Reg<fc_invactiv0::FcInvactiv0Spec>;
#[doc = "Input video Vertical active pixel region width. This bit field holds bits 7:0 of number of Vertical active pixels."]
pub mod fc_invactiv0;
#[doc = "FC_INVACTIV1 (rw) register accessor: Input video Vertical active pixel region width. This bit field holds bits 9:8 of number of Vertical active pixels.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_invactiv1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_invactiv1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_invactiv1`]
module"]
#[doc(alias = "FC_INVACTIV1")]
pub type FcInvactiv1 = crate::Reg<fc_invactiv1::FcInvactiv1Spec>;
#[doc = "Input video Vertical active pixel region width. This bit field holds bits 9:8 of number of Vertical active pixels."]
pub mod fc_invactiv1;
#[doc = "FC_INVBLANK (rw) register accessor: Input video Vertical blanking pixel region width. Number of Vertical blanking lines \\[0...255\\].\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_invblank::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_invblank::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_invblank`]
module"]
#[doc(alias = "FC_INVBLANK")]
pub type FcInvblank = crate::Reg<fc_invblank::FcInvblankSpec>;
#[doc = "Input video Vertical blanking pixel region width. Number of Vertical blanking lines \\[0...255\\]."]
pub mod fc_invblank;
#[doc = "FC_HSYNCINDELAY0 (rw) register accessor: Input video Hsync active edge delay. Integer number of pixel clock cycles from \"de\" non active edge of the last \"de\" valid period \\[0...4095\\].\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_hsyncindelay0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_hsyncindelay0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_hsyncindelay0`]
module"]
#[doc(alias = "FC_HSYNCINDELAY0")]
pub type FcHsyncindelay0 = crate::Reg<fc_hsyncindelay0::FcHsyncindelay0Spec>;
#[doc = "Input video Hsync active edge delay. Integer number of pixel clock cycles from \"de\" non active edge of the last \"de\" valid period \\[0...4095\\]."]
pub mod fc_hsyncindelay0;
#[doc = "FC_HSYNCINDELAY1 (rw) register accessor: Input video Horizontal active edge delay.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_hsyncindelay1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_hsyncindelay1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_hsyncindelay1`]
module"]
#[doc(alias = "FC_HSYNCINDELAY1")]
pub type FcHsyncindelay1 = crate::Reg<fc_hsyncindelay1::FcHsyncindelay1Spec>;
#[doc = "Input video Horizontal active edge delay."]
pub mod fc_hsyncindelay1;
#[doc = "FC_HSYNCINWIDTH0 (rw) register accessor: Input video Hsync active pulse width. Integer number of pixel clock cycles \\[0...511\\].\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_hsyncinwidth0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_hsyncinwidth0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_hsyncinwidth0`]
module"]
#[doc(alias = "FC_HSYNCINWIDTH0")]
pub type FcHsyncinwidth0 = crate::Reg<fc_hsyncinwidth0::FcHsyncinwidth0Spec>;
#[doc = "Input video Hsync active pulse width. Integer number of pixel clock cycles \\[0...511\\]."]
pub mod fc_hsyncinwidth0;
#[doc = "FC_HSYNCINWIDTH1 (rw) register accessor: Input video Hsync active pulse width.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_hsyncinwidth1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_hsyncinwidth1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_hsyncinwidth1`]
module"]
#[doc(alias = "FC_HSYNCINWIDTH1")]
pub type FcHsyncinwidth1 = crate::Reg<fc_hsyncinwidth1::FcHsyncinwidth1Spec>;
#[doc = "Input video Hsync active pulse width."]
pub mod fc_hsyncinwidth1;
#[doc = "FC_VSYNCINDELAY (rw) register accessor: Input video Vsync active edge delay. Integer number of Hsync pulses from \"de\" non active edge of the last \"de\" valid period. \\[0...255\\].\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_vsyncindelay::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_vsyncindelay::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_vsyncindelay`]
module"]
#[doc(alias = "FC_VSYNCINDELAY")]
pub type FcVsyncindelay = crate::Reg<fc_vsyncindelay::FcVsyncindelaySpec>;
#[doc = "Input video Vsync active edge delay. Integer number of Hsync pulses from \"de\" non active edge of the last \"de\" valid period. \\[0...255\\]."]
pub mod fc_vsyncindelay;
#[doc = "FC_VSYNCINWIDTH (rw) register accessor: Description: Input video Vsync active pulse width. Integer number of video lines \\[0...63\\].\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_vsyncinwidth::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_vsyncinwidth::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_vsyncinwidth`]
module"]
#[doc(alias = "FC_VSYNCINWIDTH")]
pub type FcVsyncinwidth = crate::Reg<fc_vsyncinwidth::FcVsyncinwidthSpec>;
#[doc = "Description: Input video Vsync active pulse width. Integer number of video lines \\[0...63\\]."]
pub mod fc_vsyncinwidth;
#[doc = "FC_INFREQ0 (rw) register accessor: Video refresh rate in Hz*1E3 format. This register is provided for debug and informative purposes. The Hdmi_tx does not write any data to this register; the data written by software is not used by the Hdmi_tx.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_infreq0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_infreq0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_infreq0`]
module"]
#[doc(alias = "FC_INFREQ0")]
pub type FcInfreq0 = crate::Reg<fc_infreq0::FcInfreq0Spec>;
#[doc = "Video refresh rate in Hz*1E3 format. This register is provided for debug and informative purposes. The Hdmi_tx does not write any data to this register; the data written by software is not used by the Hdmi_tx."]
pub mod fc_infreq0;
#[doc = "FC_INFREQ1 (rw) register accessor: Video refresh rate in Hz*1E3 format. This register is provided for debug and informative purposes. The Hdmi_tx does not write any data to this register; the data written by software is not used by the Hdmi_tx.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_infreq1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_infreq1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_infreq1`]
module"]
#[doc(alias = "FC_INFREQ1")]
pub type FcInfreq1 = crate::Reg<fc_infreq1::FcInfreq1Spec>;
#[doc = "Video refresh rate in Hz*1E3 format. This register is provided for debug and informative purposes. The Hdmi_tx does not write any data to this register; the data written by software is not used by the Hdmi_tx."]
pub mod fc_infreq1;
#[doc = "FC_INFREQ2 (rw) register accessor: Video refresh rate in Hz*1E3 format. This register is provided for debug and informative purposes. The Hdmi_tx does not write any data to this register; the data written by software is not used by the Hdmi_tx.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_infreq2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_infreq2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_infreq2`]
module"]
#[doc(alias = "FC_INFREQ2")]
pub type FcInfreq2 = crate::Reg<fc_infreq2::FcInfreq2Spec>;
#[doc = "Video refresh rate in Hz*1E3 format. This register is provided for debug and informative purposes. The Hdmi_tx does not write any data to this register; the data written by software is not used by the Hdmi_tx."]
pub mod fc_infreq2;
#[doc = "FC_CTRLDUR (rw) register accessor: Configuration of the control period minimum duration (minimum of 12 pixel clock cycles; refer to HDMI 1.4b specification). Integer number of pixel clocks cycles \\[0..223\\].\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_ctrldur::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_ctrldur::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_ctrldur`]
module"]
#[doc(alias = "FC_CTRLDUR")]
pub type FcCtrldur = crate::Reg<fc_ctrldur::FcCtrldurSpec>;
#[doc = "Configuration of the control period minimum duration (minimum of 12 pixel clock cycles; refer to HDMI 1.4b specification). Integer number of pixel clocks cycles \\[0..223\\]."]
pub mod fc_ctrldur;
#[doc = "FC_EXCTRLDUR (rw) register accessor: Configuration of the extended control period minimum duration (minimum of 32 pixel clock cycles; refer to HDMI 1.4b specification). Integer number of pixel clocks cycles \\[0..223\\].\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_exctrldur::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_exctrldur::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_exctrldur`]
module"]
#[doc(alias = "FC_EXCTRLDUR")]
pub type FcExctrldur = crate::Reg<fc_exctrldur::FcExctrldurSpec>;
#[doc = "Configuration of the extended control period minimum duration (minimum of 32 pixel clock cycles; refer to HDMI 1.4b specification). Integer number of pixel clocks cycles \\[0..223\\]."]
pub mod fc_exctrldur;
#[doc = "FC_EXCTRLSPAC (rw) register accessor: Configuration of the maximum spacing between consecutive extended control periods (maximum of 50ms; refer to the applicable HDMI specification). When using the HDMI 2.0 supported features (HDMI_TX_20 = 1): generated spacing = (1/freq tmds clock)*256*512*(extctrlperiodspacing +1) else generated spacing = (1/freq tmds clock)*256*256*(extctrlperiodspacing +1)\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_exctrlspac::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_exctrlspac::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_exctrlspac`]
module"]
#[doc(alias = "FC_EXCTRLSPAC")]
pub type FcExctrlspac = crate::Reg<fc_exctrlspac::FcExctrlspacSpec>;
#[doc = "Configuration of the maximum spacing between consecutive extended control periods (maximum of 50ms; refer to the applicable HDMI specification). When using the HDMI 2.0 supported features (HDMI_TX_20 = 1): generated spacing = (1/freq tmds clock)*256*512*(extctrlperiodspacing +1) else generated spacing = (1/freq tmds clock)*256*256*(extctrlperiodspacing +1)"]
pub mod fc_exctrlspac;
#[doc = "FC_CH0PREAM (rw) register accessor: When in control mode, configures 8 bits that fill the channel 0 data lines not used to transmit the preamble (for more clarification, refer to the HDMI 1.4b specification).\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_ch0pream::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_ch0pream::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_ch0pream`]
module"]
#[doc(alias = "FC_CH0PREAM")]
pub type FcCh0pream = crate::Reg<fc_ch0pream::FcCh0preamSpec>;
#[doc = "When in control mode, configures 8 bits that fill the channel 0 data lines not used to transmit the preamble (for more clarification, refer to the HDMI 1.4b specification)."]
pub mod fc_ch0pream;
#[doc = "FC_CH1PREAM (rw) register accessor: When in control mode, configures 6 bits that fill the channel 1 data lines not used to transmit the preamble (for more clarification, refer to the HDMI 1.4b specification).\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_ch1pream::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_ch1pream::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_ch1pream`]
module"]
#[doc(alias = "FC_CH1PREAM")]
pub type FcCh1pream = crate::Reg<fc_ch1pream::FcCh1preamSpec>;
#[doc = "When in control mode, configures 6 bits that fill the channel 1 data lines not used to transmit the preamble (for more clarification, refer to the HDMI 1.4b specification)."]
pub mod fc_ch1pream;
#[doc = "FC_CH2PREAM (rw) register accessor: When in control mode, configures 6 bits that fill the channel 2 data lines not used to transmit the preamble (for more clarification, refer to the HDMI 1.4b specification).\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_ch2pream::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_ch2pream::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_ch2pream`]
module"]
#[doc(alias = "FC_CH2PREAM")]
pub type FcCh2pream = crate::Reg<fc_ch2pream::FcCh2preamSpec>;
#[doc = "When in control mode, configures 6 bits that fill the channel 2 data lines not used to transmit the preamble (for more clarification, refer to the HDMI 1.4b specification)."]
pub mod fc_ch2pream;
#[doc = "FC_AVICONF3 (rw) register accessor: IT content type according to CEA the specification\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_aviconf3::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_aviconf3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_aviconf3`]
module"]
#[doc(alias = "FC_AVICONF3")]
pub type FcAviconf3 = crate::Reg<fc_aviconf3::FcAviconf3Spec>;
#[doc = "IT content type according to CEA the specification"]
pub mod fc_aviconf3;
#[doc = "FC_GCP (rw) register accessor: Value of \"clear_avmute\" in the GCP packet\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_gcp::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_gcp::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_gcp`]
module"]
#[doc(alias = "FC_GCP")]
pub type FcGcp = crate::Reg<fc_gcp::FcGcpSpec>;
#[doc = "Value of \"clear_avmute\" in the GCP packet"]
pub mod fc_gcp;
#[doc = "FC_AVICONF0 (rw) register accessor: Y1,Y0 RGB or YCC indicator\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_aviconf0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_aviconf0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_aviconf0`]
module"]
#[doc(alias = "FC_AVICONF0")]
pub type FcAviconf0 = crate::Reg<fc_aviconf0::FcAviconf0Spec>;
#[doc = "Y1,Y0 RGB or YCC indicator"]
pub mod fc_aviconf0;
#[doc = "FC_AVICONF1 (rw) register accessor: Active aspect ratio\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_aviconf1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_aviconf1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_aviconf1`]
module"]
#[doc(alias = "FC_AVICONF1")]
pub type FcAviconf1 = crate::Reg<fc_aviconf1::FcAviconf1Spec>;
#[doc = "Active aspect ratio"]
pub mod fc_aviconf1;
#[doc = "FC_AVICONF2 (rw) register accessor: Non-uniform picture scaling\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_aviconf2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_aviconf2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_aviconf2`]
module"]
#[doc(alias = "FC_AVICONF2")]
pub type FcAviconf2 = crate::Reg<fc_aviconf2::FcAviconf2Spec>;
#[doc = "Non-uniform picture scaling"]
pub mod fc_aviconf2;
#[doc = "FC_AVIVID (rw) register accessor: Configures the AVI InfoFrame Video Identification code. For more information, refer to the CEA-861- E specification.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_avivid::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_avivid::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_avivid`]
module"]
#[doc(alias = "FC_AVIVID")]
pub type FcAvivid = crate::Reg<fc_avivid::FcAvividSpec>;
#[doc = "Configures the AVI InfoFrame Video Identification code. For more information, refer to the CEA-861- E specification."]
pub mod fc_avivid;
#[doc = "FC_AVIETB (rw) register accessor: Defines the AVI InfoFrame End of Top Bar value. For more information, refer to the CEA-861-E specification.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_avietb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_avietb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_avietb`]
module"]
#[doc(alias = "FC_AVIETB")]
pub type FcAvietb = crate::Reg<fc_avietb::FcAvietbSpec>;
#[doc = "Defines the AVI InfoFrame End of Top Bar value. For more information, refer to the CEA-861-E specification."]
pub mod fc_avietb;
#[doc = "FC_AVISBB (rw) register accessor: This register defines the AVI InfoFrame Start of Bottom Bar value. For more information, refer to the CEA-861-E specification.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_avisbb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_avisbb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_avisbb`]
module"]
#[doc(alias = "FC_AVISBB")]
pub type FcAvisbb = crate::Reg<fc_avisbb::FcAvisbbSpec>;
#[doc = "This register defines the AVI InfoFrame Start of Bottom Bar value. For more information, refer to the CEA-861-E specification."]
pub mod fc_avisbb;
#[doc = "FC_AVIELB (rw) register accessor: This register defines the AVI InfoFrame End of Left Bar value. For more information, refer to the CEA- 861-E specification.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_avielb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_avielb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_avielb`]
module"]
#[doc(alias = "FC_AVIELB")]
pub type FcAvielb = crate::Reg<fc_avielb::FcAvielbSpec>;
#[doc = "This register defines the AVI InfoFrame End of Left Bar value. For more information, refer to the CEA- 861-E specification."]
pub mod fc_avielb;
#[doc = "FC_AVISRB (rw) register accessor: This register defines the AVI InfoFrame Start of Right Bar value. For more information, refer to the CEA-861-E specification.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_avisrb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_avisrb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_avisrb`]
module"]
#[doc(alias = "FC_AVISRB")]
pub type FcAvisrb = crate::Reg<fc_avisrb::FcAvisrbSpec>;
#[doc = "This register defines the AVI InfoFrame Start of Right Bar value. For more information, refer to the CEA-861-E specification."]
pub mod fc_avisrb;
#[doc = "FC_AUDICONF0 (rw) register accessor: Coding Type\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_audiconf0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_audiconf0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_audiconf0`]
module"]
#[doc(alias = "FC_AUDICONF0")]
pub type FcAudiconf0 = crate::Reg<fc_audiconf0::FcAudiconf0Spec>;
#[doc = "Coding Type"]
pub mod fc_audiconf0;
#[doc = "FC_AUDICONF1 (rw) register accessor: Sampling frequency\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_audiconf1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_audiconf1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_audiconf1`]
module"]
#[doc(alias = "FC_AUDICONF1")]
pub type FcAudiconf1 = crate::Reg<fc_audiconf1::FcAudiconf1Spec>;
#[doc = "Sampling frequency"]
pub mod fc_audiconf1;
#[doc = "FC_AUDICONF2 (rw) register accessor: Channel allocation\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_audiconf2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_audiconf2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_audiconf2`]
module"]
#[doc(alias = "FC_AUDICONF2")]
pub type FcAudiconf2 = crate::Reg<fc_audiconf2::FcAudiconf2Spec>;
#[doc = "Channel allocation"]
pub mod fc_audiconf2;
#[doc = "FC_AUDICONF3 (rw) register accessor: Level shift value (for down mixing)\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_audiconf3::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_audiconf3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_audiconf3`]
module"]
#[doc(alias = "FC_AUDICONF3")]
pub type FcAudiconf3 = crate::Reg<fc_audiconf3::FcAudiconf3Spec>;
#[doc = "Level shift value (for down mixing)"]
pub mod fc_audiconf3;
#[doc = "FC_VSDIEEEID2 (rw) register accessor: This register configures the Vendor Specific InfoFrame IEEE registration identifier. For more information, refer to the CEA- 861-E specification.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_vsdieeeid2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_vsdieeeid2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_vsdieeeid2`]
module"]
#[doc(alias = "FC_VSDIEEEID2")]
pub type FcVsdieeeid2 = crate::Reg<fc_vsdieeeid2::FcVsdieeeid2Spec>;
#[doc = "This register configures the Vendor Specific InfoFrame IEEE registration identifier. For more information, refer to the CEA- 861-E specification."]
pub mod fc_vsdieeeid2;
#[doc = "FC_VSDSIZE (rw) register accessor: Packet size as described in the HDMI Vendor Specific InfoFrame (from the HDMI specification).\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_vsdsize::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_vsdsize::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_vsdsize`]
module"]
#[doc(alias = "FC_VSDSIZE")]
pub type FcVsdsize = crate::Reg<fc_vsdsize::FcVsdsizeSpec>;
#[doc = "Packet size as described in the HDMI Vendor Specific InfoFrame (from the HDMI specification)."]
pub mod fc_vsdsize;
#[doc = "FC_VSDIEEEID1 (rw) register accessor: This register configures the Vendor Specific InfoFrame IEEE registration identifier. For more information, refer to the CEA-861-E specification.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_vsdieeeid1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_vsdieeeid1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_vsdieeeid1`]
module"]
#[doc(alias = "FC_VSDIEEEID1")]
pub type FcVsdieeeid1 = crate::Reg<fc_vsdieeeid1::FcVsdieeeid1Spec>;
#[doc = "This register configures the Vendor Specific InfoFrame IEEE registration identifier. For more information, refer to the CEA-861-E specification."]
pub mod fc_vsdieeeid1;
#[doc = "FC_VSDIEEEID0 (rw) register accessor: This register configures the Vendor Specific InfoFrame IEEE registration identifier. For more information, refer to the CEA-861-E specification.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_vsdieeeid0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_vsdieeeid0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_vsdieeeid0`]
module"]
#[doc(alias = "FC_VSDIEEEID0")]
pub type FcVsdieeeid0 = crate::Reg<fc_vsdieeeid0::FcVsdieeeid0Spec>;
#[doc = "This register configures the Vendor Specific InfoFrame IEEE registration identifier. For more information, refer to the CEA-861-E specification."]
pub mod fc_vsdieeeid0;
#[doc = "FC_VSDPAYLOAD (rw) register accessor: Frame Composer VSI Packet Data Payload Register Array Configures the Vendor Specific infoFrame 24 bytes specific payload. For more information, refer to the CEA-861-E specification.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_vsdpayload::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_vsdpayload::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_vsdpayload`]
module"]
#[doc(alias = "FC_VSDPAYLOAD")]
pub type FcVsdpayload = crate::Reg<fc_vsdpayload::FcVsdpayloadSpec>;
#[doc = "Frame Composer VSI Packet Data Payload Register Array Configures the Vendor Specific infoFrame 24 bytes specific payload. For more information, refer to the CEA-861-E specification."]
pub mod fc_vsdpayload;
#[doc = "FC_SPDVENDORNAME (rw) register accessor: Frame Composer SPD Packet Data Vendor Name Register Array Configures the Source Product Descriptor infoFrame 8 bytes Vendor name. For more information, refer to the CEA-861-E specification.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_spdvendorname::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_spdvendorname::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_spdvendorname`]
module"]
#[doc(alias = "FC_SPDVENDORNAME")]
pub type FcSpdvendorname = crate::Reg<fc_spdvendorname::FcSpdvendornameSpec>;
#[doc = "Frame Composer SPD Packet Data Vendor Name Register Array Configures the Source Product Descriptor infoFrame 8 bytes Vendor name. For more information, refer to the CEA-861-E specification."]
pub mod fc_spdvendorname;
#[doc = "FC_SPDPRODUCTNAME (rw) register accessor: Frame Composer SPD packet Data Product Name Register Array Configures the Source Product Descriptor infoFrame 16 bytes Product name. For more information, refer to the CEA-861-E specification.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_spdproductname::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_spdproductname::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_spdproductname`]
module"]
#[doc(alias = "FC_SPDPRODUCTNAME")]
pub type FcSpdproductname = crate::Reg<fc_spdproductname::FcSpdproductnameSpec>;
#[doc = "Frame Composer SPD packet Data Product Name Register Array Configures the Source Product Descriptor infoFrame 16 bytes Product name. For more information, refer to the CEA-861-E specification."]
pub mod fc_spdproductname;
#[doc = "FC_SPDDEVICEINF (rw) register accessor: Frame Composer SPD Packet Data Source Product Descriptor Register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_spddeviceinf::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_spddeviceinf::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_spddeviceinf`]
module"]
#[doc(alias = "FC_SPDDEVICEINF")]
pub type FcSpddeviceinf = crate::Reg<fc_spddeviceinf::FcSpddeviceinfSpec>;
#[doc = "Frame Composer SPD Packet Data Source Product Descriptor Register"]
pub mod fc_spddeviceinf;
#[doc = "FC_AUDSCONF (rw) register accessor: Set the audio packet layout to be sent in the packet: 1b: layout 1 0b: layout 0 If HDMI_TX_20 is defined and register field fc_multistream_ctrl.fc_mas_packet_en is active, this bit has no effect.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_audsconf::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_audsconf::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_audsconf`]
module"]
#[doc(alias = "FC_AUDSCONF")]
pub type FcAudsconf = crate::Reg<fc_audsconf::FcAudsconfSpec>;
#[doc = "Set the audio packet layout to be sent in the packet: 1b: layout 1 0b: layout 0 If HDMI_TX_20 is defined and register field fc_multistream_ctrl.fc_mas_packet_en is active, this bit has no effect."]
pub mod fc_audsconf;
#[doc = "FC_AUDSSTAT (r) register accessor: Shows the data sample present indication of the last Audio sample packet sent by the HDMI Tx Controller. This register information is at TMDS clock rate.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_audsstat::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_audsstat`]
module"]
#[doc(alias = "FC_AUDSSTAT")]
pub type FcAudsstat = crate::Reg<fc_audsstat::FcAudsstatSpec>;
#[doc = "Shows the data sample present indication of the last Audio sample packet sent by the HDMI Tx Controller. This register information is at TMDS clock rate."]
pub mod fc_audsstat;
#[doc = "FC_AUDSV (rw) register accessor: Set validity bit \"V\" for Channel 0, Left\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_audsv::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_audsv::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_audsv`]
module"]
#[doc(alias = "FC_AUDSV")]
pub type FcAudsv = crate::Reg<fc_audsv::FcAudsvSpec>;
#[doc = "Set validity bit \"V\" for Channel 0, Left"]
pub mod fc_audsv;
#[doc = "FC_AUDSU (rw) register accessor: Set user bit \"U\" for Channel 0, Left\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_audsu::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_audsu::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_audsu`]
module"]
#[doc(alias = "FC_AUDSU")]
pub type FcAudsu = crate::Reg<fc_audsu::FcAudsuSpec>;
#[doc = "Set user bit \"U\" for Channel 0, Left"]
pub mod fc_audsu;
#[doc = "FC_AUDSCHNL0 (rw) register accessor: IEC Copyright indication\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_audschnl0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_audschnl0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_audschnl0`]
module"]
#[doc(alias = "FC_AUDSCHNL0")]
pub type FcAudschnl0 = crate::Reg<fc_audschnl0::FcAudschnl0Spec>;
#[doc = "IEC Copyright indication"]
pub mod fc_audschnl0;
#[doc = "FC_AUDSCHNL1 (rw) register accessor: Category code\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_audschnl1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_audschnl1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_audschnl1`]
module"]
#[doc(alias = "FC_AUDSCHNL1")]
pub type FcAudschnl1 = crate::Reg<fc_audschnl1::FcAudschnl1Spec>;
#[doc = "Category code"]
pub mod fc_audschnl1;
#[doc = "FC_AUDSCHNL2 (rw) register accessor: Source number\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_audschnl2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_audschnl2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_audschnl2`]
module"]
#[doc(alias = "FC_AUDSCHNL2")]
pub type FcAudschnl2 = crate::Reg<fc_audschnl2::FcAudschnl2Spec>;
#[doc = "Source number"]
pub mod fc_audschnl2;
#[doc = "FC_AUDSCHNL3 (rw) register accessor: Channel number for first right sample\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_audschnl3::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_audschnl3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_audschnl3`]
module"]
#[doc(alias = "FC_AUDSCHNL3")]
pub type FcAudschnl3 = crate::Reg<fc_audschnl3::FcAudschnl3Spec>;
#[doc = "Channel number for first right sample"]
pub mod fc_audschnl3;
#[doc = "FC_AUDSCHNL4 (rw) register accessor: Channel number for third right sample\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_audschnl4::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_audschnl4::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_audschnl4`]
module"]
#[doc(alias = "FC_AUDSCHNL4")]
pub type FcAudschnl4 = crate::Reg<fc_audschnl4::FcAudschnl4Spec>;
#[doc = "Channel number for third right sample"]
pub mod fc_audschnl4;
#[doc = "FC_AUDSCHNL5 (rw) register accessor: Channel number for first left sample\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_audschnl5::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_audschnl5::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_audschnl5`]
module"]
#[doc(alias = "FC_AUDSCHNL5")]
pub type FcAudschnl5 = crate::Reg<fc_audschnl5::FcAudschnl5Spec>;
#[doc = "Channel number for first left sample"]
pub mod fc_audschnl5;
#[doc = "FC_AUDSCHNL6 (rw) register accessor: Channel number for third left sample\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_audschnl6::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_audschnl6::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_audschnl6`]
module"]
#[doc(alias = "FC_AUDSCHNL6")]
pub type FcAudschnl6 = crate::Reg<fc_audschnl6::FcAudschnl6Spec>;
#[doc = "Channel number for third left sample"]
pub mod fc_audschnl6;
#[doc = "FC_AUDSCHNL7 (rw) register accessor: Sampling frequency\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_audschnl7::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_audschnl7::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_audschnl7`]
module"]
#[doc(alias = "FC_AUDSCHNL7")]
pub type FcAudschnl7 = crate::Reg<fc_audschnl7::FcAudschnl7Spec>;
#[doc = "Sampling frequency"]
pub mod fc_audschnl7;
#[doc = "FC_AUDSCHNL8 (rw) register accessor: Word length configuration\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_audschnl8::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_audschnl8::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_audschnl8`]
module"]
#[doc(alias = "FC_AUDSCHNL8")]
pub type FcAudschnl8 = crate::Reg<fc_audschnl8::FcAudschnl8Spec>;
#[doc = "Word length configuration"]
pub mod fc_audschnl8;
#[doc = "FC_CTRLQHIGH (rw) register accessor: Configures the number of high priority packets or audio sample packets consecutively attended before checking low priority queue status. Valid range is from 5'd1 to 5'd31.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_ctrlqhigh::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_ctrlqhigh::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_ctrlqhigh`]
module"]
#[doc(alias = "FC_CTRLQHIGH")]
pub type FcCtrlqhigh = crate::Reg<fc_ctrlqhigh::FcCtrlqhighSpec>;
#[doc = "Configures the number of high priority packets or audio sample packets consecutively attended before checking low priority queue status. Valid range is from 5'd1 to 5'd31."]
pub mod fc_ctrlqhigh;
#[doc = "FC_CTRLQLOW (rw) register accessor: Configures the number of low priority packets or null packets consecutively attended before checking high priority queue status or audio samples availability. Valid range is from 5'd1 to 5'd31.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_ctrlqlow::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_ctrlqlow::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_ctrlqlow`]
module"]
#[doc(alias = "FC_CTRLQLOW")]
pub type FcCtrlqlow = crate::Reg<fc_ctrlqlow::FcCtrlqlowSpec>;
#[doc = "Configures the number of low priority packets or null packets consecutively attended before checking high priority queue status or audio samples availability. Valid range is from 5'd1 to 5'd31."]
pub mod fc_ctrlqlow;
#[doc = "FC_ACP0 (rw) register accessor: Configures the ACP packet type.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_acp0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_acp0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_acp0`]
module"]
#[doc(alias = "FC_ACP0")]
pub type FcAcp0 = crate::Reg<fc_acp0::FcAcp0Spec>;
#[doc = "Configures the ACP packet type."]
pub mod fc_acp0;
#[doc = "FC_ACP16 (rw) register accessor: Frame Composer ACP Packet Body Configuration Register 16\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_acp16::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_acp16::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_acp16`]
module"]
#[doc(alias = "FC_ACP16")]
pub type FcAcp16 = crate::Reg<fc_acp16::FcAcp16Spec>;
#[doc = "Frame Composer ACP Packet Body Configuration Register 16"]
pub mod fc_acp16;
#[doc = "FC_ACP15 (rw) register accessor: Frame Composer ACP Packet Body Configuration Register 15\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_acp15::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_acp15::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_acp15`]
module"]
#[doc(alias = "FC_ACP15")]
pub type FcAcp15 = crate::Reg<fc_acp15::FcAcp15Spec>;
#[doc = "Frame Composer ACP Packet Body Configuration Register 15"]
pub mod fc_acp15;
#[doc = "FC_ACP14 (rw) register accessor: Frame Composer ACP Packet Body Configuration Register 14\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_acp14::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_acp14::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_acp14`]
module"]
#[doc(alias = "FC_ACP14")]
pub type FcAcp14 = crate::Reg<fc_acp14::FcAcp14Spec>;
#[doc = "Frame Composer ACP Packet Body Configuration Register 14"]
pub mod fc_acp14;
#[doc = "FC_ACP13 (rw) register accessor: Frame Composer ACP Packet Body Configuration Register 13\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_acp13::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_acp13::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_acp13`]
module"]
#[doc(alias = "FC_ACP13")]
pub type FcAcp13 = crate::Reg<fc_acp13::FcAcp13Spec>;
#[doc = "Frame Composer ACP Packet Body Configuration Register 13"]
pub mod fc_acp13;
#[doc = "FC_ACP12 (rw) register accessor: Frame Composer ACP Packet Body Configuration Register 12\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_acp12::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_acp12::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_acp12`]
module"]
#[doc(alias = "FC_ACP12")]
pub type FcAcp12 = crate::Reg<fc_acp12::FcAcp12Spec>;
#[doc = "Frame Composer ACP Packet Body Configuration Register 12"]
pub mod fc_acp12;
#[doc = "FC_ACP11 (rw) register accessor: Frame Composer ACP Packet Body Configuration Register 11\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_acp11::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_acp11::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_acp11`]
module"]
#[doc(alias = "FC_ACP11")]
pub type FcAcp11 = crate::Reg<fc_acp11::FcAcp11Spec>;
#[doc = "Frame Composer ACP Packet Body Configuration Register 11"]
pub mod fc_acp11;
#[doc = "FC_ACP10 (rw) register accessor: Frame Composer ACP Packet Body Configuration Register 10\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_acp10::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_acp10::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_acp10`]
module"]
#[doc(alias = "FC_ACP10")]
pub type FcAcp10 = crate::Reg<fc_acp10::FcAcp10Spec>;
#[doc = "Frame Composer ACP Packet Body Configuration Register 10"]
pub mod fc_acp10;
#[doc = "FC_ACP9 (rw) register accessor: Frame Composer ACP Packet Body Configuration Register 9\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_acp9::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_acp9::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_acp9`]
module"]
#[doc(alias = "FC_ACP9")]
pub type FcAcp9 = crate::Reg<fc_acp9::FcAcp9Spec>;
#[doc = "Frame Composer ACP Packet Body Configuration Register 9"]
pub mod fc_acp9;
#[doc = "FC_ACP8 (rw) register accessor: Frame Composer ACP Packet Body Configuration Register 8\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_acp8::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_acp8::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_acp8`]
module"]
#[doc(alias = "FC_ACP8")]
pub type FcAcp8 = crate::Reg<fc_acp8::FcAcp8Spec>;
#[doc = "Frame Composer ACP Packet Body Configuration Register 8"]
pub mod fc_acp8;
#[doc = "FC_ACP7 (rw) register accessor: Frame Composer ACP Packet Body Configuration Register 7\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_acp7::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_acp7::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_acp7`]
module"]
#[doc(alias = "FC_ACP7")]
pub type FcAcp7 = crate::Reg<fc_acp7::FcAcp7Spec>;
#[doc = "Frame Composer ACP Packet Body Configuration Register 7"]
pub mod fc_acp7;
#[doc = "FC_ACP6 (rw) register accessor: Frame Composer ACP Packet Body Configuration Register 6\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_acp6::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_acp6::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_acp6`]
module"]
#[doc(alias = "FC_ACP6")]
pub type FcAcp6 = crate::Reg<fc_acp6::FcAcp6Spec>;
#[doc = "Frame Composer ACP Packet Body Configuration Register 6"]
pub mod fc_acp6;
#[doc = "FC_ACP5 (rw) register accessor: Frame Composer ACP Packet Body Configuration Register 5\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_acp5::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_acp5::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_acp5`]
module"]
#[doc(alias = "FC_ACP5")]
pub type FcAcp5 = crate::Reg<fc_acp5::FcAcp5Spec>;
#[doc = "Frame Composer ACP Packet Body Configuration Register 5"]
pub mod fc_acp5;
#[doc = "FC_ACP4 (rw) register accessor: Frame Composer ACP Packet Body Configuration Register 4\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_acp4::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_acp4::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_acp4`]
module"]
#[doc(alias = "FC_ACP4")]
pub type FcAcp4 = crate::Reg<fc_acp4::FcAcp4Spec>;
#[doc = "Frame Composer ACP Packet Body Configuration Register 4"]
pub mod fc_acp4;
#[doc = "FC_ACP3 (rw) register accessor: Frame Composer ACP Packet Body Configuration Register 3\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_acp3::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_acp3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_acp3`]
module"]
#[doc(alias = "FC_ACP3")]
pub type FcAcp3 = crate::Reg<fc_acp3::FcAcp3Spec>;
#[doc = "Frame Composer ACP Packet Body Configuration Register 3"]
pub mod fc_acp3;
#[doc = "FC_ACP2 (rw) register accessor: Frame Composer ACP Packet Body Configuration Register 2\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_acp2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_acp2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_acp2`]
module"]
#[doc(alias = "FC_ACP2")]
pub type FcAcp2 = crate::Reg<fc_acp2::FcAcp2Spec>;
#[doc = "Frame Composer ACP Packet Body Configuration Register 2"]
pub mod fc_acp2;
#[doc = "FC_ACP1 (rw) register accessor: Frame Composer ACP Packet Body Configuration Register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_acp1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_acp1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_acp1`]
module"]
#[doc(alias = "FC_ACP1")]
pub type FcAcp1 = crate::Reg<fc_acp1::FcAcp1Spec>;
#[doc = "Frame Composer ACP Packet Body Configuration Register 1"]
pub mod fc_acp1;
#[doc = "FC_ISCR1_0 (rw) register accessor: ISRC1 Indication of packet continuation (ISRC2 will be transmitted)\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr1_0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr1_0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr1_0`]
module"]
#[doc(alias = "FC_ISCR1_0")]
pub type FcIscr1_0 = crate::Reg<fc_iscr1_0::FcIscr1_0Spec>;
#[doc = "ISRC1 Indication of packet continuation (ISRC2 will be transmitted)"]
pub mod fc_iscr1_0;
#[doc = "FC_ISCR1_16 (rw) register accessor: Frame Composer ISRC1 Packet Body Register 16; configures ISRC1 packet body of the ISRC1 packet\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr1_16::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr1_16::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr1_16`]
module"]
#[doc(alias = "FC_ISCR1_16")]
pub type FcIscr1_16 = crate::Reg<fc_iscr1_16::FcIscr1_16Spec>;
#[doc = "Frame Composer ISRC1 Packet Body Register 16; configures ISRC1 packet body of the ISRC1 packet"]
pub mod fc_iscr1_16;
#[doc = "FC_ISCR1_15 (rw) register accessor: Frame Composer ISRC1 Packet Body Register 15\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr1_15::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr1_15::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr1_15`]
module"]
#[doc(alias = "FC_ISCR1_15")]
pub type FcIscr1_15 = crate::Reg<fc_iscr1_15::FcIscr1_15Spec>;
#[doc = "Frame Composer ISRC1 Packet Body Register 15"]
pub mod fc_iscr1_15;
#[doc = "FC_ISCR1_14 (rw) register accessor: Frame Composer ISRC1 Packet Body Register 14\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr1_14::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr1_14::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr1_14`]
module"]
#[doc(alias = "FC_ISCR1_14")]
pub type FcIscr1_14 = crate::Reg<fc_iscr1_14::FcIscr1_14Spec>;
#[doc = "Frame Composer ISRC1 Packet Body Register 14"]
pub mod fc_iscr1_14;
#[doc = "FC_ISCR1_13 (rw) register accessor: Frame Composer ISRC1 Packet Body Register 13\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr1_13::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr1_13::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr1_13`]
module"]
#[doc(alias = "FC_ISCR1_13")]
pub type FcIscr1_13 = crate::Reg<fc_iscr1_13::FcIscr1_13Spec>;
#[doc = "Frame Composer ISRC1 Packet Body Register 13"]
pub mod fc_iscr1_13;
#[doc = "FC_ISCR1_12 (rw) register accessor: Frame Composer ISRC1 Packet Body Register 12\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr1_12::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr1_12::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr1_12`]
module"]
#[doc(alias = "FC_ISCR1_12")]
pub type FcIscr1_12 = crate::Reg<fc_iscr1_12::FcIscr1_12Spec>;
#[doc = "Frame Composer ISRC1 Packet Body Register 12"]
pub mod fc_iscr1_12;
#[doc = "FC_ISCR1_11 (rw) register accessor: Frame Composer ISRC1 Packet Body Register 11\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr1_11::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr1_11::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr1_11`]
module"]
#[doc(alias = "FC_ISCR1_11")]
pub type FcIscr1_11 = crate::Reg<fc_iscr1_11::FcIscr1_11Spec>;
#[doc = "Frame Composer ISRC1 Packet Body Register 11"]
pub mod fc_iscr1_11;
#[doc = "FC_ISCR1_10 (rw) register accessor: Frame Composer ISRC1 Packet Body Register 10\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr1_10::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr1_10::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr1_10`]
module"]
#[doc(alias = "FC_ISCR1_10")]
pub type FcIscr1_10 = crate::Reg<fc_iscr1_10::FcIscr1_10Spec>;
#[doc = "Frame Composer ISRC1 Packet Body Register 10"]
pub mod fc_iscr1_10;
#[doc = "FC_ISCR1_9 (rw) register accessor: Frame Composer ISRC1 Packet Body Register 9\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr1_9::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr1_9::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr1_9`]
module"]
#[doc(alias = "FC_ISCR1_9")]
pub type FcIscr1_9 = crate::Reg<fc_iscr1_9::FcIscr1_9Spec>;
#[doc = "Frame Composer ISRC1 Packet Body Register 9"]
pub mod fc_iscr1_9;
#[doc = "FC_ISCR1_8 (rw) register accessor: Frame Composer ISRC1 Packet Body Register 8\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr1_8::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr1_8::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr1_8`]
module"]
#[doc(alias = "FC_ISCR1_8")]
pub type FcIscr1_8 = crate::Reg<fc_iscr1_8::FcIscr1_8Spec>;
#[doc = "Frame Composer ISRC1 Packet Body Register 8"]
pub mod fc_iscr1_8;
#[doc = "FC_ISCR1_7 (rw) register accessor: Frame Composer ISRC1 Packet Body Register 7\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr1_7::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr1_7::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr1_7`]
module"]
#[doc(alias = "FC_ISCR1_7")]
pub type FcIscr1_7 = crate::Reg<fc_iscr1_7::FcIscr1_7Spec>;
#[doc = "Frame Composer ISRC1 Packet Body Register 7"]
pub mod fc_iscr1_7;
#[doc = "FC_ISCR1_6 (rw) register accessor: Frame Composer ISRC1 Packet Body Register 6\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr1_6::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr1_6::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr1_6`]
module"]
#[doc(alias = "FC_ISCR1_6")]
pub type FcIscr1_6 = crate::Reg<fc_iscr1_6::FcIscr1_6Spec>;
#[doc = "Frame Composer ISRC1 Packet Body Register 6"]
pub mod fc_iscr1_6;
#[doc = "FC_ISCR1_5 (rw) register accessor: Frame Composer ISRC1 Packet Body Register 5\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr1_5::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr1_5::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr1_5`]
module"]
#[doc(alias = "FC_ISCR1_5")]
pub type FcIscr1_5 = crate::Reg<fc_iscr1_5::FcIscr1_5Spec>;
#[doc = "Frame Composer ISRC1 Packet Body Register 5"]
pub mod fc_iscr1_5;
#[doc = "FC_ISCR1_4 (rw) register accessor: Frame Composer ISRC1 Packet Body Register 4\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr1_4::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr1_4::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr1_4`]
module"]
#[doc(alias = "FC_ISCR1_4")]
pub type FcIscr1_4 = crate::Reg<fc_iscr1_4::FcIscr1_4Spec>;
#[doc = "Frame Composer ISRC1 Packet Body Register 4"]
pub mod fc_iscr1_4;
#[doc = "FC_ISCR1_3 (rw) register accessor: Frame Composer ISRC1 Packet Body Register 3\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr1_3::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr1_3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr1_3`]
module"]
#[doc(alias = "FC_ISCR1_3")]
pub type FcIscr1_3 = crate::Reg<fc_iscr1_3::FcIscr1_3Spec>;
#[doc = "Frame Composer ISRC1 Packet Body Register 3"]
pub mod fc_iscr1_3;
#[doc = "FC_ISCR1_2 (rw) register accessor: Frame Composer ISRC1 Packet Body Register 2\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr1_2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr1_2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr1_2`]
module"]
#[doc(alias = "FC_ISCR1_2")]
pub type FcIscr1_2 = crate::Reg<fc_iscr1_2::FcIscr1_2Spec>;
#[doc = "Frame Composer ISRC1 Packet Body Register 2"]
pub mod fc_iscr1_2;
#[doc = "FC_ISCR1_1 (rw) register accessor: Frame Composer ISRC1 Packet Body Register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr1_1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr1_1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr1_1`]
module"]
#[doc(alias = "FC_ISCR1_1")]
pub type FcIscr1_1 = crate::Reg<fc_iscr1_1::FcIscr1_1Spec>;
#[doc = "Frame Composer ISRC1 Packet Body Register 1"]
pub mod fc_iscr1_1;
#[doc = "FC_ISCR2_15 (rw) register accessor: Frame Composer ISRC2 Packet Body Register 15; configures the ISRC2 packet body of the ISRC2 packet\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr2_15::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr2_15::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr2_15`]
module"]
#[doc(alias = "FC_ISCR2_15")]
pub type FcIscr2_15 = crate::Reg<fc_iscr2_15::FcIscr2_15Spec>;
#[doc = "Frame Composer ISRC2 Packet Body Register 15; configures the ISRC2 packet body of the ISRC2 packet"]
pub mod fc_iscr2_15;
#[doc = "FC_ISCR2_14 (rw) register accessor: Frame Composer ISRC2 Packet Body Register 14\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr2_14::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr2_14::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr2_14`]
module"]
#[doc(alias = "FC_ISCR2_14")]
pub type FcIscr2_14 = crate::Reg<fc_iscr2_14::FcIscr2_14Spec>;
#[doc = "Frame Composer ISRC2 Packet Body Register 14"]
pub mod fc_iscr2_14;
#[doc = "FC_ISCR2_13 (rw) register accessor: Frame Composer ISRC2 Packet Body Register 13\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr2_13::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr2_13::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr2_13`]
module"]
#[doc(alias = "FC_ISCR2_13")]
pub type FcIscr2_13 = crate::Reg<fc_iscr2_13::FcIscr2_13Spec>;
#[doc = "Frame Composer ISRC2 Packet Body Register 13"]
pub mod fc_iscr2_13;
#[doc = "FC_ISCR2_12 (rw) register accessor: Frame Composer ISRC2 Packet Body Register 12\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr2_12::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr2_12::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr2_12`]
module"]
#[doc(alias = "FC_ISCR2_12")]
pub type FcIscr2_12 = crate::Reg<fc_iscr2_12::FcIscr2_12Spec>;
#[doc = "Frame Composer ISRC2 Packet Body Register 12"]
pub mod fc_iscr2_12;
#[doc = "FC_ISCR2_11 (rw) register accessor: Frame Composer ISRC2 Packet Body Register 11\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr2_11::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr2_11::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr2_11`]
module"]
#[doc(alias = "FC_ISCR2_11")]
pub type FcIscr2_11 = crate::Reg<fc_iscr2_11::FcIscr2_11Spec>;
#[doc = "Frame Composer ISRC2 Packet Body Register 11"]
pub mod fc_iscr2_11;
#[doc = "FC_ISCR2_10 (rw) register accessor: Frame Composer ISRC2 Packet Body Register 10\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr2_10::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr2_10::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr2_10`]
module"]
#[doc(alias = "FC_ISCR2_10")]
pub type FcIscr2_10 = crate::Reg<fc_iscr2_10::FcIscr2_10Spec>;
#[doc = "Frame Composer ISRC2 Packet Body Register 10"]
pub mod fc_iscr2_10;
#[doc = "FC_ISCR2_9 (rw) register accessor: Frame Composer ISRC2 Packet Body Register 9\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr2_9::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr2_9::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr2_9`]
module"]
#[doc(alias = "FC_ISCR2_9")]
pub type FcIscr2_9 = crate::Reg<fc_iscr2_9::FcIscr2_9Spec>;
#[doc = "Frame Composer ISRC2 Packet Body Register 9"]
pub mod fc_iscr2_9;
#[doc = "FC_ISCR2_8 (rw) register accessor: Frame Composer ISRC2 Packet Body Register 8\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr2_8::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr2_8::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr2_8`]
module"]
#[doc(alias = "FC_ISCR2_8")]
pub type FcIscr2_8 = crate::Reg<fc_iscr2_8::FcIscr2_8Spec>;
#[doc = "Frame Composer ISRC2 Packet Body Register 8"]
pub mod fc_iscr2_8;
#[doc = "FC_ISCR2_7 (rw) register accessor: Frame Composer ISRC2 Packet Body Register 7\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr2_7::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr2_7::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr2_7`]
module"]
#[doc(alias = "FC_ISCR2_7")]
pub type FcIscr2_7 = crate::Reg<fc_iscr2_7::FcIscr2_7Spec>;
#[doc = "Frame Composer ISRC2 Packet Body Register 7"]
pub mod fc_iscr2_7;
#[doc = "FC_ISCR2_6 (rw) register accessor: Frame Composer ISRC2 Packet Body Register 6\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr2_6::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr2_6::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr2_6`]
module"]
#[doc(alias = "FC_ISCR2_6")]
pub type FcIscr2_6 = crate::Reg<fc_iscr2_6::FcIscr2_6Spec>;
#[doc = "Frame Composer ISRC2 Packet Body Register 6"]
pub mod fc_iscr2_6;
#[doc = "FC_ISCR2_5 (rw) register accessor: Frame Composer ISRC2 Packet Body Register 5\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr2_5::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr2_5::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr2_5`]
module"]
#[doc(alias = "FC_ISCR2_5")]
pub type FcIscr2_5 = crate::Reg<fc_iscr2_5::FcIscr2_5Spec>;
#[doc = "Frame Composer ISRC2 Packet Body Register 5"]
pub mod fc_iscr2_5;
#[doc = "FC_ISCR2_4 (rw) register accessor: Frame Composer ISRC2 Packet Body Register 4\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr2_4::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr2_4::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr2_4`]
module"]
#[doc(alias = "FC_ISCR2_4")]
pub type FcIscr2_4 = crate::Reg<fc_iscr2_4::FcIscr2_4Spec>;
#[doc = "Frame Composer ISRC2 Packet Body Register 4"]
pub mod fc_iscr2_4;
#[doc = "FC_ISCR2_3 (rw) register accessor: Frame Composer ISRC2 Packet Body Register 3\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr2_3::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr2_3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr2_3`]
module"]
#[doc(alias = "FC_ISCR2_3")]
pub type FcIscr2_3 = crate::Reg<fc_iscr2_3::FcIscr2_3Spec>;
#[doc = "Frame Composer ISRC2 Packet Body Register 3"]
pub mod fc_iscr2_3;
#[doc = "FC_ISCR2_2 (rw) register accessor: Frame Composer ISRC2 Packet Body Register 2\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr2_2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr2_2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr2_2`]
module"]
#[doc(alias = "FC_ISCR2_2")]
pub type FcIscr2_2 = crate::Reg<fc_iscr2_2::FcIscr2_2Spec>;
#[doc = "Frame Composer ISRC2 Packet Body Register 2"]
pub mod fc_iscr2_2;
#[doc = "FC_ISCR2_1 (rw) register accessor: Frame Composer ISRC2 Packet Body Register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr2_1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr2_1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr2_1`]
module"]
#[doc(alias = "FC_ISCR2_1")]
pub type FcIscr2_1 = crate::Reg<fc_iscr2_1::FcIscr2_1Spec>;
#[doc = "Frame Composer ISRC2 Packet Body Register 1"]
pub mod fc_iscr2_1;
#[doc = "FC_ISCR2_0 (rw) register accessor: Frame Composer ISRC2 Packet Body Register 0\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_iscr2_0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_iscr2_0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_iscr2_0`]
module"]
#[doc(alias = "FC_ISCR2_0")]
pub type FcIscr2_0 = crate::Reg<fc_iscr2_0::FcIscr2_0Spec>;
#[doc = "Frame Composer ISRC2 Packet Body Register 0"]
pub mod fc_iscr2_0;
#[doc = "FC_DATAUTO0 (rw) register accessor: Enables ACP automatic packet scheduling\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_datauto0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_datauto0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_datauto0`]
module"]
#[doc(alias = "FC_DATAUTO0")]
pub type FcDatauto0 = crate::Reg<fc_datauto0::FcDatauto0Spec>;
#[doc = "Enables ACP automatic packet scheduling"]
pub mod fc_datauto0;
#[doc = "FC_DATAUTO1 (rw) register accessor: Packet frame interpolation for automatic packet scheduling\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_datauto1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_datauto1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_datauto1`]
module"]
#[doc(alias = "FC_DATAUTO1")]
pub type FcDatauto1 = crate::Reg<fc_datauto1::FcDatauto1Spec>;
#[doc = "Packet frame interpolation for automatic packet scheduling"]
pub mod fc_datauto1;
#[doc = "FC_DATAUTO2 (rw) register accessor: Packets line spacing, for automatic packet scheduling\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_datauto2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_datauto2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_datauto2`]
module"]
#[doc(alias = "FC_DATAUTO2")]
pub type FcDatauto2 = crate::Reg<fc_datauto2::FcDatauto2Spec>;
#[doc = "Packets line spacing, for automatic packet scheduling"]
pub mod fc_datauto2;
#[doc = "FC_DATMAN (w) register accessor: ACP packet\n\nYou can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_datman::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_datman`]
module"]
#[doc(alias = "FC_DATMAN")]
pub type FcDatman = crate::Reg<fc_datman::FcDatmanSpec>;
#[doc = "ACP packet"]
pub mod fc_datman;
#[doc = "FC_DATAUTO3 (rw) register accessor: Enables ACR packet insertion\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_datauto3::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_datauto3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_datauto3`]
module"]
#[doc(alias = "FC_DATAUTO3")]
pub type FcDatauto3 = crate::Reg<fc_datauto3::FcDatauto3Spec>;
#[doc = "Enables ACR packet insertion"]
pub mod fc_datauto3;
#[doc = "FC_RDRB0 (rw) register accessor: ACR Frame interpolation\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_rdrb0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_rdrb0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_rdrb0`]
module"]
#[doc(alias = "FC_RDRB0")]
pub type FcRdrb0 = crate::Reg<fc_rdrb0::FcRdrb0Spec>;
#[doc = "ACR Frame interpolation"]
pub mod fc_rdrb0;
#[doc = "FC_RDRB1 (rw) register accessor: ACR packet line spacing\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_rdrb1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_rdrb1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_rdrb1`]
module"]
#[doc(alias = "FC_RDRB1")]
pub type FcRdrb1 = crate::Reg<fc_rdrb1::FcRdrb1Spec>;
#[doc = "ACR packet line spacing"]
pub mod fc_rdrb1;
#[doc = "FC_RDRB2 (rw) register accessor: Audio frame interpolation\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_rdrb2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_rdrb2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_rdrb2`]
module"]
#[doc(alias = "FC_RDRB2")]
pub type FcRdrb2 = crate::Reg<fc_rdrb2::FcRdrb2Spec>;
#[doc = "Audio frame interpolation"]
pub mod fc_rdrb2;
#[doc = "FC_RDRB3 (rw) register accessor: Audio packets line spacing\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_rdrb3::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_rdrb3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_rdrb3`]
module"]
#[doc(alias = "FC_RDRB3")]
pub type FcRdrb3 = crate::Reg<fc_rdrb3::FcRdrb3Spec>;
#[doc = "Audio packets line spacing"]
pub mod fc_rdrb3;
#[doc = "FC_RDRB4 (rw) register accessor: Frames interpolated between GCP packets\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_rdrb4::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_rdrb4::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_rdrb4`]
module"]
#[doc(alias = "FC_RDRB4")]
pub type FcRdrb4 = crate::Reg<fc_rdrb4::FcRdrb4Spec>;
#[doc = "Frames interpolated between GCP packets"]
pub mod fc_rdrb4;
#[doc = "FC_RDRB5 (rw) register accessor: GCP packets line spacing\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_rdrb5::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_rdrb5::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_rdrb5`]
module"]
#[doc(alias = "FC_RDRB5")]
pub type FcRdrb5 = crate::Reg<fc_rdrb5::FcRdrb5Spec>;
#[doc = "GCP packets line spacing"]
pub mod fc_rdrb5;
#[doc = "FC_RDRB6 (rw) register accessor: Frames interpolated between AVI packets\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_rdrb6::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_rdrb6::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_rdrb6`]
module"]
#[doc(alias = "FC_RDRB6")]
pub type FcRdrb6 = crate::Reg<fc_rdrb6::FcRdrb6Spec>;
#[doc = "Frames interpolated between AVI packets"]
pub mod fc_rdrb6;
#[doc = "FC_RDRB7 (rw) register accessor: AVI packets line spacing\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_rdrb7::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_rdrb7::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_rdrb7`]
module"]
#[doc(alias = "FC_RDRB7")]
pub type FcRdrb7 = crate::Reg<fc_rdrb7::FcRdrb7Spec>;
#[doc = "AVI packets line spacing"]
pub mod fc_rdrb7;
#[doc = "FC_RDRB8 (rw) register accessor: AMP frame interpolation\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_rdrb8::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_rdrb8::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_rdrb8`]
module"]
#[doc(alias = "FC_RDRB8")]
pub type FcRdrb8 = crate::Reg<fc_rdrb8::FcRdrb8Spec>;
#[doc = "AMP frame interpolation"]
pub mod fc_rdrb8;
#[doc = "FC_RDRB9 (rw) register accessor: AMP packets line spacing\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_rdrb9::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_rdrb9::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_rdrb9`]
module"]
#[doc(alias = "FC_RDRB9")]
pub type FcRdrb9 = crate::Reg<fc_rdrb9::FcRdrb9Spec>;
#[doc = "AMP packets line spacing"]
pub mod fc_rdrb9;
#[doc = "FC_RDRB10 (rw) register accessor: NTSC VBI frame interpolation\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_rdrb10::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_rdrb10::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_rdrb10`]
module"]
#[doc(alias = "FC_RDRB10")]
pub type FcRdrb10 = crate::Reg<fc_rdrb10::FcRdrb10Spec>;
#[doc = "NTSC VBI frame interpolation"]
pub mod fc_rdrb10;
#[doc = "FC_RDRB11 (rw) register accessor: NTSC VBI packets line spacing\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_rdrb11::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_rdrb11::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_rdrb11`]
module"]
#[doc(alias = "FC_RDRB11")]
pub type FcRdrb11 = crate::Reg<fc_rdrb11::FcRdrb11Spec>;
#[doc = "NTSC VBI packets line spacing"]
pub mod fc_rdrb11;
#[doc = "FC_RDRB12 (rw) register accessor: Description: DRM frame interpolation\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_rdrb12::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_rdrb12::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_rdrb12`]
module"]
#[doc(alias = "FC_RDRB12")]
pub type FcRdrb12 = crate::Reg<fc_rdrb12::FcRdrb12Spec>;
#[doc = "Description: DRM frame interpolation"]
pub mod fc_rdrb12;
#[doc = "FC_RDRB13 (rw) register accessor: DRM packets line spacing\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_rdrb13::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_rdrb13::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_rdrb13`]
module"]
#[doc(alias = "FC_RDRB13")]
pub type FcRdrb13 = crate::Reg<fc_rdrb13::FcRdrb13Spec>;
#[doc = "DRM packets line spacing"]
pub mod fc_rdrb13;
#[doc = "FC_MASK0 (rw) register accessor: Mask bit for FC_INT0.NULL interrupt bit\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_mask0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_mask0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_mask0`]
module"]
#[doc(alias = "FC_MASK0")]
pub type FcMask0 = crate::Reg<fc_mask0::FcMask0Spec>;
#[doc = "Mask bit for FC_INT0.NULL interrupt bit"]
pub mod fc_mask0;
#[doc = "FC_MASK1 (rw) register accessor: Mask bit for FC_INT1.GCP interrupt bit\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_mask1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_mask1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_mask1`]
module"]
#[doc(alias = "FC_MASK1")]
pub type FcMask1 = crate::Reg<fc_mask1::FcMask1Spec>;
#[doc = "Mask bit for FC_INT1.GCP interrupt bit"]
pub mod fc_mask1;
#[doc = "FC_MASK2 (rw) register accessor: Mask bit for FC_INT2.HighPriority_overflow interrupt bit\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_mask2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_mask2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_mask2`]
module"]
#[doc(alias = "FC_MASK2")]
pub type FcMask2 = crate::Reg<fc_mask2::FcMask2Spec>;
#[doc = "Mask bit for FC_INT2.HighPriority_overflow interrupt bit"]
pub mod fc_mask2;
#[doc = "FC_PRCONF (rw) register accessor: Configures the video pixel repetition ratio to be sent on the AVI InfoFrame. This value must be valid according to the HDMI specification. The output_pr_factor = incoming_pr_factor * (desired_pr_factor + 1) – 1. output_pr_factor\\[3:0\\]
0000b: No action. Not used. 0001b: Pixel sent two times (pixel repeated once) 0010b: Pixel sent three times 0011b: Pixel sent four times 0100b: Pixel sent five times 0101b: Pixel sent six times 0110b: Pixel sent seven times 0111b: Pixel sent eight times 1000b: Pixel sent nine times 1001b: Pixel sent 10 times Other: Reserved. Not used Note: When working in YCC422 video, the actual repetition of the stream is Incoming_pr_factor * (desired_pr_factor + 1). This calculation is done internally in the H13TCTRL and no hardware overflow protection is available. Care must be taken to avoid this result passes the maximum number of 10 pixels repeated because no HDMI support is available for this in the specification and the H13TPHY does not support this higher repetition values.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_prconf::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_prconf::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_prconf`]
module"]
#[doc(alias = "FC_PRCONF")]
pub type FcPrconf = crate::Reg<fc_prconf::FcPrconfSpec>;
#[doc = "Configures the video pixel repetition ratio to be sent on the AVI InfoFrame. This value must be valid according to the HDMI specification. The output_pr_factor = incoming_pr_factor * (desired_pr_factor + 1) – 1. output_pr_factor\\[3:0\\]
0000b: No action. Not used. 0001b: Pixel sent two times (pixel repeated once) 0010b: Pixel sent three times 0011b: Pixel sent four times 0100b: Pixel sent five times 0101b: Pixel sent six times 0110b: Pixel sent seven times 0111b: Pixel sent eight times 1000b: Pixel sent nine times 1001b: Pixel sent 10 times Other: Reserved. Not used Note: When working in YCC422 video, the actual repetition of the stream is Incoming_pr_factor * (desired_pr_factor + 1). This calculation is done internally in the H13TCTRL and no hardware overflow protection is available. Care must be taken to avoid this result passes the maximum number of 10 pixels repeated because no HDMI support is available for this in the specification and the H13TPHY does not support this higher repetition values."]
pub mod fc_prconf;
#[doc = "FC_SCRAMBLER_CTRL (rw) register accessor: When set (1'b1), this field activates the HDMI 2.0 scrambler feature. When disabled (1'b0) the scrambler feature is bypassed, placing Hdmi_tx in HDMI 1.4b compatible mode. To activate the scrambler feature, you must ensure that the quasi- static configuration bit fc_invidconf.HDCP_keepout is set (1'b1) at configuration time, before the required mc_swrstzreq.tmdsswrst_req reset request is issued. This is field can be changed in runtime.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_scrambler_ctrl::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_scrambler_ctrl::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_scrambler_ctrl`]
module"]
#[doc(alias = "FC_SCRAMBLER_CTRL")]
pub type FcScramblerCtrl = crate::Reg<fc_scrambler_ctrl::FcScramblerCtrlSpec>;
#[doc = "When set (1'b1), this field activates the HDMI 2.0 scrambler feature. When disabled (1'b0) the scrambler feature is bypassed, placing Hdmi_tx in HDMI 1.4b compatible mode. To activate the scrambler feature, you must ensure that the quasi- static configuration bit fc_invidconf.HDCP_keepout is set (1'b1) at configuration time, before the required mc_swrstzreq.tmdsswrst_req reset request is issued. This is field can be changed in runtime."]
pub mod fc_scrambler_ctrl;
#[doc = "FC_MULTISTREAM_CTRL (rw) register accessor: This field, when set (1'b1), activates the HDMI 2.0 Multi- Stream support. The audio stream present at the input of the Hdmi_tx controller is transported using Multi-Stream Audio Sample Packets.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_multistream_ctrl::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_multistream_ctrl::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_multistream_ctrl`]
module"]
#[doc(alias = "FC_MULTISTREAM_CTRL")]
pub type FcMultistreamCtrl = crate::Reg<fc_multistream_ctrl::FcMultistreamCtrlSpec>;
#[doc = "This field, when set (1'b1), activates the HDMI 2.0 Multi- Stream support. The audio stream present at the input of the Hdmi_tx controller is transported using Multi-Stream Audio Sample Packets."]
pub mod fc_multistream_ctrl;
#[doc = "FC_PACKET_TX_EN (rw) register accessor: ACR packet transmission control 1b: Transmission enabled 0b: Transmission disabled\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_packet_tx_en::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_packet_tx_en::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_packet_tx_en`]
module"]
#[doc(alias = "FC_PACKET_TX_EN")]
pub type FcPacketTxEn = crate::Reg<fc_packet_tx_en::FcPacketTxEnSpec>;
#[doc = "ACR packet transmission control 1b: Transmission enabled 0b: Transmission disabled"]
pub mod fc_packet_tx_en;
#[doc = "FC_ACTSPC_HDLR_CFG (rw) register accessor: Active Space Handler Control 1b: Fixed active space value mode enabled. During active space, a fixed value of 0xAA is applied to all TMDS channels. 0b: Fixed active space value mode disabled\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_actspc_hdlr_cfg::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_actspc_hdlr_cfg::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_actspc_hdlr_cfg`]
module"]
#[doc(alias = "FC_ACTSPC_HDLR_CFG")]
pub type FcActspcHdlrCfg = crate::Reg<fc_actspc_hdlr_cfg::FcActspcHdlrCfgSpec>;
#[doc = "Active Space Handler Control 1b: Fixed active space value mode enabled. During active space, a fixed value of 0xAA is applied to all TMDS channels. 0b: Fixed active space value mode disabled"]
pub mod fc_actspc_hdlr_cfg;
#[doc = "FC_INVACT_2D_0 (rw) register accessor: 2D Input video vertical active pixel region width. Number of 2D video vertical active lines \\[7:0\\].\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_invact_2d_0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_invact_2d_0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_invact_2d_0`]
module"]
#[doc(alias = "FC_INVACT_2D_0")]
pub type FcInvact2d0 = crate::Reg<fc_invact_2d_0::FcInvact2d0Spec>;
#[doc = "2D Input video vertical active pixel region width. Number of 2D video vertical active lines \\[7:0\\]."]
pub mod fc_invact_2d_0;
#[doc = "FC_INVACT_2D_1 (rw) register accessor: 2D Input video vertical active pixel region width. Number of 2D video vertical active lines \\[11:8\\].\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_invact_2d_1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_invact_2d_1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_invact_2d_1`]
module"]
#[doc(alias = "FC_INVACT_2D_1")]
pub type FcInvact2d1 = crate::Reg<fc_invact_2d_1::FcInvact2d1Spec>;
#[doc = "2D Input video vertical active pixel region width. Number of 2D video vertical active lines \\[11:8\\]."]
pub mod fc_invact_2d_1;
#[doc = "FC_GMD_STAT (r) register accessor: Gamut scheduling: Current Gamut packet sequence number\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_gmd_stat::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_gmd_stat`]
module"]
#[doc(alias = "FC_GMD_STAT")]
pub type FcGmdStat = crate::Reg<fc_gmd_stat::FcGmdStatSpec>;
#[doc = "Gamut scheduling: Current Gamut packet sequence number"]
pub mod fc_gmd_stat;
#[doc = "FC_GMD_EN (rw) register accessor: Gamut Metadata packet transmission enable (1b)\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_gmd_en::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_gmd_en::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_gmd_en`]
module"]
#[doc(alias = "FC_GMD_EN")]
pub type FcGmdEn = crate::Reg<fc_gmd_en::FcGmdEnSpec>;
#[doc = "Gamut Metadata packet transmission enable (1b)"]
pub mod fc_gmd_en;
#[doc = "FC_GMD_UP (w) register accessor: Gamut Metadata packet update\n\nYou can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_gmd_up::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_gmd_up`]
module"]
#[doc(alias = "FC_GMD_UP")]
pub type FcGmdUp = crate::Reg<fc_gmd_up::FcGmdUpSpec>;
#[doc = "Gamut Metadata packet update"]
pub mod fc_gmd_up;
#[doc = "FC_GMD_CONF (rw) register accessor: Number of line spacing between the transmitted GMD packets\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_gmd_conf::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_gmd_conf::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_gmd_conf`]
module"]
#[doc(alias = "FC_GMD_CONF")]
pub type FcGmdConf = crate::Reg<fc_gmd_conf::FcGmdConfSpec>;
#[doc = "Number of line spacing between the transmitted GMD packets"]
pub mod fc_gmd_conf;
#[doc = "FC_GMD_HB (rw) register accessor: Affected gamut sequence number\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_gmd_hb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_gmd_hb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_gmd_hb`]
module"]
#[doc(alias = "FC_GMD_HB")]
pub type FcGmdHb = crate::Reg<fc_gmd_hb::FcGmdHbSpec>;
#[doc = "Affected gamut sequence number"]
pub mod fc_gmd_hb;
#[doc = "FC_GMD_PB (rw) register accessor: Frame Composer GMD Packet Body Register Array\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_gmd_pb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_gmd_pb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_gmd_pb`]
module"]
#[doc(alias = "FC_GMD_PB")]
pub type FcGmdPb = crate::Reg<fc_gmd_pb::FcGmdPbSpec>;
#[doc = "Frame Composer GMD Packet Body Register Array"]
pub mod fc_gmd_pb;
#[doc = "FC_AMP_HB1 (rw) register accessor: Frame Composer AMP Packet Header Register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_amp_hb1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_amp_hb1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_amp_hb1`]
module"]
#[doc(alias = "FC_AMP_HB1")]
pub type FcAmpHb1 = crate::Reg<fc_amp_hb1::FcAmpHb1Spec>;
#[doc = "Frame Composer AMP Packet Header Register 1"]
pub mod fc_amp_hb1;
#[doc = "FC_AMP_HB2 (rw) register accessor: Frame Composer AMP Packet Header Register 2\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_amp_hb2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_amp_hb2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_amp_hb2`]
module"]
#[doc(alias = "FC_AMP_HB2")]
pub type FcAmpHb2 = crate::Reg<fc_amp_hb2::FcAmpHb2Spec>;
#[doc = "Frame Composer AMP Packet Header Register 2"]
pub mod fc_amp_hb2;
#[doc = "FC_AMP_PB (rw) register accessor: Frame Composer AMP Packet Body Register Array\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_amp_pb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_amp_pb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_amp_pb`]
module"]
#[doc(alias = "FC_AMP_PB")]
pub type FcAmpPb = crate::Reg<fc_amp_pb::FcAmpPbSpec>;
#[doc = "Frame Composer AMP Packet Body Register Array"]
pub mod fc_amp_pb;
#[doc = "FC_NVBI_HB1 (rw) register accessor: Frame Composer NTSC VBI Packet Header Register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_nvbi_hb1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_nvbi_hb1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_nvbi_hb1`]
module"]
#[doc(alias = "FC_NVBI_HB1")]
pub type FcNvbiHb1 = crate::Reg<fc_nvbi_hb1::FcNvbiHb1Spec>;
#[doc = "Frame Composer NTSC VBI Packet Header Register 1"]
pub mod fc_nvbi_hb1;
#[doc = "FC_NVBI_HB2 (rw) register accessor: Frame Composer NTSC VBI Packet Header Register 2\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_nvbi_hb2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_nvbi_hb2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_nvbi_hb2`]
module"]
#[doc(alias = "FC_NVBI_HB2")]
pub type FcNvbiHb2 = crate::Reg<fc_nvbi_hb2::FcNvbiHb2Spec>;
#[doc = "Frame Composer NTSC VBI Packet Header Register 2"]
pub mod fc_nvbi_hb2;
#[doc = "FC_NVBI_PB (rw) register accessor: Frame Composer NTSC VBI Packet Body Register Array\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_nvbi_pb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_nvbi_pb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_nvbi_pb`]
module"]
#[doc(alias = "FC_NVBI_PB")]
pub type FcNvbiPb = crate::Reg<fc_nvbi_pb::FcNvbiPbSpec>;
#[doc = "Frame Composer NTSC VBI Packet Body Register Array"]
pub mod fc_nvbi_pb;
#[doc = "FC_DRM_UP (w) register accessor: DRM packet update\n\nYou can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_drm_up::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_drm_up`]
module"]
#[doc(alias = "FC_DRM_UP")]
pub type FcDrmUp = crate::Reg<fc_drm_up::FcDrmUpSpec>;
#[doc = "DRM packet update"]
pub mod fc_drm_up;
#[doc = "FC_DRM_HB (rw) register accessor: Frame Composer DRM Packet Header Register Array\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_drm_hb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_drm_hb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_drm_hb`]
module"]
#[doc(alias = "FC_DRM_HB")]
pub type FcDrmHb = crate::Reg<fc_drm_hb::FcDrmHbSpec>;
#[doc = "Frame Composer DRM Packet Header Register Array"]
pub mod fc_drm_hb;
#[doc = "FC_DRM_PB (rw) register accessor: Frame Composer DRM Packet Body Register Array\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_drm_pb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_drm_pb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_drm_pb`]
module"]
#[doc(alias = "FC_DRM_PB")]
pub type FcDrmPb = crate::Reg<fc_drm_pb::FcDrmPbSpec>;
#[doc = "Frame Composer DRM Packet Body Register Array"]
pub mod fc_drm_pb;
#[doc = "FC_DBGFORCE (rw) register accessor: Force fixed video output with FC_DBGTMDSx register contents.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_dbgforce::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_dbgforce::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_dbgforce`]
module"]
#[doc(alias = "FC_DBGFORCE")]
pub type FcDbgforce = crate::Reg<fc_dbgforce::FcDbgforceSpec>;
#[doc = "Force fixed video output with FC_DBGTMDSx register contents."]
pub mod fc_dbgforce;
#[doc = "FC_DBGAUD0CH0 (rw) register accessor: Frame Composer Audio Data Channel 0 Register 0\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_dbgaud0ch0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_dbgaud0ch0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_dbgaud0ch0`]
module"]
#[doc(alias = "FC_DBGAUD0CH0")]
pub type FcDbgaud0ch0 = crate::Reg<fc_dbgaud0ch0::FcDbgaud0ch0Spec>;
#[doc = "Frame Composer Audio Data Channel 0 Register 0"]
pub mod fc_dbgaud0ch0;
#[doc = "FC_DBGAUD1CH0 (rw) register accessor: Frame Composer Audio Data Channel 0 Register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_dbgaud1ch0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_dbgaud1ch0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_dbgaud1ch0`]
module"]
#[doc(alias = "FC_DBGAUD1CH0")]
pub type FcDbgaud1ch0 = crate::Reg<fc_dbgaud1ch0::FcDbgaud1ch0Spec>;
#[doc = "Frame Composer Audio Data Channel 0 Register 1"]
pub mod fc_dbgaud1ch0;
#[doc = "FC_DBGAUD2CH0 (rw) register accessor: Frame Composer Audio Data Channel 0 Register 2\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_dbgaud2ch0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_dbgaud2ch0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_dbgaud2ch0`]
module"]
#[doc(alias = "FC_DBGAUD2CH0")]
pub type FcDbgaud2ch0 = crate::Reg<fc_dbgaud2ch0::FcDbgaud2ch0Spec>;
#[doc = "Frame Composer Audio Data Channel 0 Register 2"]
pub mod fc_dbgaud2ch0;
#[doc = "FC_DBGAUD0CH1 (rw) register accessor: Frame Composer Audio Data Channel 1 Register 0\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_dbgaud0ch1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_dbgaud0ch1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_dbgaud0ch1`]
module"]
#[doc(alias = "FC_DBGAUD0CH1")]
pub type FcDbgaud0ch1 = crate::Reg<fc_dbgaud0ch1::FcDbgaud0ch1Spec>;
#[doc = "Frame Composer Audio Data Channel 1 Register 0"]
pub mod fc_dbgaud0ch1;
#[doc = "FC_DBGAUD1CH1 (rw) register accessor: Frame Composer Audio Data Channel 1 Register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_dbgaud1ch1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_dbgaud1ch1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_dbgaud1ch1`]
module"]
#[doc(alias = "FC_DBGAUD1CH1")]
pub type FcDbgaud1ch1 = crate::Reg<fc_dbgaud1ch1::FcDbgaud1ch1Spec>;
#[doc = "Frame Composer Audio Data Channel 1 Register 1"]
pub mod fc_dbgaud1ch1;
#[doc = "FC_DBGAUD2CH1 (rw) register accessor: Frame Composer Audio Data Channel 1 Register 2\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_dbgaud2ch1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_dbgaud2ch1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_dbgaud2ch1`]
module"]
#[doc(alias = "FC_DBGAUD2CH1")]
pub type FcDbgaud2ch1 = crate::Reg<fc_dbgaud2ch1::FcDbgaud2ch1Spec>;
#[doc = "Frame Composer Audio Data Channel 1 Register 2"]
pub mod fc_dbgaud2ch1;
#[doc = "FC_DBGAUD0CH2 (rw) register accessor: Frame Composer Audio Data Channel 2 Register 0\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_dbgaud0ch2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_dbgaud0ch2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_dbgaud0ch2`]
module"]
#[doc(alias = "FC_DBGAUD0CH2")]
pub type FcDbgaud0ch2 = crate::Reg<fc_dbgaud0ch2::FcDbgaud0ch2Spec>;
#[doc = "Frame Composer Audio Data Channel 2 Register 0"]
pub mod fc_dbgaud0ch2;
#[doc = "FC_DBGAUD1CH2 (rw) register accessor: Frame Composer Audio Data Channel 2 Register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_dbgaud1ch2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_dbgaud1ch2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_dbgaud1ch2`]
module"]
#[doc(alias = "FC_DBGAUD1CH2")]
pub type FcDbgaud1ch2 = crate::Reg<fc_dbgaud1ch2::FcDbgaud1ch2Spec>;
#[doc = "Frame Composer Audio Data Channel 2 Register 1"]
pub mod fc_dbgaud1ch2;
#[doc = "FC_DBGAUD2CH2 (rw) register accessor: Frame Composer Audio Data Channel 2 Register 2\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_dbgaud2ch2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_dbgaud2ch2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_dbgaud2ch2`]
module"]
#[doc(alias = "FC_DBGAUD2CH2")]
pub type FcDbgaud2ch2 = crate::Reg<fc_dbgaud2ch2::FcDbgaud2ch2Spec>;
#[doc = "Frame Composer Audio Data Channel 2 Register 2"]
pub mod fc_dbgaud2ch2;
#[doc = "FC_DBGAUD0CH3 (rw) register accessor: Frame Composer Audio Data Channel 3 Register 0\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_dbgaud0ch3::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_dbgaud0ch3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_dbgaud0ch3`]
module"]
#[doc(alias = "FC_DBGAUD0CH3")]
pub type FcDbgaud0ch3 = crate::Reg<fc_dbgaud0ch3::FcDbgaud0ch3Spec>;
#[doc = "Frame Composer Audio Data Channel 3 Register 0"]
pub mod fc_dbgaud0ch3;
#[doc = "FC_DBGAUD1CH3 (rw) register accessor: Frame Composer Audio Data Channel 3 Register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_dbgaud1ch3::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_dbgaud1ch3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_dbgaud1ch3`]
module"]
#[doc(alias = "FC_DBGAUD1CH3")]
pub type FcDbgaud1ch3 = crate::Reg<fc_dbgaud1ch3::FcDbgaud1ch3Spec>;
#[doc = "Frame Composer Audio Data Channel 3 Register 1"]
pub mod fc_dbgaud1ch3;
#[doc = "FC_DBGAUD2CH3 (rw) register accessor: Frame Composer Audio Data Channel 3 Register 2\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_dbgaud2ch3::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_dbgaud2ch3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_dbgaud2ch3`]
module"]
#[doc(alias = "FC_DBGAUD2CH3")]
pub type FcDbgaud2ch3 = crate::Reg<fc_dbgaud2ch3::FcDbgaud2ch3Spec>;
#[doc = "Frame Composer Audio Data Channel 3 Register 2"]
pub mod fc_dbgaud2ch3;
#[doc = "FC_DBGAUD0CH4 (rw) register accessor: Frame Composer Audio Data Channel 4 Register 0\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_dbgaud0ch4::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_dbgaud0ch4::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_dbgaud0ch4`]
module"]
#[doc(alias = "FC_DBGAUD0CH4")]
pub type FcDbgaud0ch4 = crate::Reg<fc_dbgaud0ch4::FcDbgaud0ch4Spec>;
#[doc = "Frame Composer Audio Data Channel 4 Register 0"]
pub mod fc_dbgaud0ch4;
#[doc = "FC_DBGAUD1CH4 (rw) register accessor: Frame Composer Audio Data Channel 4 Register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_dbgaud1ch4::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_dbgaud1ch4::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_dbgaud1ch4`]
module"]
#[doc(alias = "FC_DBGAUD1CH4")]
pub type FcDbgaud1ch4 = crate::Reg<fc_dbgaud1ch4::FcDbgaud1ch4Spec>;
#[doc = "Frame Composer Audio Data Channel 4 Register 1"]
pub mod fc_dbgaud1ch4;
#[doc = "FC_DBGAUD2CH4 (rw) register accessor: Frame Composer Audio Data Channel 4 Register 2\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_dbgaud2ch4::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_dbgaud2ch4::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_dbgaud2ch4`]
module"]
#[doc(alias = "FC_DBGAUD2CH4")]
pub type FcDbgaud2ch4 = crate::Reg<fc_dbgaud2ch4::FcDbgaud2ch4Spec>;
#[doc = "Frame Composer Audio Data Channel 4 Register 2"]
pub mod fc_dbgaud2ch4;
#[doc = "FC_DBGAUD0CH5 (rw) register accessor: Frame Composer Audio Data Channel 5 Register 0\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_dbgaud0ch5::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_dbgaud0ch5::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_dbgaud0ch5`]
module"]
#[doc(alias = "FC_DBGAUD0CH5")]
pub type FcDbgaud0ch5 = crate::Reg<fc_dbgaud0ch5::FcDbgaud0ch5Spec>;
#[doc = "Frame Composer Audio Data Channel 5 Register 0"]
pub mod fc_dbgaud0ch5;
#[doc = "FC_DBGAUD1CH5 (rw) register accessor: Frame Composer Audio Data Channel 5 Register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_dbgaud1ch5::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_dbgaud1ch5::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_dbgaud1ch5`]
module"]
#[doc(alias = "FC_DBGAUD1CH5")]
pub type FcDbgaud1ch5 = crate::Reg<fc_dbgaud1ch5::FcDbgaud1ch5Spec>;
#[doc = "Frame Composer Audio Data Channel 5 Register 1"]
pub mod fc_dbgaud1ch5;
#[doc = "FC_DBGAUD2CH5 (rw) register accessor: Frame Composer Audio Data Channel 5 Register 2\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_dbgaud2ch5::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_dbgaud2ch5::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_dbgaud2ch5`]
module"]
#[doc(alias = "FC_DBGAUD2CH5")]
pub type FcDbgaud2ch5 = crate::Reg<fc_dbgaud2ch5::FcDbgaud2ch5Spec>;
#[doc = "Frame Composer Audio Data Channel 5 Register 2"]
pub mod fc_dbgaud2ch5;
#[doc = "FC_DBGAUD0CH6 (rw) register accessor: Frame Composer Audio Data Channel 6 Register 0\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_dbgaud0ch6::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_dbgaud0ch6::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_dbgaud0ch6`]
module"]
#[doc(alias = "FC_DBGAUD0CH6")]
pub type FcDbgaud0ch6 = crate::Reg<fc_dbgaud0ch6::FcDbgaud0ch6Spec>;
#[doc = "Frame Composer Audio Data Channel 6 Register 0"]
pub mod fc_dbgaud0ch6;
#[doc = "FC_DBGAUD1CH6 (rw) register accessor: Frame Composer Audio Data Channel 6 Register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_dbgaud1ch6::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_dbgaud1ch6::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_dbgaud1ch6`]
module"]
#[doc(alias = "FC_DBGAUD1CH6")]
pub type FcDbgaud1ch6 = crate::Reg<fc_dbgaud1ch6::FcDbgaud1ch6Spec>;
#[doc = "Frame Composer Audio Data Channel 6 Register 1"]
pub mod fc_dbgaud1ch6;
#[doc = "FC_DBGAUD2CH6 (rw) register accessor: Frame Composer Audio Data Channel 6 Register 2\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_dbgaud2ch6::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_dbgaud2ch6::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_dbgaud2ch6`]
module"]
#[doc(alias = "FC_DBGAUD2CH6")]
pub type FcDbgaud2ch6 = crate::Reg<fc_dbgaud2ch6::FcDbgaud2ch6Spec>;
#[doc = "Frame Composer Audio Data Channel 6 Register 2"]
pub mod fc_dbgaud2ch6;
#[doc = "FC_DBGAUD0CH7 (rw) register accessor: Frame Composer Audio Data Channel 7 Register 0\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_dbgaud0ch7::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_dbgaud0ch7::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_dbgaud0ch7`]
module"]
#[doc(alias = "FC_DBGAUD0CH7")]
pub type FcDbgaud0ch7 = crate::Reg<fc_dbgaud0ch7::FcDbgaud0ch7Spec>;
#[doc = "Frame Composer Audio Data Channel 7 Register 0"]
pub mod fc_dbgaud0ch7;
#[doc = "FC_DBGAUD1CH7 (rw) register accessor: Frame Composer Audio Data Channel 7 Register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_dbgaud1ch7::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_dbgaud1ch7::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_dbgaud1ch7`]
module"]
#[doc(alias = "FC_DBGAUD1CH7")]
pub type FcDbgaud1ch7 = crate::Reg<fc_dbgaud1ch7::FcDbgaud1ch7Spec>;
#[doc = "Frame Composer Audio Data Channel 7 Register 1"]
pub mod fc_dbgaud1ch7;
#[doc = "FC_DBGAUD2CH7 (rw) register accessor: Frame Composer Audio Data Channel 7 Register 2\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_dbgaud2ch7::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_dbgaud2ch7::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_dbgaud2ch7`]
module"]
#[doc(alias = "FC_DBGAUD2CH7")]
pub type FcDbgaud2ch7 = crate::Reg<fc_dbgaud2ch7::FcDbgaud2ch7Spec>;
#[doc = "Frame Composer Audio Data Channel 7 Register 2"]
pub mod fc_dbgaud2ch7;
#[doc = "FC_DBGTMDS (rw) register accessor: Frame Composer TMDS Data Channel 0 Register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`fc_dbgtmds::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fc_dbgtmds::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@fc_dbgtmds`]
module"]
#[doc(alias = "FC_DBGTMDS")]
pub type FcDbgtmds = crate::Reg<fc_dbgtmds::FcDbgtmdsSpec>;
#[doc = "Frame Composer TMDS Data Channel 0 Register"]
pub mod fc_dbgtmds;
#[doc = "PHY_CONF0 (rw) register accessor: Select interface control.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`phy_conf0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`phy_conf0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_conf0`]
module"]
#[doc(alias = "PHY_CONF0")]
pub type PhyConf0 = crate::Reg<phy_conf0::PhyConf0Spec>;
#[doc = "Select interface control."]
pub mod phy_conf0;
#[doc = "PHY_TST0 (rw) register accessor: Test Clock signal. Otherwise, this field is a \"spare\" bit with no associated functionality.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`phy_tst0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`phy_tst0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_tst0`]
module"]
#[doc(alias = "PHY_TST0")]
pub type PhyTst0 = crate::Reg<phy_tst0::PhyTst0Spec>;
#[doc = "Test Clock signal. Otherwise, this field is a \"spare\" bit with no associated functionality."]
pub mod phy_tst0;
#[doc = "PHY_TST1 (rw) register accessor: Test Data input Otherwise, this field is a \"spare\" bit with no associated functionality.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`phy_tst1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`phy_tst1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_tst1`]
module"]
#[doc(alias = "PHY_TST1")]
pub type PhyTst1 = crate::Reg<phy_tst1::PhyTst1Spec>;
#[doc = "Test Data input Otherwise, this field is a \"spare\" bit with no associated functionality."]
pub mod phy_tst1;
#[doc = "PHY_TST2 (r) register accessor: Test Data output. Otherwise, this field is a \"spare\" bit with no associated functionality.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`phy_tst2::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_tst2`]
module"]
#[doc(alias = "PHY_TST2")]
pub type PhyTst2 = crate::Reg<phy_tst2::PhyTst2Spec>;
#[doc = "Test Data output. Otherwise, this field is a \"spare\" bit with no associated functionality."]
pub mod phy_tst2;
#[doc = "PHY_STAT0 (r) register accessor: Status bit. TX PHY PLL lock indication. You may need to mask or change polarity of this interrupt after it has became active.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`phy_stat0::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_stat0`]
module"]
#[doc(alias = "PHY_STAT0")]
pub type PhyStat0 = crate::Reg<phy_stat0::PhyStat0Spec>;
#[doc = "Status bit. TX PHY PLL lock indication. You may need to mask or change polarity of this interrupt after it has became active."]
pub mod phy_stat0;
#[doc = "PHY_INT0 (r) register accessor: Interrupt indication bit. TX PHY PLL lock indication interrupt.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`phy_int0::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_int0`]
module"]
#[doc(alias = "PHY_INT0")]
pub type PhyInt0 = crate::Reg<phy_int0::PhyInt0Spec>;
#[doc = "Interrupt indication bit. TX PHY PLL lock indication interrupt."]
pub mod phy_int0;
#[doc = "PHY_MASK0 (rw) register accessor: Mask bit for PHY_INT0.TX_PHY_LOCK interrupt bit\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`phy_mask0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`phy_mask0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_mask0`]
module"]
#[doc(alias = "PHY_MASK0")]
pub type PhyMask0 = crate::Reg<phy_mask0::PhyMask0Spec>;
#[doc = "Mask bit for PHY_INT0.TX_PHY_LOCK interrupt bit"]
pub mod phy_mask0;
#[doc = "PHY_POL0 (rw) register accessor: Polarity bit for PHY_INT0.TX_PHY_LOCK interrupt bit\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`phy_pol0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`phy_pol0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_pol0`]
module"]
#[doc(alias = "PHY_POL0")]
pub type PhyPol0 = crate::Reg<phy_pol0::PhyPol0Spec>;
#[doc = "Polarity bit for PHY_INT0.TX_PHY_LOCK interrupt bit"]
pub mod phy_pol0;
#[doc = "PHY_PCLFREQ0 (rw) register accessor: Pixel Clock Frequency (pclk_freq\\[7:0\\]).\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`phy_pclfreq0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`phy_pclfreq0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_pclfreq0`]
module"]
#[doc(alias = "PHY_PCLFREQ0")]
pub type PhyPclfreq0 = crate::Reg<phy_pclfreq0::PhyPclfreq0Spec>;
#[doc = "Pixel Clock Frequency (pclk_freq\\[7:0\\])."]
pub mod phy_pclfreq0;
#[doc = "PHY_PCLFREQ1 (rw) register accessor: Pixel Clock Frequency (pclk_freq\\[9:8\\]).\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`phy_pclfreq1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`phy_pclfreq1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_pclfreq1`]
module"]
#[doc(alias = "PHY_PCLFREQ1")]
pub type PhyPclfreq1 = crate::Reg<phy_pclfreq1::PhyPclfreq1Spec>;
#[doc = "Pixel Clock Frequency (pclk_freq\\[9:8\\])."]
pub mod phy_pclfreq1;
#[doc = "PHY_PLLCFGFREQ0 (rw) register accessor: PLL Configuration Frequency (pllcfgfreq\\[7:0\\]).\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`phy_pllcfgfreq0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`phy_pllcfgfreq0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_pllcfgfreq0`]
module"]
#[doc(alias = "PHY_PLLCFGFREQ0")]
pub type PhyPllcfgfreq0 = crate::Reg<phy_pllcfgfreq0::PhyPllcfgfreq0Spec>;
#[doc = "PLL Configuration Frequency (pllcfgfreq\\[7:0\\])."]
pub mod phy_pllcfgfreq0;
#[doc = "PHY_PLLCFGFREQ1 (rw) register accessor: PLL Configuration Frequency (pllcfgfreq\\[15:8\\]).\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`phy_pllcfgfreq1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`phy_pllcfgfreq1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_pllcfgfreq1`]
module"]
#[doc(alias = "PHY_PLLCFGFREQ1")]
pub type PhyPllcfgfreq1 = crate::Reg<phy_pllcfgfreq1::PhyPllcfgfreq1Spec>;
#[doc = "PLL Configuration Frequency (pllcfgfreq\\[15:8\\])."]
pub mod phy_pllcfgfreq1;
#[doc = "PHY_PLLCFGFREQ2 (rw) register accessor: PLL Configuration Frequency (pllcfgfreq\\[23:16\\]).\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`phy_pllcfgfreq2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`phy_pllcfgfreq2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_pllcfgfreq2`]
module"]
#[doc(alias = "PHY_PLLCFGFREQ2")]
pub type PhyPllcfgfreq2 = crate::Reg<phy_pllcfgfreq2::PhyPllcfgfreq2Spec>;
#[doc = "PLL Configuration Frequency (pllcfgfreq\\[23:16\\])."]
pub mod phy_pllcfgfreq2;
#[doc = "PHY_I2CM_SLAVE (rw) register accessor: Slave address to be sent during read and write operations. PHY Gen2 slave address: 7'h69 HEAC PHY slave address: 7'h49\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`phy_i2cm_slave::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`phy_i2cm_slave::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_i2cm_slave`]
module"]
#[doc(alias = "PHY_I2CM_SLAVE")]
pub type PhyI2cmSlave = crate::Reg<phy_i2cm_slave::PhyI2cmSlaveSpec>;
#[doc = "Slave address to be sent during read and write operations. PHY Gen2 slave address: 7'h69 HEAC PHY slave address: 7'h49"]
pub mod phy_i2cm_slave;
#[doc = "PHY_I2CM_ADDRESS (rw) register accessor: Register address for read and write operations\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`phy_i2cm_address::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`phy_i2cm_address::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_i2cm_address`]
module"]
#[doc(alias = "PHY_I2CM_ADDRESS")]
pub type PhyI2cmAddress = crate::Reg<phy_i2cm_address::PhyI2cmAddressSpec>;
#[doc = "Register address for read and write operations"]
pub mod phy_i2cm_address;
#[doc = "PHY_I2CM_DATAO_1 (rw) register accessor: Data MSB (datao\\[15:8\\]) to be written on register pointed by phy_i2cm_address \\[7:0\\].\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`phy_i2cm_datao_1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`phy_i2cm_datao_1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_i2cm_datao_1`]
module"]
#[doc(alias = "PHY_I2CM_DATAO_1")]
pub type PhyI2cmDatao1 = crate::Reg<phy_i2cm_datao_1::PhyI2cmDatao1Spec>;
#[doc = "Data MSB (datao\\[15:8\\]) to be written on register pointed by phy_i2cm_address \\[7:0\\]."]
pub mod phy_i2cm_datao_1;
#[doc = "PHY_I2CM_DATAO_0 (rw) register accessor: Data LSB (datao\\[7:0\\]) to be written on register pointed by phy_i2cm_address \\[7:0\\].\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`phy_i2cm_datao_0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`phy_i2cm_datao_0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_i2cm_datao_0`]
module"]
#[doc(alias = "PHY_I2CM_DATAO_0")]
pub type PhyI2cmDatao0 = crate::Reg<phy_i2cm_datao_0::PhyI2cmDatao0Spec>;
#[doc = "Data LSB (datao\\[7:0\\]) to be written on register pointed by phy_i2cm_address \\[7:0\\]."]
pub mod phy_i2cm_datao_0;
#[doc = "PHY_I2CM_DATAI_1 (r) register accessor: Data MSB (datai\\[15:8\\]) read from register pointed by phy_i2cm_address\\[7:0\\].\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`phy_i2cm_datai_1::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_i2cm_datai_1`]
module"]
#[doc(alias = "PHY_I2CM_DATAI_1")]
pub type PhyI2cmDatai1 = crate::Reg<phy_i2cm_datai_1::PhyI2cmDatai1Spec>;
#[doc = "Data MSB (datai\\[15:8\\]) read from register pointed by phy_i2cm_address\\[7:0\\]."]
pub mod phy_i2cm_datai_1;
#[doc = "PHY_I2CM_DATAI_0 (r) register accessor: Data LSB (datai\\[7:0\\]) read from register pointed by phy_i2cm_address\\[7:0\\].\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`phy_i2cm_datai_0::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_i2cm_datai_0`]
module"]
#[doc(alias = "PHY_I2CM_DATAI_0")]
pub type PhyI2cmDatai0 = crate::Reg<phy_i2cm_datai_0::PhyI2cmDatai0Spec>;
#[doc = "Data LSB (datai\\[7:0\\]) read from register pointed by phy_i2cm_address\\[7:0\\]."]
pub mod phy_i2cm_datai_0;
#[doc = "PHY_I2CM_OPERATION (w) register accessor: Read operation request\n\nYou can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`phy_i2cm_operation::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_i2cm_operation`]
module"]
#[doc(alias = "PHY_I2CM_OPERATION")]
pub type PhyI2cmOperation = crate::Reg<phy_i2cm_operation::PhyI2cmOperationSpec>;
#[doc = "Read operation request"]
pub mod phy_i2cm_operation;
#[doc = "PHY_I2CM_INT (rw) register accessor: Operation done status bit. Marks the end of a read or write operation.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`phy_i2cm_int::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`phy_i2cm_int::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_i2cm_int`]
module"]
#[doc(alias = "PHY_I2CM_INT")]
pub type PhyI2cmInt = crate::Reg<phy_i2cm_int::PhyI2cmIntSpec>;
#[doc = "Operation done status bit. Marks the end of a read or write operation."]
pub mod phy_i2cm_int;
#[doc = "PHY_I2CM_CTLINT (rw) register accessor: Arbitration error interrupt bit Bits Name Attr Description {arbitration_interrupt = (arbitration_mask==0b) &amp;&amp; (arbitration_status==arbitration_pol)} Note: This bit field is read by the sticky bits present on the ih_i2cmphy_stat0 register.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`phy_i2cm_ctlint::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`phy_i2cm_ctlint::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_i2cm_ctlint`]
module"]
#[doc(alias = "PHY_I2CM_CTLINT")]
pub type PhyI2cmCtlint = crate::Reg<phy_i2cm_ctlint::PhyI2cmCtlintSpec>;
#[doc = "Arbitration error interrupt bit Bits Name Attr Description {arbitration_interrupt = (arbitration_mask==0b) &amp;&amp; (arbitration_status==arbitration_pol)} Note: This bit field is read by the sticky bits present on the ih_i2cmphy_stat0 register."]
pub mod phy_i2cm_ctlint;
#[doc = "PHY_I2CM_DIV (rw) register accessor: Reserved as \"spare\" register with no associated functionality.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`phy_i2cm_div::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`phy_i2cm_div::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_i2cm_div`]
module"]
#[doc(alias = "PHY_I2CM_DIV")]
pub type PhyI2cmDiv = crate::Reg<phy_i2cm_div::PhyI2cmDivSpec>;
#[doc = "Reserved as \"spare\" register with no associated functionality."]
pub mod phy_i2cm_div;
#[doc = "PHY_I2CM_SOFTRSTZ (rw) register accessor: I2C Master Software Reset. Active by writing a zero and auto cleared to one in the following cycle.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`phy_i2cm_softrstz::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`phy_i2cm_softrstz::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_i2cm_softrstz`]
module"]
#[doc(alias = "PHY_I2CM_SOFTRSTZ")]
pub type PhyI2cmSoftrstz = crate::Reg<phy_i2cm_softrstz::PhyI2cmSoftrstzSpec>;
#[doc = "I2C Master Software Reset. Active by writing a zero and auto cleared to one in the following cycle."]
pub mod phy_i2cm_softrstz;
#[doc = "PHY_I2CM_SS_SCL_HCNT_1_ADDR (rw) register accessor: PHY I2C Slow Speed SCL High Level Control Register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`phy_i2cm_ss_scl_hcnt_1_addr::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`phy_i2cm_ss_scl_hcnt_1_addr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_i2cm_ss_scl_hcnt_1_addr`]
module"]
#[doc(alias = "PHY_I2CM_SS_SCL_HCNT_1_ADDR")]
pub type PhyI2cmSsSclHcnt1Addr = crate::Reg<phy_i2cm_ss_scl_hcnt_1_addr::PhyI2cmSsSclHcnt1AddrSpec>;
#[doc = "PHY I2C Slow Speed SCL High Level Control Register 1"]
pub mod phy_i2cm_ss_scl_hcnt_1_addr;
#[doc = "PHY_I2CM_SS_SCL_HCNT_0_ADDR (rw) register accessor: PHY I2C Slow Speed SCL High Level Control Register 0\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`phy_i2cm_ss_scl_hcnt_0_addr::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`phy_i2cm_ss_scl_hcnt_0_addr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_i2cm_ss_scl_hcnt_0_addr`]
module"]
#[doc(alias = "PHY_I2CM_SS_SCL_HCNT_0_ADDR")]
pub type PhyI2cmSsSclHcnt0Addr = crate::Reg<phy_i2cm_ss_scl_hcnt_0_addr::PhyI2cmSsSclHcnt0AddrSpec>;
#[doc = "PHY I2C Slow Speed SCL High Level Control Register 0"]
pub mod phy_i2cm_ss_scl_hcnt_0_addr;
#[doc = "PHY_I2CM_SS_SCL_LCNT_1_ADDR (rw) register accessor: PHY I2C Slow Speed SCL Low Level Control Register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`phy_i2cm_ss_scl_lcnt_1_addr::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`phy_i2cm_ss_scl_lcnt_1_addr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_i2cm_ss_scl_lcnt_1_addr`]
module"]
#[doc(alias = "PHY_I2CM_SS_SCL_LCNT_1_ADDR")]
pub type PhyI2cmSsSclLcnt1Addr = crate::Reg<phy_i2cm_ss_scl_lcnt_1_addr::PhyI2cmSsSclLcnt1AddrSpec>;
#[doc = "PHY I2C Slow Speed SCL Low Level Control Register 1"]
pub mod phy_i2cm_ss_scl_lcnt_1_addr;
#[doc = "PHY_I2CM_SS_SCL_LCNT_0_ADDR (rw) register accessor: PHY I2C Slow Speed SCL Low Level Control Register 0\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`phy_i2cm_ss_scl_lcnt_0_addr::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`phy_i2cm_ss_scl_lcnt_0_addr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_i2cm_ss_scl_lcnt_0_addr`]
module"]
#[doc(alias = "PHY_I2CM_SS_SCL_LCNT_0_ADDR")]
pub type PhyI2cmSsSclLcnt0Addr = crate::Reg<phy_i2cm_ss_scl_lcnt_0_addr::PhyI2cmSsSclLcnt0AddrSpec>;
#[doc = "PHY I2C Slow Speed SCL Low Level Control Register 0"]
pub mod phy_i2cm_ss_scl_lcnt_0_addr;
#[doc = "PHY_I2CM_FS_SCL_HCNT_1_ADDR (rw) register accessor: PHY I2C Fast Speed SCL High Level Control Register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`phy_i2cm_fs_scl_hcnt_1_addr::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`phy_i2cm_fs_scl_hcnt_1_addr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_i2cm_fs_scl_hcnt_1_addr`]
module"]
#[doc(alias = "PHY_I2CM_FS_SCL_HCNT_1_ADDR")]
pub type PhyI2cmFsSclHcnt1Addr = crate::Reg<phy_i2cm_fs_scl_hcnt_1_addr::PhyI2cmFsSclHcnt1AddrSpec>;
#[doc = "PHY I2C Fast Speed SCL High Level Control Register 1"]
pub mod phy_i2cm_fs_scl_hcnt_1_addr;
#[doc = "PHY_I2CM_FS_SCL_HCNT_0_ADDR (rw) register accessor: PHY I2C Fast Speed SCL High Level Control Register Bits Name Attr Description 0\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`phy_i2cm_fs_scl_hcnt_0_addr::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`phy_i2cm_fs_scl_hcnt_0_addr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_i2cm_fs_scl_hcnt_0_addr`]
module"]
#[doc(alias = "PHY_I2CM_FS_SCL_HCNT_0_ADDR")]
pub type PhyI2cmFsSclHcnt0Addr = crate::Reg<phy_i2cm_fs_scl_hcnt_0_addr::PhyI2cmFsSclHcnt0AddrSpec>;
#[doc = "PHY I2C Fast Speed SCL High Level Control Register Bits Name Attr Description 0"]
pub mod phy_i2cm_fs_scl_hcnt_0_addr;
#[doc = "PHY_I2CM_FS_SCL_LCNT_1_ADDR (rw) register accessor: PHY I2C Fast Speed SCL Low Level Control Register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`phy_i2cm_fs_scl_lcnt_1_addr::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`phy_i2cm_fs_scl_lcnt_1_addr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_i2cm_fs_scl_lcnt_1_addr`]
module"]
#[doc(alias = "PHY_I2CM_FS_SCL_LCNT_1_ADDR")]
pub type PhyI2cmFsSclLcnt1Addr = crate::Reg<phy_i2cm_fs_scl_lcnt_1_addr::PhyI2cmFsSclLcnt1AddrSpec>;
#[doc = "PHY I2C Fast Speed SCL Low Level Control Register 1"]
pub mod phy_i2cm_fs_scl_lcnt_1_addr;
#[doc = "PHY_I2CM_FS_SCL_LCNT_0_ADDR (rw) register accessor: PHY I2C Fast Speed SCL Low Level Control Register 0\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`phy_i2cm_fs_scl_lcnt_0_addr::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`phy_i2cm_fs_scl_lcnt_0_addr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_i2cm_fs_scl_lcnt_0_addr`]
module"]
#[doc(alias = "PHY_I2CM_FS_SCL_LCNT_0_ADDR")]
pub type PhyI2cmFsSclLcnt0Addr = crate::Reg<phy_i2cm_fs_scl_lcnt_0_addr::PhyI2cmFsSclLcnt0AddrSpec>;
#[doc = "PHY I2C Fast Speed SCL Low Level Control Register 0"]
pub mod phy_i2cm_fs_scl_lcnt_0_addr;
#[doc = "PHY_I2CM_SDA_HOLD (rw) register accessor: Defines the number of SFR clock cycles to meet tHD:DAT (300 ns) osda_hold = round_to_high_integer (300 ns / (1/ isfrclk_frequency))\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`phy_i2cm_sda_hold::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`phy_i2cm_sda_hold::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@phy_i2cm_sda_hold`]
module"]
#[doc(alias = "PHY_I2CM_SDA_HOLD")]
pub type PhyI2cmSdaHold = crate::Reg<phy_i2cm_sda_hold::PhyI2cmSdaHoldSpec>;
#[doc = "Defines the number of SFR clock cycles to meet tHD:DAT (300 ns) osda_hold = round_to_high_integer (300 ns / (1/ isfrclk_frequency))"]
pub mod phy_i2cm_sda_hold;
#[doc = "JTAG_PHY_CONFIG (rw) register accessor: Configures the JTAG PHY interface output pin Bits Name Attr Description JTAG_TRST_N when in internal control mode (iphy_ext_ctrl=1'b0) or ophyext_jtag_trst_n when PHY_EXTERNAL=1.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`jtag_phy_config::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`jtag_phy_config::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@jtag_phy_config`]
module"]
#[doc(alias = "JTAG_PHY_CONFIG")]
pub type JtagPhyConfig = crate::Reg<jtag_phy_config::JtagPhyConfigSpec>;
#[doc = "Configures the JTAG PHY interface output pin Bits Name Attr Description JTAG_TRST_N when in internal control mode (iphy_ext_ctrl=1'b0) or ophyext_jtag_trst_n when PHY_EXTERNAL=1."]
pub mod jtag_phy_config;
#[doc = "JTAG_PHY_TAP_TCK (rw) register accessor: Configures the JTAG PHY interface pin JTAG_TCK when in internal control mode (iphy_ext_ctrl=1'b0) or ophyext_jtag_tck when PHY_EXTERNAL=1.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`jtag_phy_tap_tck::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`jtag_phy_tap_tck::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@jtag_phy_tap_tck`]
module"]
#[doc(alias = "JTAG_PHY_TAP_TCK")]
pub type JtagPhyTapTck = crate::Reg<jtag_phy_tap_tck::JtagPhyTapTckSpec>;
#[doc = "Configures the JTAG PHY interface pin JTAG_TCK when in internal control mode (iphy_ext_ctrl=1'b0) or ophyext_jtag_tck when PHY_EXTERNAL=1."]
pub mod jtag_phy_tap_tck;
#[doc = "JTAG_PHY_TAP_IN (rw) register accessor: Configures the JTAG PHY interface pin JTAG_TDI when in internal control mode (iphy_ext_ctrl=1'b0) or ophyext_jtag_tdi when PHY_EXTERNAL=1.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`jtag_phy_tap_in::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`jtag_phy_tap_in::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@jtag_phy_tap_in`]
module"]
#[doc(alias = "JTAG_PHY_TAP_IN")]
pub type JtagPhyTapIn = crate::Reg<jtag_phy_tap_in::JtagPhyTapInSpec>;
#[doc = "Configures the JTAG PHY interface pin JTAG_TDI when in internal control mode (iphy_ext_ctrl=1'b0) or ophyext_jtag_tdi when PHY_EXTERNAL=1."]
pub mod jtag_phy_tap_in;
#[doc = "JTAG_PHY_TAP_OUT (r) register accessor: Read JTAG PHY interface input pin JTAG_TDO when in internal control mode (iphy_ext_ctrl=1'b0) or Bits Name Attr Description iphyext_jtag_tdo when PHY_EXTERNAL=1 Value After Reset: 0x0 jtag_phy_addr Description: PHY JTAG Address Control Register Size: 8 bits Offset: 0x3038 Bits Name Attr Description 7:0 jtag_addr R/W Configures the JTAG PHY interface pin JTAG_ADDR\\[7:0\\]
when in internal control mode (iphy_ext_ctrl=1'b0) or iphyext_jtag_addr\\[7:0\\]
when PHY_EXTERNAL=1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`jtag_phy_tap_out::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@jtag_phy_tap_out`]
module"]
#[doc(alias = "JTAG_PHY_TAP_OUT")]
pub type JtagPhyTapOut = crate::Reg<jtag_phy_tap_out::JtagPhyTapOutSpec>;
#[doc = "Read JTAG PHY interface input pin JTAG_TDO when in internal control mode (iphy_ext_ctrl=1'b0) or Bits Name Attr Description iphyext_jtag_tdo when PHY_EXTERNAL=1 Value After Reset: 0x0 jtag_phy_addr Description: PHY JTAG Address Control Register Size: 8 bits Offset: 0x3038 Bits Name Attr Description 7:0 jtag_addr R/W Configures the JTAG PHY interface pin JTAG_ADDR\\[7:0\\]
when in internal control mode (iphy_ext_ctrl=1'b0) or iphyext_jtag_addr\\[7:0\\]
when PHY_EXTERNAL=1"]
pub mod jtag_phy_tap_out;
#[doc = "JTAG_PHY_ADDR (rw) register accessor: Configures the JTAG PHY interface pin JTAG_ADDR\\[7:0\\]
when in internal control mode (iphy_ext_ctrl=1'b0) or iphyext_jtag_addr\\[7:0\\]
when PHY_EXTERNAL=1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`jtag_phy_addr::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`jtag_phy_addr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@jtag_phy_addr`]
module"]
#[doc(alias = "JTAG_PHY_ADDR")]
pub type JtagPhyAddr = crate::Reg<jtag_phy_addr::JtagPhyAddrSpec>;
#[doc = "Configures the JTAG PHY interface pin JTAG_ADDR\\[7:0\\]
when in internal control mode (iphy_ext_ctrl=1'b0) or iphyext_jtag_addr\\[7:0\\]
when PHY_EXTERNAL=1"]
pub mod jtag_phy_addr;
#[doc = "AUD_CONF0 (rw) register accessor: Action I2S_in_en\\[0\\]
- I2Sdata\\[0\\]
enable I2S_in_en\\[1\\]
- I2Sdata\\[1\\]
enable I2S_in_en\\[2\\]
- I2Sdata\\[2\\]
enable I2S_in_en\\[3\\]
- I2Sdata\\[3\\]
enable\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`aud_conf0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`aud_conf0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@aud_conf0`]
module"]
#[doc(alias = "AUD_CONF0")]
pub type AudConf0 = crate::Reg<aud_conf0::AudConf0Spec>;
#[doc = "Action I2S_in_en\\[0\\]
- I2Sdata\\[0\\]
enable I2S_in_en\\[1\\]
- I2Sdata\\[1\\]
enable I2S_in_en\\[2\\]
- I2Sdata\\[2\\]
enable I2S_in_en\\[3\\]
- I2Sdata\\[3\\]
enable"]
pub mod aud_conf0;
#[doc = "AUD_CONF1 (rw) register accessor: I2S input data width I2S_width\\[4:0\\]
| Action 00000b-01111b | Not used 10000b | 16 bit data samples at input 10001b | 17 bit data samples at input 10010b | 18 bit data samples at input 10011b | 19 bit data samples at input 10100b | 20 bit data samples at input 10101b | 21 bit data samples at input 10110b | 22 bit data samples at input 10111b | 23 bit data samples at input 11000b | 24 bit data samples at input 11001b- 11111b | Not Used\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`aud_conf1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`aud_conf1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@aud_conf1`]
module"]
#[doc(alias = "AUD_CONF1")]
pub type AudConf1 = crate::Reg<aud_conf1::AudConf1Spec>;
#[doc = "I2S input data width I2S_width\\[4:0\\]
| Action 00000b-01111b | Not used 10000b | 16 bit data samples at input 10001b | 17 bit data samples at input 10010b | 18 bit data samples at input 10011b | 19 bit data samples at input 10100b | 20 bit data samples at input 10101b | 21 bit data samples at input 10110b | 22 bit data samples at input 10111b | 23 bit data samples at input 11000b | 24 bit data samples at input 11001b- 11111b | Not Used"]
pub mod aud_conf1;
#[doc = "AUD_INT (rw) register accessor: Reserved for future use.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`aud_int::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`aud_int::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@aud_int`]
module"]
#[doc(alias = "AUD_INT")]
pub type AudInt = crate::Reg<aud_int::AudIntSpec>;
#[doc = "Reserved for future use."]
pub mod aud_int;
#[doc = "AUD_CONF2 (rw) register accessor: I2S HBR Mode Enable. When enabled, the I2S audio stream is transmitted using HBR packets.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`aud_conf2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`aud_conf2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@aud_conf2`]
module"]
#[doc(alias = "AUD_CONF2")]
pub type AudConf2 = crate::Reg<aud_conf2::AudConf2Spec>;
#[doc = "I2S HBR Mode Enable. When enabled, the I2S audio stream is transmitted using HBR packets."]
pub mod aud_conf2;
#[doc = "AUD_N1 (rw) register accessor: HDMI Audio Clock Regenerator N value\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`aud_n1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`aud_n1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@aud_n1`]
module"]
#[doc(alias = "AUD_N1")]
pub type AudN1 = crate::Reg<aud_n1::AudN1Spec>;
#[doc = "HDMI Audio Clock Regenerator N value"]
pub mod aud_n1;
#[doc = "AUD_N2 (rw) register accessor: HDMI Audio Clock Regenerator N value\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`aud_n2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`aud_n2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@aud_n2`]
module"]
#[doc(alias = "AUD_N2")]
pub type AudN2 = crate::Reg<aud_n2::AudN2Spec>;
#[doc = "HDMI Audio Clock Regenerator N value"]
pub mod aud_n2;
#[doc = "AUD_N3 (rw) register accessor: HDMI Audio Clock Regenerator N value\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`aud_n3::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`aud_n3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@aud_n3`]
module"]
#[doc(alias = "AUD_N3")]
pub type AudN3 = crate::Reg<aud_n3::AudN3Spec>;
#[doc = "HDMI Audio Clock Regenerator N value"]
pub mod aud_n3;
#[doc = "AUD_CTS1 (rw) register accessor: HDMI Audio Clock Regenerator CTS calculated value. This value can be manually set using the CTS_manual (AUD_CTS3) mechanism.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`aud_cts1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`aud_cts1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@aud_cts1`]
module"]
#[doc(alias = "AUD_CTS1")]
pub type AudCts1 = crate::Reg<aud_cts1::AudCts1Spec>;
#[doc = "HDMI Audio Clock Regenerator CTS calculated value. This value can be manually set using the CTS_manual (AUD_CTS3) mechanism."]
pub mod aud_cts1;
#[doc = "AUD_CTS2 (rw) register accessor: HDMI Audio Clock Regenerator CTS calculated value. This value can be manually set using the CTS_manual (AUD_CTS3) mechanism.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`aud_cts2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`aud_cts2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@aud_cts2`]
module"]
#[doc(alias = "AUD_CTS2")]
pub type AudCts2 = crate::Reg<aud_cts2::AudCts2Spec>;
#[doc = "HDMI Audio Clock Regenerator CTS calculated value. This value can be manually set using the CTS_manual (AUD_CTS3) mechanism."]
pub mod aud_cts2;
#[doc = "AUD_CTS3 (rw) register accessor: HDMI Audio Clock Regenerator CTS calculated value. This value can be manually set using the CTS_manual (AUD_CTS3) mechanism.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`aud_cts3::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`aud_cts3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@aud_cts3`]
module"]
#[doc(alias = "AUD_CTS3")]
pub type AudCts3 = crate::Reg<aud_cts3::AudCts3Spec>;
#[doc = "HDMI Audio Clock Regenerator CTS calculated value. This value can be manually set using the CTS_manual (AUD_CTS3) mechanism."]
pub mod aud_cts3;
#[doc = "AUD_INPUTCLKFS (rw) register accessor: Fs factor configuration: ifsfactor\\[2:0\\]
| Audio Clock | Action 0 | 128xFs | If you select the Bypass SPDIF DRU unit in coreConsultant, the input audio clock (either I2S or SPDIF according to configuration) is used at the audio packetizer to calculate the CTS value and ACR packet insertion rate. | 256xFs | The input audio clock (I2S only) is divided by 2 and then used at audio packetizer to calculate the CTS value and ACR packet insertion rate. | 512xFs | The input audio clock (either I2S or SPDIF according to configuration) used divided by 4 and then used at the audio packetizer to calculate the CTS value and ACR packet insertion rate. Note: When the SPDIF interface is receiving an HBR audio stream (\"Support for HBR over SDPIF\" parameter must be enabled), it is required that the selected IFSFACTOR to be set at 512xFs in order to comply with the HDMI ACR requirements for HBR Bits Name Attr Description audio streams. | Reserved | 64xFs | The input audio clock (I2S only) is multiplied by 2 and then used at the audio packetizer to calculate the CTS value and ACR packet insertion rate. others | 128xFs | If you select the Bypass SPDIF DRU unit in coreConsultant, the input audio clock (either I2S or SPDIF according to configuration) is used at the audio packetizer to calculate the CTS value and ACR packet insertion rate. The SPDIF interface, for non HBR audio, requires that the configured oversampling value to be 128xFs when HTX_SPDIFBYPDRU is enabled and 512xFs if not. When the SPDIF interface is receiving HBR audio (HBR_ON_SPDIF must be enabled), in order to comply with the HDMI ACR requirements for HBR audio streams.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`aud_inputclkfs::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`aud_inputclkfs::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@aud_inputclkfs`]
module"]
#[doc(alias = "AUD_INPUTCLKFS")]
pub type AudInputclkfs = crate::Reg<aud_inputclkfs::AudInputclkfsSpec>;
#[doc = "Fs factor configuration: ifsfactor\\[2:0\\]
| Audio Clock | Action 0 | 128xFs | If you select the Bypass SPDIF DRU unit in coreConsultant, the input audio clock (either I2S or SPDIF according to configuration) is used at the audio packetizer to calculate the CTS value and ACR packet insertion rate. | 256xFs | The input audio clock (I2S only) is divided by 2 and then used at audio packetizer to calculate the CTS value and ACR packet insertion rate. | 512xFs | The input audio clock (either I2S or SPDIF according to configuration) used divided by 4 and then used at the audio packetizer to calculate the CTS value and ACR packet insertion rate. Note: When the SPDIF interface is receiving an HBR audio stream (\"Support for HBR over SDPIF\" parameter must be enabled), it is required that the selected IFSFACTOR to be set at 512xFs in order to comply with the HDMI ACR requirements for HBR Bits Name Attr Description audio streams. | Reserved | 64xFs | The input audio clock (I2S only) is multiplied by 2 and then used at the audio packetizer to calculate the CTS value and ACR packet insertion rate. others | 128xFs | If you select the Bypass SPDIF DRU unit in coreConsultant, the input audio clock (either I2S or SPDIF according to configuration) is used at the audio packetizer to calculate the CTS value and ACR packet insertion rate. The SPDIF interface, for non HBR audio, requires that the configured oversampling value to be 128xFs when HTX_SPDIFBYPDRU is enabled and 512xFs if not. When the SPDIF interface is receiving HBR audio (HBR_ON_SPDIF must be enabled), in order to comply with the HDMI ACR requirements for HBR audio streams."]
pub mod aud_inputclkfs;
#[doc = "AUD_CTS_DITHER (rw) register accessor: Dither dividend (4'd1 if no CTS Dither). This field should be configured with the value of dividend from the HDMI specification.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`aud_cts_dither::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`aud_cts_dither::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@aud_cts_dither`]
module"]
#[doc(alias = "AUD_CTS_DITHER")]
pub type AudCtsDither = crate::Reg<aud_cts_dither::AudCtsDitherSpec>;
#[doc = "Dither dividend (4'd1 if no CTS Dither). This field should be configured with the value of dividend from the HDMI specification."]
pub mod aud_cts_dither;
#[doc = "AUD_SPDIF0 (rw) register accessor: Reserved as \"spare\" bit with no associated functionality.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`aud_spdif0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`aud_spdif0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@aud_spdif0`]
module"]
#[doc(alias = "AUD_SPDIF0")]
pub type AudSpdif0 = crate::Reg<aud_spdif0::AudSpdif0Spec>;
#[doc = "Reserved as \"spare\" bit with no associated functionality."]
pub mod aud_spdif0;
#[doc = "AUD_SPDIF1 (rw) register accessor: When set to 1'b1, this bit field indicates that the input stream has a High Bit Rate (HBR) to be transmitted in HDMI HBR packets. When clear (1b'0), the audio is transmitted in HDMI AUDS packets.Note:&lt; Otherwise, this field is a \"spare\" bit with no associated functionality.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`aud_spdif1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`aud_spdif1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@aud_spdif1`]
module"]
#[doc(alias = "AUD_SPDIF1")]
pub type AudSpdif1 = crate::Reg<aud_spdif1::AudSpdif1Spec>;
#[doc = "When set to 1'b1, this bit field indicates that the input stream has a High Bit Rate (HBR) to be transmitted in HDMI HBR packets. When clear (1b'0), the audio is transmitted in HDMI AUDS packets.Note:&lt; Otherwise, this field is a \"spare\" bit with no associated functionality."]
pub mod aud_spdif1;
#[doc = "AUD_SPDIFINT (rw) register accessor: Reserved for future use.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`aud_spdifint::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`aud_spdifint::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@aud_spdifint`]
module"]
#[doc(alias = "AUD_SPDIFINT")]
pub type AudSpdifint = crate::Reg<aud_spdifint::AudSpdifintSpec>;
#[doc = "Reserved for future use."]
pub mod aud_spdifint;
#[doc = "AUD_SPDIFINT1 (rw) register accessor: Reserved for future use.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`aud_spdifint1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`aud_spdifint1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@aud_spdifint1`]
module"]
#[doc(alias = "AUD_SPDIFINT1")]
pub type AudSpdifint1 = crate::Reg<aud_spdifint1::AudSpdifint1Spec>;
#[doc = "Reserved for future use."]
pub mod aud_spdifint1;
#[doc = "AUD_SPDIF2 (rw) register accessor: Action SPDIF_in_en\\[0\\]
- ispdifdata\\[0\\]
enable SPDIF_in_en\\[1\\]
- ispdifdata\\[1\\]
enable SPDIF_in_en\\[2\\]
- ispdifdata\\[2\\]
enable SPDIF_in_en\\[3\\]
- ispdifdata\\[3\\]
enable\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`aud_spdif2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`aud_spdif2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@aud_spdif2`]
module"]
#[doc(alias = "AUD_SPDIF2")]
pub type AudSpdif2 = crate::Reg<aud_spdif2::AudSpdif2Spec>;
#[doc = "Action SPDIF_in_en\\[0\\]
- ispdifdata\\[0\\]
enable SPDIF_in_en\\[1\\]
- ispdifdata\\[1\\]
enable SPDIF_in_en\\[2\\]
- ispdifdata\\[2\\]
enable SPDIF_in_en\\[3\\]
- ispdifdata\\[3\\]
enable"]
pub mod aud_spdif2;
#[doc = "GP_CONF0 (rw) register accessor: Audio FIFOs software reset Writing 0b: no action taken Writing 1b: Resets all audio FIFOs Reading from this register always returns 0b. Note: If a FIFO reset request (via register write command) lands in the middle of an GPAUD audio transaction, the samples become misaligned (left-right sequence lost). As a solution, for each FIFO reset, an associated SPDIF reset must be issued (writing 8'h7F to MC_SWRSTZ register).\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`gp_conf0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`gp_conf0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@gp_conf0`]
module"]
#[doc(alias = "GP_CONF0")]
pub type GpConf0 = crate::Reg<gp_conf0::GpConf0Spec>;
#[doc = "Audio FIFOs software reset Writing 0b: no action taken Writing 1b: Resets all audio FIFOs Reading from this register always returns 0b. Note: If a FIFO reset request (via register write command) lands in the middle of an GPAUD audio transaction, the samples become misaligned (left-right sequence lost). As a solution, for each FIFO reset, an associated SPDIF reset must be issued (writing 8'h7F to MC_SWRSTZ register)."]
pub mod gp_conf0;
#[doc = "GP_CONF1 (rw) register accessor: Each bit controls the enabling of the respective audio channel. For instance, bit 1, when set (1'b1), the audio Channel 1 is enabled. When cleared, the referred channel is disabled.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`gp_conf1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`gp_conf1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@gp_conf1`]
module"]
#[doc(alias = "GP_CONF1")]
pub type GpConf1 = crate::Reg<gp_conf1::GpConf1Spec>;
#[doc = "Each bit controls the enabling of the respective audio channel. For instance, bit 1, when set (1'b1), the audio Channel 1 is enabled. When cleared, the referred channel is disabled."]
pub mod gp_conf1;
#[doc = "GP_CONF2 (rw) register accessor: HBR packets enable. The Hdmi_tx sends the HBR packets. This bit is enabled when the audio frequency is higher than 192 kHz. If this bit is enabled, the number of channels configured in GP_CONF1 must be set to 8'hFF.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`gp_conf2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`gp_conf2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@gp_conf2`]
module"]
#[doc(alias = "GP_CONF2")]
pub type GpConf2 = crate::Reg<gp_conf2::GpConf2Spec>;
#[doc = "HBR packets enable. The Hdmi_tx sends the HBR packets. This bit is enabled when the audio frequency is higher than 192 kHz. If this bit is enabled, the number of channels configured in GP_CONF1 must be set to 8'hFF."]
pub mod gp_conf2;
#[doc = "GP_MASK (rw) register accessor: FIFO full flag mask\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`gp_mask::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`gp_mask::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@gp_mask`]
module"]
#[doc(alias = "GP_MASK")]
pub type GpMask = crate::Reg<gp_mask::GpMaskSpec>;
#[doc = "FIFO full flag mask"]
pub mod gp_mask;
#[doc = "AHB_DMA_CONF0 (rw) register accessor: 1'b: Forces the burst mode to be fixed beat, incremental burst mode designated by the incr_type\\[1:0\\]
signal. 0'b: Normal operation is unspecified length, incremental burst. It corresponds to INCR AHB burst mode.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ahb_dma_conf0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ahb_dma_conf0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ahb_dma_conf0`]
module"]
#[doc(alias = "AHB_DMA_CONF0")]
pub type AhbDmaConf0 = crate::Reg<ahb_dma_conf0::AhbDmaConf0Spec>;
#[doc = "1'b: Forces the burst mode to be fixed beat, incremental burst mode designated by the incr_type\\[1:0\\]
signal. 0'b: Normal operation is unspecified length, incremental burst. It corresponds to INCR AHB burst mode."]
pub mod ahb_dma_conf0;
#[doc = "AHB_DMA_START (rw) register accessor: Start DMA transaction This register is auto-cleared when the transfer operation is completed (done).\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ahb_dma_start::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ahb_dma_start::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ahb_dma_start`]
module"]
#[doc(alias = "AHB_DMA_START")]
pub type AhbDmaStart = crate::Reg<ahb_dma_start::AhbDmaStartSpec>;
#[doc = "Start DMA transaction This register is auto-cleared when the transfer operation is completed (done)."]
pub mod ahb_dma_start;
#[doc = "AHB_DMA_STOP (rw) register accessor: Stop DMA transaction This register is auto-cleared when the transfer operation is stopped (done).\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ahb_dma_stop::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ahb_dma_stop::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ahb_dma_stop`]
module"]
#[doc(alias = "AHB_DMA_STOP")]
pub type AhbDmaStop = crate::Reg<ahb_dma_stop::AhbDmaStopSpec>;
#[doc = "Stop DMA transaction This register is auto-cleared when the transfer operation is stopped (done)."]
pub mod ahb_dma_stop;
#[doc = "AHB_DMA_THRSLD (rw) register accessor: FIFO medium threshold occupation value\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ahb_dma_thrsld::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ahb_dma_thrsld::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ahb_dma_thrsld`]
module"]
#[doc(alias = "AHB_DMA_THRSLD")]
pub type AhbDmaThrsld = crate::Reg<ahb_dma_thrsld::AhbDmaThrsldSpec>;
#[doc = "FIFO medium threshold occupation value"]
pub mod ahb_dma_thrsld;
#[doc = "AHB_DMA_STRADDR_SET0 (rw) register accessor: Defines init_addr\\[7:0\\]
to initiate DMA burst transactions\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ahb_dma_straddr_set0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ahb_dma_straddr_set0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ahb_dma_straddr_set0`]
module"]
#[doc(alias = "AHB_DMA_STRADDR_SET0")]
pub type AhbDmaStraddrSet0 = crate::Reg<ahb_dma_straddr_set0::AhbDmaStraddrSet0Spec>;
#[doc = "Defines init_addr\\[7:0\\]
to initiate DMA burst transactions"]
pub mod ahb_dma_straddr_set0;
#[doc = "AHB_DMA_STPADDR_SET0 (rw) register accessor: Defines final_addr\\[7:0\\]
to end DMA burst transactions\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ahb_dma_stpaddr_set0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ahb_dma_stpaddr_set0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ahb_dma_stpaddr_set0`]
module"]
#[doc(alias = "AHB_DMA_STPADDR_SET0")]
pub type AhbDmaStpaddrSet0 = crate::Reg<ahb_dma_stpaddr_set0::AhbDmaStpaddrSet0Spec>;
#[doc = "Defines final_addr\\[7:0\\]
to end DMA burst transactions"]
pub mod ahb_dma_stpaddr_set0;
#[doc = "AHB_DMA_BSTRADDR (r) register accessor: Start address for the current burst operation\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ahb_dma_bstraddr::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ahb_dma_bstraddr`]
module"]
#[doc(alias = "AHB_DMA_BSTRADDR")]
pub type AhbDmaBstraddr = crate::Reg<ahb_dma_bstraddr::AhbDmaBstraddrSpec>;
#[doc = "Start address for the current burst operation"]
pub mod ahb_dma_bstraddr;
#[doc = "AHB_DMA_MBLENGTH0 (r) register accessor: Requested burst length (mburstlength\\[7:0\\])\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ahb_dma_mblength0::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ahb_dma_mblength0`]
module"]
#[doc(alias = "AHB_DMA_MBLENGTH0")]
pub type AhbDmaMblength0 = crate::Reg<ahb_dma_mblength0::AhbDmaMblength0Spec>;
#[doc = "Requested burst length (mburstlength\\[7:0\\])"]
pub mod ahb_dma_mblength0;
#[doc = "AHB_DMA_MBLENGTH1 (r) register accessor: Requested burst length\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ahb_dma_mblength1::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ahb_dma_mblength1`]
module"]
#[doc(alias = "AHB_DMA_MBLENGTH1")]
pub type AhbDmaMblength1 = crate::Reg<ahb_dma_mblength1::AhbDmaMblength1Spec>;
#[doc = "Requested burst length"]
pub mod ahb_dma_mblength1;
#[doc = "AHB_DMA_MASK (rw) register accessor: Audio FIFO empty interrupt mask.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ahb_dma_mask::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ahb_dma_mask::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ahb_dma_mask`]
module"]
#[doc(alias = "AHB_DMA_MASK")]
pub type AhbDmaMask = crate::Reg<ahb_dma_mask::AhbDmaMaskSpec>;
#[doc = "Audio FIFO empty interrupt mask."]
pub mod ahb_dma_mask;
#[doc = "AHB_DMA_CONF1 (rw) register accessor: Each bit controls the enabling of the respective audio channel. For instance, when bit 1 is set (1'b1) the audio Channel 1 is enabled. When cleared, the referred channel is disabled.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ahb_dma_conf1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ahb_dma_conf1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ahb_dma_conf1`]
module"]
#[doc(alias = "AHB_DMA_CONF1")]
pub type AhbDmaConf1 = crate::Reg<ahb_dma_conf1::AhbDmaConf1Spec>;
#[doc = "Each bit controls the enabling of the respective audio channel. For instance, when bit 1 is set (1'b1) the audio Channel 1 is enabled. When cleared, the referred channel is disabled."]
pub mod ahb_dma_conf1;
#[doc = "AHB_DMA_BUFFMASK (rw) register accessor: Buffer empty flag mask\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ahb_dma_buffmask::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ahb_dma_buffmask::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ahb_dma_buffmask`]
module"]
#[doc(alias = "AHB_DMA_BUFFMASK")]
pub type AhbDmaBuffmask = crate::Reg<ahb_dma_buffmask::AhbDmaBuffmaskSpec>;
#[doc = "Buffer empty flag mask"]
pub mod ahb_dma_buffmask;
#[doc = "AHB_DMA_MASK1 (rw) register accessor: AHB DMA FIFO overrun mask\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ahb_dma_mask1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ahb_dma_mask1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ahb_dma_mask1`]
module"]
#[doc(alias = "AHB_DMA_MASK1")]
pub type AhbDmaMask1 = crate::Reg<ahb_dma_mask1::AhbDmaMask1Spec>;
#[doc = "AHB DMA FIFO overrun mask"]
pub mod ahb_dma_mask1;
#[doc = "AHB_DMA_STATUS (r) register accessor: Indicates the set of start and stop addresses currently used by the AHB audio DMA. If cleared (1'b0), the start and stop addresses configured in the address range 0x3604 to 0x360B are being used. When set (1'b1), the configurations at address range 0x3620 to 0x3627 are being used. This bit is always at zero when autostart_enable is cleared (1'b0).\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ahb_dma_status::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ahb_dma_status`]
module"]
#[doc(alias = "AHB_DMA_STATUS")]
pub type AhbDmaStatus = crate::Reg<ahb_dma_status::AhbDmaStatusSpec>;
#[doc = "Indicates the set of start and stop addresses currently used by the AHB audio DMA. If cleared (1'b0), the start and stop addresses configured in the address range 0x3604 to 0x360B are being used. When set (1'b1), the configurations at address range 0x3620 to 0x3627 are being used. This bit is always at zero when autostart_enable is cleared (1'b0)."]
pub mod ahb_dma_status;
#[doc = "AHB_DMA_CONF2 (rw) register accessor: Enables the AHB audio DMA auto-start feature\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ahb_dma_conf2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ahb_dma_conf2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ahb_dma_conf2`]
module"]
#[doc(alias = "AHB_DMA_CONF2")]
pub type AhbDmaConf2 = crate::Reg<ahb_dma_conf2::AhbDmaConf2Spec>;
#[doc = "Enables the AHB audio DMA auto-start feature"]
pub mod ahb_dma_conf2;
#[doc = "AHB_DMA_STRADDR_SET1 (rw) register accessor: Defines init_addr_1\\[7:0\\]
to initiate DMA burst transactions\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ahb_dma_straddr_set1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ahb_dma_straddr_set1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ahb_dma_straddr_set1`]
module"]
#[doc(alias = "AHB_DMA_STRADDR_SET1")]
pub type AhbDmaStraddrSet1 = crate::Reg<ahb_dma_straddr_set1::AhbDmaStraddrSet1Spec>;
#[doc = "Defines init_addr_1\\[7:0\\]
to initiate DMA burst transactions"]
pub mod ahb_dma_straddr_set1;
#[doc = "AHB_DMA_STPADDR_SET1 (rw) register accessor: Defines final_addr_1\\[7:0\\]
to end DMA burst transactions\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ahb_dma_stpaddr_set1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ahb_dma_stpaddr_set1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ahb_dma_stpaddr_set1`]
module"]
#[doc(alias = "AHB_DMA_STPADDR_SET1")]
pub type AhbDmaStpaddrSet1 = crate::Reg<ahb_dma_stpaddr_set1::AhbDmaStpaddrSet1Spec>;
#[doc = "Defines final_addr_1\\[7:0\\]
to end DMA burst transactions"]
pub mod ahb_dma_stpaddr_set1;
#[doc = "MC_CLKDIS (rw) register accessor: Audio Sampler clock synchronous disable signal.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`mc_clkdis::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`mc_clkdis::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@mc_clkdis`]
module"]
#[doc(alias = "MC_CLKDIS")]
pub type McClkdis = crate::Reg<mc_clkdis::McClkdisSpec>;
#[doc = "Audio Sampler clock synchronous disable signal."]
pub mod mc_clkdis;
#[doc = "MC_SWRSTZREQ (rw) register accessor: Pixel software reset request.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`mc_swrstzreq::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`mc_swrstzreq::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@mc_swrstzreq`]
module"]
#[doc(alias = "MC_SWRSTZREQ")]
pub type McSwrstzreq = crate::Reg<mc_swrstzreq::McSwrstzreqSpec>;
#[doc = "Pixel software reset request."]
pub mod mc_swrstzreq;
#[doc = "MC_OPCTRL (rw) register accessor: Block HDCP bypass mechanism 1'b0: This is the default value. You can write to the hdcp_clkdisable bit of the register mc_clkdis and bypass HDCP by acting on the register mc_clkdis bit 6 (hdcp_clkdisable) 1'b1: You can still write to the hdcp_clkdisable bit of the register mc_clkdis but this action disables the HDCP module and blocks the bypass mechanism. The output data is frozen and the HDMI Tx and RX fail authentication. Once you set the value to 1'b1, you can change the value back to 1'b0 only by issuing a master reset to the Bits Name Attr Description Hdmi_tx. Otherwise, this field is a \"spare\" bit with no associated functionality.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`mc_opctrl::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`mc_opctrl::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@mc_opctrl`]
module"]
#[doc(alias = "MC_OPCTRL")]
pub type McOpctrl = crate::Reg<mc_opctrl::McOpctrlSpec>;
#[doc = "Block HDCP bypass mechanism 1'b0: This is the default value. You can write to the hdcp_clkdisable bit of the register mc_clkdis and bypass HDCP by acting on the register mc_clkdis bit 6 (hdcp_clkdisable) 1'b1: You can still write to the hdcp_clkdisable bit of the register mc_clkdis but this action disables the HDCP module and blocks the bypass mechanism. The output data is frozen and the HDMI Tx and RX fail authentication. Once you set the value to 1'b1, you can change the value back to 1'b0 only by issuing a master reset to the Bits Name Attr Description Hdmi_tx. Otherwise, this field is a \"spare\" bit with no associated functionality."]
pub mod mc_opctrl;
#[doc = "MC_FLOWCTRL (rw) register accessor: Video path Feed Through enable bit: 1b: Color Space Converter is in the video data path. 0b: Color Space Converter is bypassed (not in the video data path).\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`mc_flowctrl::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`mc_flowctrl::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@mc_flowctrl`]
module"]
#[doc(alias = "MC_FLOWCTRL")]
pub type McFlowctrl = crate::Reg<mc_flowctrl::McFlowctrlSpec>;
#[doc = "Video path Feed Through enable bit: 1b: Color Space Converter is in the video data path. 0b: Color Space Converter is bypassed (not in the video data path)."]
pub mod mc_flowctrl;
#[doc = "MC_PHYRSTZ (rw) register accessor: HDMI Source PHY active low reset control for PHY GEN1, active high reset control for PHY GEN2.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`mc_phyrstz::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`mc_phyrstz::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@mc_phyrstz`]
module"]
#[doc(alias = "MC_PHYRSTZ")]
pub type McPhyrstz = crate::Reg<mc_phyrstz::McPhyrstzSpec>;
#[doc = "HDMI Source PHY active low reset control for PHY GEN1, active high reset control for PHY GEN2."]
pub mod mc_phyrstz;
#[doc = "MC_LOCKONCLOCK (rw) register accessor: CEC clock status. Indicates that the clock is present in the system. Cleared by WR 1 to this position.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`mc_lockonclock::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`mc_lockonclock::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@mc_lockonclock`]
module"]
#[doc(alias = "MC_LOCKONCLOCK")]
pub type McLockonclock = crate::Reg<mc_lockonclock::McLockonclockSpec>;
#[doc = "CEC clock status. Indicates that the clock is present in the system. Cleared by WR 1 to this position."]
pub mod mc_lockonclock;
#[doc = "MC_HEACPHY_RST (rw) register accessor: HEAC PHY reset (active high)\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`mc_heacphy_rst::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`mc_heacphy_rst::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@mc_heacphy_rst`]
module"]
#[doc(alias = "MC_HEACPHY_RST")]
pub type McHeacphyRst = crate::Reg<mc_heacphy_rst::McHeacphyRstSpec>;
#[doc = "HEAC PHY reset (active high)"]
pub mod mc_heacphy_rst;
#[doc = "MC_LOCKONCLOCK_2 (rw) register accessor: AHB audio DMA clock status. Indicates that the clock is present in the system. Cleared by WR 1 to this position.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`mc_lockonclock_2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`mc_lockonclock_2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@mc_lockonclock_2`]
module"]
#[doc(alias = "MC_LOCKONCLOCK_2")]
pub type McLockonclock2 = crate::Reg<mc_lockonclock_2::McLockonclock2Spec>;
#[doc = "AHB audio DMA clock status. Indicates that the clock is present in the system. Cleared by WR 1 to this position."]
pub mod mc_lockonclock_2;
#[doc = "MC_SWRSTZREQ_2 (rw) register accessor: AHB audio DMA software reset request. Writing 1'b1 does not result in any action. Writing 1'b0 to this register resets all AHB audio logic.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`mc_swrstzreq_2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`mc_swrstzreq_2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@mc_swrstzreq_2`]
module"]
#[doc(alias = "MC_SWRSTZREQ_2")]
pub type McSwrstzreq2 = crate::Reg<mc_swrstzreq_2::McSwrstzreq2Spec>;
#[doc = "AHB audio DMA software reset request. Writing 1'b1 does not result in any action. Writing 1'b0 to this register resets all AHB audio logic."]
pub mod mc_swrstzreq_2;
#[doc = "MC_OPSTS (r) register accessor: HDCP SNPS 2.2 versus 1.4 switch value status. 1'b0: HDCP 1.4 selected 1'b1: HDCP 2.2 selected\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`mc_opsts::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@mc_opsts`]
module"]
#[doc(alias = "MC_OPSTS")]
pub type McOpsts = crate::Reg<mc_opsts::McOpstsSpec>;
#[doc = "HDCP SNPS 2.2 versus 1.4 switch value status. 1'b0: HDCP 1.4 selected 1'b1: HDCP 2.2 selected"]
pub mod mc_opsts;
#[doc = "BASE_SFRDIVLOW (rw) register accessor: SFR clock divider Low This register must be configured with the 8 least- significant bits of the value sfrclk frequency divided by 1000 (for example, for 27 MHz base_sfrdiv\\[14:0\\]
= 27027). The configured data is used to generate a reference pulse of 1ms period that is needed by several timers within the controller.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`base_sfrdivlow::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`base_sfrdivlow::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@base_sfrdivlow`]
module"]
#[doc(alias = "BASE_SFRDIVLOW")]
pub type BaseSfrdivlow = crate::Reg<base_sfrdivlow::BaseSfrdivlowSpec>;
#[doc = "SFR clock divider Low This register must be configured with the 8 least- significant bits of the value sfrclk frequency divided by 1000 (for example, for 27 MHz base_sfrdiv\\[14:0\\]
= 27027). The configured data is used to generate a reference pulse of 1ms period that is needed by several timers within the controller."]
pub mod base_sfrdivlow;
#[doc = "BASE_SFRDIVHIGH (rw) register accessor: SFR clock divider High This register must be configured with the 7 most- significant bits of the value sfrclk frequency divided by 1000 (for example, for 27 MHz base_sfrdiv\\[14:0\\]
= 27027). The configured data is used to generate a reference pulse of 1ms period that is needed by several timers within the controller.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`base_sfrdivhigh::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`base_sfrdivhigh::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@base_sfrdivhigh`]
module"]
#[doc(alias = "BASE_SFRDIVHIGH")]
pub type BaseSfrdivhigh = crate::Reg<base_sfrdivhigh::BaseSfrdivhighSpec>;
#[doc = "SFR clock divider High This register must be configured with the 7 most- significant bits of the value sfrclk frequency divided by 1000 (for example, for 27 MHz base_sfrdiv\\[14:0\\]
= 27027). The configured data is used to generate a reference pulse of 1ms period that is needed by several timers within the controller."]
pub mod base_sfrdivhigh;
#[doc = "CSC_CFG (rw) register accessor: Chroma decimation configuration: decmode\\[1:0\\]
| Chroma Decimation 00 | decimation disabled 01 | Hd (z) =1 10 | Hd(z)=1/ 4 + 1/2z^(-1 )+1/4 z^(-2) 11 | Hd(z)x2^(11)= -5+12z^(-2) - 22z^(- 4)+39z^(-8) +109z^(-10) -204z^(-12)+648z^(-14) + 1024z^(-15) +648z^(-16) - 204z^(-18) +109z^(-20)- 65z^(-22) +39z^(-24) - 22z^(-26) +12z^(- 28)-5z^(-30)\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`csc_cfg::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`csc_cfg::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@csc_cfg`]
module"]
#[doc(alias = "CSC_CFG")]
pub type CscCfg = crate::Reg<csc_cfg::CscCfgSpec>;
#[doc = "Chroma decimation configuration: decmode\\[1:0\\]
| Chroma Decimation 00 | decimation disabled 01 | Hd (z) =1 10 | Hd(z)=1/ 4 + 1/2z^(-1 )+1/4 z^(-2) 11 | Hd(z)x2^(11)= -5+12z^(-2) - 22z^(- 4)+39z^(-8) +109z^(-10) -204z^(-12)+648z^(-14) + 1024z^(-15) +648z^(-16) - 204z^(-18) +109z^(-20)- 65z^(-22) +39z^(-24) - 22z^(-26) +12z^(- 28)-5z^(-30)"]
pub mod csc_cfg;
#[doc = "CSC_SCALE (rw) register accessor: Defines the cscscale\\[1:0\\]
scale factor to apply to all coefficients in Color Space Conversion. This scale factor is expressed in the number of left shifts to apply to each of the coefficients, ranging from 0 to 2.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`csc_scale::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`csc_scale::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@csc_scale`]
module"]
#[doc(alias = "CSC_SCALE")]
pub type CscScale = crate::Reg<csc_scale::CscScaleSpec>;
#[doc = "Defines the cscscale\\[1:0\\]
scale factor to apply to all coefficients in Color Space Conversion. This scale factor is expressed in the number of left shifts to apply to each of the coefficients, ranging from 0 to 2."]
pub mod csc_scale;
#[doc = "CSC_COEF_A1_MSB (rw) register accessor: Color Space Converter Matrix A1 Coefficient Register MSB\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`csc_coef_a1_msb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`csc_coef_a1_msb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@csc_coef_a1_msb`]
module"]
#[doc(alias = "CSC_COEF_A1_MSB")]
pub type CscCoefA1Msb = crate::Reg<csc_coef_a1_msb::CscCoefA1MsbSpec>;
#[doc = "Color Space Converter Matrix A1 Coefficient Register MSB"]
pub mod csc_coef_a1_msb;
#[doc = "CSC_COEF_A1_LSB (rw) register accessor: Color Space Converter Matrix A1 Coefficient Register LSB\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`csc_coef_a1_lsb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`csc_coef_a1_lsb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@csc_coef_a1_lsb`]
module"]
#[doc(alias = "CSC_COEF_A1_LSB")]
pub type CscCoefA1Lsb = crate::Reg<csc_coef_a1_lsb::CscCoefA1LsbSpec>;
#[doc = "Color Space Converter Matrix A1 Coefficient Register LSB"]
pub mod csc_coef_a1_lsb;
#[doc = "CSC_COEF_A2_MSB (rw) register accessor: Color Space Converter Matrix A2 Coefficient Register MSB\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`csc_coef_a2_msb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`csc_coef_a2_msb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@csc_coef_a2_msb`]
module"]
#[doc(alias = "CSC_COEF_A2_MSB")]
pub type CscCoefA2Msb = crate::Reg<csc_coef_a2_msb::CscCoefA2MsbSpec>;
#[doc = "Color Space Converter Matrix A2 Coefficient Register MSB"]
pub mod csc_coef_a2_msb;
#[doc = "CSC_COEF_A2_LSB (rw) register accessor: Color Space Converter Matrix A2 Coefficient Register LSB\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`csc_coef_a2_lsb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`csc_coef_a2_lsb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@csc_coef_a2_lsb`]
module"]
#[doc(alias = "CSC_COEF_A2_LSB")]
pub type CscCoefA2Lsb = crate::Reg<csc_coef_a2_lsb::CscCoefA2LsbSpec>;
#[doc = "Color Space Converter Matrix A2 Coefficient Register LSB"]
pub mod csc_coef_a2_lsb;
#[doc = "CSC_COEF_A3_MSB (rw) register accessor: Color Space Converter Matrix A3 Coefficient Register MSB\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`csc_coef_a3_msb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`csc_coef_a3_msb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@csc_coef_a3_msb`]
module"]
#[doc(alias = "CSC_COEF_A3_MSB")]
pub type CscCoefA3Msb = crate::Reg<csc_coef_a3_msb::CscCoefA3MsbSpec>;
#[doc = "Color Space Converter Matrix A3 Coefficient Register MSB"]
pub mod csc_coef_a3_msb;
#[doc = "CSC_COEF_A3_LSB (rw) register accessor: Color Space Converter Matrix A3 Coefficient Register LSB\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`csc_coef_a3_lsb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`csc_coef_a3_lsb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@csc_coef_a3_lsb`]
module"]
#[doc(alias = "CSC_COEF_A3_LSB")]
pub type CscCoefA3Lsb = crate::Reg<csc_coef_a3_lsb::CscCoefA3LsbSpec>;
#[doc = "Color Space Converter Matrix A3 Coefficient Register LSB"]
pub mod csc_coef_a3_lsb;
#[doc = "CSC_COEF_A4_MSB (rw) register accessor: Color Space Converter Matrix A4 Coefficient Register MSB\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`csc_coef_a4_msb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`csc_coef_a4_msb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@csc_coef_a4_msb`]
module"]
#[doc(alias = "CSC_COEF_A4_MSB")]
pub type CscCoefA4Msb = crate::Reg<csc_coef_a4_msb::CscCoefA4MsbSpec>;
#[doc = "Color Space Converter Matrix A4 Coefficient Register MSB"]
pub mod csc_coef_a4_msb;
#[doc = "CSC_COEF_A4_LSB (rw) register accessor: Color Space Converter Matrix A4 Coefficient Register LSB\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`csc_coef_a4_lsb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`csc_coef_a4_lsb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@csc_coef_a4_lsb`]
module"]
#[doc(alias = "CSC_COEF_A4_LSB")]
pub type CscCoefA4Lsb = crate::Reg<csc_coef_a4_lsb::CscCoefA4LsbSpec>;
#[doc = "Color Space Converter Matrix A4 Coefficient Register LSB"]
pub mod csc_coef_a4_lsb;
#[doc = "CSC_COEF_B1_MSB (rw) register accessor: Color Space Converter Matrix B1 Coefficient Register MSB\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`csc_coef_b1_msb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`csc_coef_b1_msb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@csc_coef_b1_msb`]
module"]
#[doc(alias = "CSC_COEF_B1_MSB")]
pub type CscCoefB1Msb = crate::Reg<csc_coef_b1_msb::CscCoefB1MsbSpec>;
#[doc = "Color Space Converter Matrix B1 Coefficient Register MSB"]
pub mod csc_coef_b1_msb;
#[doc = "CSC_COEF_B1_LSB (rw) register accessor: Color Space Converter Matrix B1 Coefficient Register LSB\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`csc_coef_b1_lsb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`csc_coef_b1_lsb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@csc_coef_b1_lsb`]
module"]
#[doc(alias = "CSC_COEF_B1_LSB")]
pub type CscCoefB1Lsb = crate::Reg<csc_coef_b1_lsb::CscCoefB1LsbSpec>;
#[doc = "Color Space Converter Matrix B1 Coefficient Register LSB"]
pub mod csc_coef_b1_lsb;
#[doc = "CSC_COEF_B2_MSB (rw) register accessor: Color Space Converter Matrix B2 Coefficient Register MSB\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`csc_coef_b2_msb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`csc_coef_b2_msb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@csc_coef_b2_msb`]
module"]
#[doc(alias = "CSC_COEF_B2_MSB")]
pub type CscCoefB2Msb = crate::Reg<csc_coef_b2_msb::CscCoefB2MsbSpec>;
#[doc = "Color Space Converter Matrix B2 Coefficient Register MSB"]
pub mod csc_coef_b2_msb;
#[doc = "CSC_COEF_B2_LSB (rw) register accessor: Color Space Converter Matrix B2 Coefficient Register LSB\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`csc_coef_b2_lsb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`csc_coef_b2_lsb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@csc_coef_b2_lsb`]
module"]
#[doc(alias = "CSC_COEF_B2_LSB")]
pub type CscCoefB2Lsb = crate::Reg<csc_coef_b2_lsb::CscCoefB2LsbSpec>;
#[doc = "Color Space Converter Matrix B2 Coefficient Register LSB"]
pub mod csc_coef_b2_lsb;
#[doc = "CSC_COEF_B3_MSB (rw) register accessor: Color Space Converter Matrix B3 Coefficient Register MSB\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`csc_coef_b3_msb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`csc_coef_b3_msb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@csc_coef_b3_msb`]
module"]
#[doc(alias = "CSC_COEF_B3_MSB")]
pub type CscCoefB3Msb = crate::Reg<csc_coef_b3_msb::CscCoefB3MsbSpec>;
#[doc = "Color Space Converter Matrix B3 Coefficient Register MSB"]
pub mod csc_coef_b3_msb;
#[doc = "CSC_COEF_B3_LSB (rw) register accessor: Color Space Converter Matrix B3 Coefficient Register LSB\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`csc_coef_b3_lsb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`csc_coef_b3_lsb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@csc_coef_b3_lsb`]
module"]
#[doc(alias = "CSC_COEF_B3_LSB")]
pub type CscCoefB3Lsb = crate::Reg<csc_coef_b3_lsb::CscCoefB3LsbSpec>;
#[doc = "Color Space Converter Matrix B3 Coefficient Register LSB"]
pub mod csc_coef_b3_lsb;
#[doc = "CSC_COEF_B4_MSB (rw) register accessor: Color Space Converter Matrix B4 Coefficient Register MSB\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`csc_coef_b4_msb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`csc_coef_b4_msb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@csc_coef_b4_msb`]
module"]
#[doc(alias = "CSC_COEF_B4_MSB")]
pub type CscCoefB4Msb = crate::Reg<csc_coef_b4_msb::CscCoefB4MsbSpec>;
#[doc = "Color Space Converter Matrix B4 Coefficient Register MSB"]
pub mod csc_coef_b4_msb;
#[doc = "CSC_COEF_B4_LSB (rw) register accessor: Color Space Converter Matrix B4 Coefficient Register LSB\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`csc_coef_b4_lsb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`csc_coef_b4_lsb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@csc_coef_b4_lsb`]
module"]
#[doc(alias = "CSC_COEF_B4_LSB")]
pub type CscCoefB4Lsb = crate::Reg<csc_coef_b4_lsb::CscCoefB4LsbSpec>;
#[doc = "Color Space Converter Matrix B4 Coefficient Register LSB"]
pub mod csc_coef_b4_lsb;
#[doc = "CSC_COEF_C1_MSB (rw) register accessor: Color Space Converter Matrix C1 Coefficient Register MSB\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`csc_coef_c1_msb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`csc_coef_c1_msb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@csc_coef_c1_msb`]
module"]
#[doc(alias = "CSC_COEF_C1_MSB")]
pub type CscCoefC1Msb = crate::Reg<csc_coef_c1_msb::CscCoefC1MsbSpec>;
#[doc = "Color Space Converter Matrix C1 Coefficient Register MSB"]
pub mod csc_coef_c1_msb;
#[doc = "CSC_COEF_C1_LSB (rw) register accessor: Color Space Converter Matrix C1 Coefficient Register LSB\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`csc_coef_c1_lsb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`csc_coef_c1_lsb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@csc_coef_c1_lsb`]
module"]
#[doc(alias = "CSC_COEF_C1_LSB")]
pub type CscCoefC1Lsb = crate::Reg<csc_coef_c1_lsb::CscCoefC1LsbSpec>;
#[doc = "Color Space Converter Matrix C1 Coefficient Register LSB"]
pub mod csc_coef_c1_lsb;
#[doc = "CSC_COEF_C2_MSB (rw) register accessor: Color Space Converter Matrix C2 Coefficient Register MSB\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`csc_coef_c2_msb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`csc_coef_c2_msb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@csc_coef_c2_msb`]
module"]
#[doc(alias = "CSC_COEF_C2_MSB")]
pub type CscCoefC2Msb = crate::Reg<csc_coef_c2_msb::CscCoefC2MsbSpec>;
#[doc = "Color Space Converter Matrix C2 Coefficient Register MSB"]
pub mod csc_coef_c2_msb;
#[doc = "CSC_COEF_C2_LSB (rw) register accessor: Color Space Converter Matrix C2 Coefficient Register LSB\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`csc_coef_c2_lsb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`csc_coef_c2_lsb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@csc_coef_c2_lsb`]
module"]
#[doc(alias = "CSC_COEF_C2_LSB")]
pub type CscCoefC2Lsb = crate::Reg<csc_coef_c2_lsb::CscCoefC2LsbSpec>;
#[doc = "Color Space Converter Matrix C2 Coefficient Register LSB"]
pub mod csc_coef_c2_lsb;
#[doc = "CSC_COEF_C3_MSB (rw) register accessor: Color Space Converter Matrix C3 Coefficient Register MSB\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`csc_coef_c3_msb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`csc_coef_c3_msb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@csc_coef_c3_msb`]
module"]
#[doc(alias = "CSC_COEF_C3_MSB")]
pub type CscCoefC3Msb = crate::Reg<csc_coef_c3_msb::CscCoefC3MsbSpec>;
#[doc = "Color Space Converter Matrix C3 Coefficient Register MSB"]
pub mod csc_coef_c3_msb;
#[doc = "CSC_COEF_C3_LSB (rw) register accessor: Color Space Converter Matrix C3 Coefficient Register LSB\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`csc_coef_c3_lsb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`csc_coef_c3_lsb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@csc_coef_c3_lsb`]
module"]
#[doc(alias = "CSC_COEF_C3_LSB")]
pub type CscCoefC3Lsb = crate::Reg<csc_coef_c3_lsb::CscCoefC3LsbSpec>;
#[doc = "Color Space Converter Matrix C3 Coefficient Register LSB"]
pub mod csc_coef_c3_lsb;
#[doc = "CSC_COEF_C4_MSB (rw) register accessor: Description: Color Space Converter Matrix C4 Coefficient Register MSB\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`csc_coef_c4_msb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`csc_coef_c4_msb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@csc_coef_c4_msb`]
module"]
#[doc(alias = "CSC_COEF_C4_MSB")]
pub type CscCoefC4Msb = crate::Reg<csc_coef_c4_msb::CscCoefC4MsbSpec>;
#[doc = "Description: Color Space Converter Matrix C4 Coefficient Register MSB"]
pub mod csc_coef_c4_msb;
#[doc = "CSC_COEF_C4_LSB (rw) register accessor: Color Space Converter Matrix C4 Coefficient Register LSB\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`csc_coef_c4_lsb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`csc_coef_c4_lsb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@csc_coef_c4_lsb`]
module"]
#[doc(alias = "CSC_COEF_C4_LSB")]
pub type CscCoefC4Lsb = crate::Reg<csc_coef_c4_lsb::CscCoefC4LsbSpec>;
#[doc = "Color Space Converter Matrix C4 Coefficient Register LSB"]
pub mod csc_coef_c4_lsb;
#[doc = "CSC_LIMIT_UP_MSB (rw) register accessor: Color Space Converter Matrix Output Upper Limit Register MSB\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`csc_limit_up_msb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`csc_limit_up_msb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@csc_limit_up_msb`]
module"]
#[doc(alias = "CSC_LIMIT_UP_MSB")]
pub type CscLimitUpMsb = crate::Reg<csc_limit_up_msb::CscLimitUpMsbSpec>;
#[doc = "Color Space Converter Matrix Output Upper Limit Register MSB"]
pub mod csc_limit_up_msb;
#[doc = "CSC_LIMIT_UP_LSB (rw) register accessor: Color Space Converter Matrix Output Upper Limit Register LSB\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`csc_limit_up_lsb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`csc_limit_up_lsb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@csc_limit_up_lsb`]
module"]
#[doc(alias = "CSC_LIMIT_UP_LSB")]
pub type CscLimitUpLsb = crate::Reg<csc_limit_up_lsb::CscLimitUpLsbSpec>;
#[doc = "Color Space Converter Matrix Output Upper Limit Register LSB"]
pub mod csc_limit_up_lsb;
#[doc = "CSC_LIMIT_DN_MSB (rw) register accessor: Color Space Converter Matrix output Down Limit Register MSB\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`csc_limit_dn_msb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`csc_limit_dn_msb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@csc_limit_dn_msb`]
module"]
#[doc(alias = "CSC_LIMIT_DN_MSB")]
pub type CscLimitDnMsb = crate::Reg<csc_limit_dn_msb::CscLimitDnMsbSpec>;
#[doc = "Color Space Converter Matrix output Down Limit Register MSB"]
pub mod csc_limit_dn_msb;
#[doc = "CSC_LIMIT_DN_LSB (rw) register accessor: Color Space Converter Matrix Output Down Limit Register LSB\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`csc_limit_dn_lsb::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`csc_limit_dn_lsb::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@csc_limit_dn_lsb`]
module"]
#[doc(alias = "CSC_LIMIT_DN_LSB")]
pub type CscLimitDnLsb = crate::Reg<csc_limit_dn_lsb::CscLimitDnLsbSpec>;
#[doc = "Color Space Converter Matrix Output Down Limit Register LSB"]
pub mod csc_limit_dn_lsb;
#[doc = "A_HDCPCFG0 (rw) register accessor: Configures the transmitter to operate with a HDMI capable device or with a DVI device.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`a_hdcpcfg0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`a_hdcpcfg0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@a_hdcpcfg0`]
module"]
#[doc(alias = "A_HDCPCFG0")]
pub type AHdcpcfg0 = crate::Reg<a_hdcpcfg0::AHdcpcfg0Spec>;
#[doc = "Configures the transmitter to operate with a HDMI capable device or with a DVI device."]
pub mod a_hdcpcfg0;
#[doc = "A_HDCPCFG1 (rw) register accessor: Software reset signal, active by writing a zero and auto cleared to 1 in the following cycle.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`a_hdcpcfg1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`a_hdcpcfg1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@a_hdcpcfg1`]
module"]
#[doc(alias = "A_HDCPCFG1")]
pub type AHdcpcfg1 = crate::Reg<a_hdcpcfg1::AHdcpcfg1Spec>;
#[doc = "Software reset signal, active by writing a zero and auto cleared to 1 in the following cycle."]
pub mod a_hdcpcfg1;
#[doc = "A_HDCPOBS0 (r) register accessor: Informs that the current HDMI link has the HDCP protocol fully engaged.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`a_hdcpobs0::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@a_hdcpobs0`]
module"]
#[doc(alias = "A_HDCPOBS0")]
pub type AHdcpobs0 = crate::Reg<a_hdcpobs0::AHdcpobs0Spec>;
#[doc = "Informs that the current HDMI link has the HDCP protocol fully engaged."]
pub mod a_hdcpobs0;
#[doc = "A_HDCPOBS1 (r) register accessor: Observability register informs in which state the revocation machine is on.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`a_hdcpobs1::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@a_hdcpobs1`]
module"]
#[doc(alias = "A_HDCPOBS1")]
pub type AHdcpobs1 = crate::Reg<a_hdcpobs1::AHdcpobs1Spec>;
#[doc = "Observability register informs in which state the revocation machine is on."]
pub mod a_hdcpobs1;
#[doc = "A_HDCPOBS2 (r) register accessor: Observability register informs in which state the EESS machine is on.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`a_hdcpobs2::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@a_hdcpobs2`]
module"]
#[doc(alias = "A_HDCPOBS2")]
pub type AHdcpobs2 = crate::Reg<a_hdcpobs2::AHdcpobs2Spec>;
#[doc = "Observability register informs in which state the EESS machine is on."]
pub mod a_hdcpobs2;
#[doc = "A_HDCPOBS3 (r) register accessor: Register read from attached sink device: Bcap(0x40) bit 0.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`a_hdcpobs3::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@a_hdcpobs3`]
module"]
#[doc(alias = "A_HDCPOBS3")]
pub type AHdcpobs3 = crate::Reg<a_hdcpobs3::AHdcpobs3Spec>;
#[doc = "Register read from attached sink device: Bcap(0x40) bit 0."]
pub mod a_hdcpobs3;
#[doc = "A_APIINTCLR (w) register accessor: Clears the interruption related to KSV Attr grant for Read-Write access.\n\nYou can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`a_apiintclr::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@a_apiintclr`]
module"]
#[doc(alias = "A_APIINTCLR")]
pub type AApiintclr = crate::Reg<a_apiintclr::AApiintclrSpec>;
#[doc = "Clears the interruption related to KSV Attr grant for Read-Write access."]
pub mod a_apiintclr;
#[doc = "A_APIINTSTAT (r) register accessor: Notifies that the KSV Attr as been guaranteed for Read-Write access.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`a_apiintstat::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@a_apiintstat`]
module"]
#[doc(alias = "A_APIINTSTAT")]
pub type AApiintstat = crate::Reg<a_apiintstat::AApiintstatSpec>;
#[doc = "Notifies that the KSV Attr as been guaranteed for Read-Write access."]
pub mod a_apiintstat;
#[doc = "A_APIINTMSK (rw) register accessor: Masks the interruption related to KSV Attr grant for Read-Write access.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`a_apiintmsk::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`a_apiintmsk::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@a_apiintmsk`]
module"]
#[doc(alias = "A_APIINTMSK")]
pub type AApiintmsk = crate::Reg<a_apiintmsk::AApiintmskSpec>;
#[doc = "Masks the interruption related to KSV Attr grant for Read-Write access."]
pub mod a_apiintmsk;
#[doc = "A_VIDPOLCFG (rw) register accessor: Reserved as \"spare\" bit with no associated functionality.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`a_vidpolcfg::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`a_vidpolcfg::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@a_vidpolcfg`]
module"]
#[doc(alias = "A_VIDPOLCFG")]
pub type AVidpolcfg = crate::Reg<a_vidpolcfg::AVidpolcfgSpec>;
#[doc = "Reserved as \"spare\" bit with no associated functionality."]
pub mod a_vidpolcfg;
#[doc = "A_OESSWCFG (rw) register accessor: HDCP OESS WOO Configuration Register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`a_oesswcfg::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`a_oesswcfg::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@a_oesswcfg`]
module"]
#[doc(alias = "A_OESSWCFG")]
pub type AOesswcfg = crate::Reg<a_oesswcfg::AOesswcfgSpec>;
#[doc = "HDCP OESS WOO Configuration Register"]
pub mod a_oesswcfg;
#[doc = "A_COREVERLSB (r) register accessor: HDCP Controller Version Register LSB\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`a_coreverlsb::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@a_coreverlsb`]
module"]
#[doc(alias = "A_COREVERLSB")]
pub type ACoreverlsb = crate::Reg<a_coreverlsb::ACoreverlsbSpec>;
#[doc = "HDCP Controller Version Register LSB"]
pub mod a_coreverlsb;
#[doc = "A_COREVERMSB (r) register accessor: HDCP Controller Version Register MSB\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`a_corevermsb::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@a_corevermsb`]
module"]
#[doc(alias = "A_COREVERMSB")]
pub type ACorevermsb = crate::Reg<a_corevermsb::ACorevermsbSpec>;
#[doc = "HDCP Controller Version Register MSB"]
pub mod a_corevermsb;
#[doc = "A_KSVMEMCTRL (rw) register accessor: Request access to the KSV memory; must be de- asserted after the access is completed by the system.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`a_ksvmemctrl::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`a_ksvmemctrl::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@a_ksvmemctrl`]
module"]
#[doc(alias = "A_KSVMEMCTRL")]
pub type AKsvmemctrl = crate::Reg<a_ksvmemctrl::AKsvmemctrlSpec>;
#[doc = "Request access to the KSV memory; must be de- asserted after the access is completed by the system."]
pub mod a_ksvmemctrl;
#[doc = "HDCP_BSTATUS (rw) register accessor: HDCP BSTATUS\\[15:0\\]. If Attr has not been granted (see register a_ksvmemctrl), the value read will be 8'hff.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hdcp_bstatus::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hdcp_bstatus::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcp_bstatus`]
module"]
#[doc(alias = "HDCP_BSTATUS")]
pub type HdcpBstatus = crate::Reg<hdcp_bstatus::HdcpBstatusSpec>;
#[doc = "HDCP BSTATUS\\[15:0\\]. If Attr has not been granted (see register a_ksvmemctrl), the value read will be 8'hff."]
pub mod hdcp_bstatus;
#[doc = "HDCP_M0 (rw) register accessor: HDCP M0\\[32:0\\]. If Attr has not been granted (see register a_ksvmemctrl) , the value read will be 8'hff. These values are only available on a configuration that has the SHA1 calculation by software.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hdcp_m0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hdcp_m0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcp_m0`]
module"]
#[doc(alias = "HDCP_M0")]
pub type HdcpM0 = crate::Reg<hdcp_m0::HdcpM0Spec>;
#[doc = "HDCP M0\\[32:0\\]. If Attr has not been granted (see register a_ksvmemctrl) , the value read will be 8'hff. These values are only available on a configuration that has the SHA1 calculation by software."]
pub mod hdcp_m0;
#[doc = "HDCP_KSV (rw) register accessor: Sink KSV FIFO byte, ordered in little endian (byte at address 0x502a belongs to byte 0 of KSV0). If Attr has not been granted (see register a_ksvmemctrl), the value read is 8'hff. In this address space, 635 KSV FIFO bytes are mapped, which allow for 127 KSV values, each with 5 bytes (40 bits).\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hdcp_ksv::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hdcp_ksv::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcp_ksv`]
module"]
#[doc(alias = "HDCP_KSV")]
pub type HdcpKsv = crate::Reg<hdcp_ksv::HdcpKsvSpec>;
#[doc = "Sink KSV FIFO byte, ordered in little endian (byte at address 0x502a belongs to byte 0 of KSV0). If Attr has not been granted (see register a_ksvmemctrl), the value read is 8'hff. In this address space, 635 KSV FIFO bytes are mapped, which allow for 127 KSV values, each with 5 bytes (40 bits)."]
pub mod hdcp_ksv;
#[doc = "HDCP_VH (rw) register accessor: Sink VH' byte, ordered in little endian (byte at address 0x525a belongs to byte 0 of VH0). If Attr has not been granted (see register a_ksvmemctrl), the value read is 8'hff. In this address space 20 VH bytes are mapped, which allow for 5 VH values, each with 4 bytes (32bits).\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hdcp_vh::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hdcp_vh::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcp_vh`]
module"]
#[doc(alias = "HDCP_VH")]
pub type HdcpVh = crate::Reg<hdcp_vh::HdcpVhSpec>;
#[doc = "Sink VH' byte, ordered in little endian (byte at address 0x525a belongs to byte 0 of VH0). If Attr has not been granted (see register a_ksvmemctrl), the value read is 8'hff. In this address space 20 VH bytes are mapped, which allow for 5 VH values, each with 4 bytes (32bits)."]
pub mod hdcp_vh;
#[doc = "HDCP_REVOC_SIZE_0 (rw) register accessor: Register containing the LSB of KSV list size (ksv_list_size\\[7:0\\]). If Attr has not been granted (see register a_ksvmemctrl), the value read is 8'hff.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hdcp_revoc_size_0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hdcp_revoc_size_0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcp_revoc_size_0`]
module"]
#[doc(alias = "HDCP_REVOC_SIZE_0")]
pub type HdcpRevocSize0 = crate::Reg<hdcp_revoc_size_0::HdcpRevocSize0Spec>;
#[doc = "Register containing the LSB of KSV list size (ksv_list_size\\[7:0\\]). If Attr has not been granted (see register a_ksvmemctrl), the value read is 8'hff."]
pub mod hdcp_revoc_size_0;
#[doc = "HDCP_REVOC_SIZE_1 (rw) register accessor: Register containing the MSB of KSV list size (ksv_list_size\\[15:8\\]). If Attr has not been granted (see register a_ksvmemctrl), the value read is 8'hff.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hdcp_revoc_size_1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hdcp_revoc_size_1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcp_revoc_size_1`]
module"]
#[doc(alias = "HDCP_REVOC_SIZE_1")]
pub type HdcpRevocSize1 = crate::Reg<hdcp_revoc_size_1::HdcpRevocSize1Spec>;
#[doc = "Register containing the MSB of KSV list size (ksv_list_size\\[15:8\\]). If Attr has not been granted (see register a_ksvmemctrl), the value read is 8'hff."]
pub mod hdcp_revoc_size_1;
#[doc = "HDCP_REVOC_LIST (rw) register accessor: Revocation KSV byte, ordered in little endian (byte at address 0x52bb belongs to byte 0 of the first revoked KSV). If Attr has not been granted (see register a_ksvmemctrl), the value read is 8'hff. In this address space 5060 revoked KSV bytes are mapped, which allow for 1012 KSV values, each with 5 bytes (40 bits).\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hdcp_revoc_list::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hdcp_revoc_list::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcp_revoc_list`]
module"]
#[doc(alias = "HDCP_REVOC_LIST")]
pub type HdcpRevocList = crate::Reg<hdcp_revoc_list::HdcpRevocListSpec>;
#[doc = "Revocation KSV byte, ordered in little endian (byte at address 0x52bb belongs to byte 0 of the first revoked KSV). If Attr has not been granted (see register a_ksvmemctrl), the value read is 8'hff. In this address space 5060 revoked KSV bytes are mapped, which allow for 1012 KSV values, each with 5 bytes (40 bits)."]
pub mod hdcp_revoc_list;
#[doc = "HDCPREG_BKSV0 (r) register accessor: Contains the value of BKSV\\[7:0\\].\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hdcpreg_bksv0::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcpreg_bksv0`]
module"]
#[doc(alias = "HDCPREG_BKSV0")]
pub type HdcpregBksv0 = crate::Reg<hdcpreg_bksv0::HdcpregBksv0Spec>;
#[doc = "Contains the value of BKSV\\[7:0\\]."]
pub mod hdcpreg_bksv0;
#[doc = "HDCPREG_BKSV1 (r) register accessor: Description: Contains the value of BKSV\\[15:8\\].\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hdcpreg_bksv1::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcpreg_bksv1`]
module"]
#[doc(alias = "HDCPREG_BKSV1")]
pub type HdcpregBksv1 = crate::Reg<hdcpreg_bksv1::HdcpregBksv1Spec>;
#[doc = "Description: Contains the value of BKSV\\[15:8\\]."]
pub mod hdcpreg_bksv1;
#[doc = "HDCPREG_BKSV2 (r) register accessor: Contains the value of BKSV\\[23:16\\].\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hdcpreg_bksv2::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcpreg_bksv2`]
module"]
#[doc(alias = "HDCPREG_BKSV2")]
pub type HdcpregBksv2 = crate::Reg<hdcpreg_bksv2::HdcpregBksv2Spec>;
#[doc = "Contains the value of BKSV\\[23:16\\]."]
pub mod hdcpreg_bksv2;
#[doc = "HDCPREG_BKSV3 (r) register accessor: Contains the value of BKSV\\[31:24\\].\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hdcpreg_bksv3::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcpreg_bksv3`]
module"]
#[doc(alias = "HDCPREG_BKSV3")]
pub type HdcpregBksv3 = crate::Reg<hdcpreg_bksv3::HdcpregBksv3Spec>;
#[doc = "Contains the value of BKSV\\[31:24\\]."]
pub mod hdcpreg_bksv3;
#[doc = "HDCPREG_BKSV4 (r) register accessor: Contains the value of BKSV\\[39:32\\].\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hdcpreg_bksv4::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcpreg_bksv4`]
module"]
#[doc(alias = "HDCPREG_BKSV4")]
pub type HdcpregBksv4 = crate::Reg<hdcpreg_bksv4::HdcpregBksv4Spec>;
#[doc = "Contains the value of BKSV\\[39:32\\]."]
pub mod hdcpreg_bksv4;
#[doc = "HDCPREG_ANCONF (rw) register accessor: When oanbypass=1, the value of AN used in the HDCP engine comes from the hdcpreg_an0 to hdcpreg_an7 registers. When oanbypass=0, the value of AN used in the HDCP engine comes from the random number input.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hdcpreg_anconf::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hdcpreg_anconf::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcpreg_anconf`]
module"]
#[doc(alias = "HDCPREG_ANCONF")]
pub type HdcpregAnconf = crate::Reg<hdcpreg_anconf::HdcpregAnconfSpec>;
#[doc = "When oanbypass=1, the value of AN used in the HDCP engine comes from the hdcpreg_an0 to hdcpreg_an7 registers. When oanbypass=0, the value of AN used in the HDCP engine comes from the random number input."]
pub mod hdcpreg_anconf;
#[doc = "HDCPREG_AN0 (rw) register accessor: Contains the value of AN\\[7:0\\]\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hdcpreg_an0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hdcpreg_an0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcpreg_an0`]
module"]
#[doc(alias = "HDCPREG_AN0")]
pub type HdcpregAn0 = crate::Reg<hdcpreg_an0::HdcpregAn0Spec>;
#[doc = "Contains the value of AN\\[7:0\\]"]
pub mod hdcpreg_an0;
#[doc = "HDCPREG_AN1 (rw) register accessor: Contains the value of AN\\[15:8\\]\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hdcpreg_an1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hdcpreg_an1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcpreg_an1`]
module"]
#[doc(alias = "HDCPREG_AN1")]
pub type HdcpregAn1 = crate::Reg<hdcpreg_an1::HdcpregAn1Spec>;
#[doc = "Contains the value of AN\\[15:8\\]"]
pub mod hdcpreg_an1;
#[doc = "HDCPREG_AN2 (rw) register accessor: Contains the value of AN\\[23:16\\]\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hdcpreg_an2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hdcpreg_an2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcpreg_an2`]
module"]
#[doc(alias = "HDCPREG_AN2")]
pub type HdcpregAn2 = crate::Reg<hdcpreg_an2::HdcpregAn2Spec>;
#[doc = "Contains the value of AN\\[23:16\\]"]
pub mod hdcpreg_an2;
#[doc = "HDCPREG_AN3 (rw) register accessor: Contains the value of AN\\[31:24\\]\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hdcpreg_an3::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hdcpreg_an3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcpreg_an3`]
module"]
#[doc(alias = "HDCPREG_AN3")]
pub type HdcpregAn3 = crate::Reg<hdcpreg_an3::HdcpregAn3Spec>;
#[doc = "Contains the value of AN\\[31:24\\]"]
pub mod hdcpreg_an3;
#[doc = "HDCPREG_AN4 (rw) register accessor: Contains the value of AN\\[39:32\\]\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hdcpreg_an4::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hdcpreg_an4::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcpreg_an4`]
module"]
#[doc(alias = "HDCPREG_AN4")]
pub type HdcpregAn4 = crate::Reg<hdcpreg_an4::HdcpregAn4Spec>;
#[doc = "Contains the value of AN\\[39:32\\]"]
pub mod hdcpreg_an4;
#[doc = "HDCPREG_AN5 (rw) register accessor: Contains the value of AN\\[47:40\\]\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hdcpreg_an5::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hdcpreg_an5::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcpreg_an5`]
module"]
#[doc(alias = "HDCPREG_AN5")]
pub type HdcpregAn5 = crate::Reg<hdcpreg_an5::HdcpregAn5Spec>;
#[doc = "Contains the value of AN\\[47:40\\]"]
pub mod hdcpreg_an5;
#[doc = "HDCPREG_AN6 (rw) register accessor: Contains the value of AN\\[55:48\\]\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hdcpreg_an6::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hdcpreg_an6::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcpreg_an6`]
module"]
#[doc(alias = "HDCPREG_AN6")]
pub type HdcpregAn6 = crate::Reg<hdcpreg_an6::HdcpregAn6Spec>;
#[doc = "Contains the value of AN\\[55:48\\]"]
pub mod hdcpreg_an6;
#[doc = "HDCPREG_AN7 (rw) register accessor: Contains the value of BKSV\\[63:56\\]\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hdcpreg_an7::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hdcpreg_an7::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcpreg_an7`]
module"]
#[doc(alias = "HDCPREG_AN7")]
pub type HdcpregAn7 = crate::Reg<hdcpreg_an7::HdcpregAn7Spec>;
#[doc = "Contains the value of BKSV\\[63:56\\]"]
pub mod hdcpreg_an7;
#[doc = "HDCPREG_RMLCTL (rw) register accessor: When set (1'b1), this bit activates the decryption of the Device Private keys.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hdcpreg_rmlctl::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hdcpreg_rmlctl::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcpreg_rmlctl`]
module"]
#[doc(alias = "HDCPREG_RMLCTL")]
pub type HdcpregRmlctl = crate::Reg<hdcpreg_rmlctl::HdcpregRmlctlSpec>;
#[doc = "When set (1'b1), this bit activates the decryption of the Device Private keys."]
pub mod hdcpreg_rmlctl;
#[doc = "HDCPREG_RMLSTS (r) register accessor: Current Device Private Key being written plus one. Position 0 is occupied by the AKSV.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hdcpreg_rmlsts::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcpreg_rmlsts`]
module"]
#[doc(alias = "HDCPREG_RMLSTS")]
pub type HdcpregRmlsts = crate::Reg<hdcpreg_rmlsts::HdcpregRmlstsSpec>;
#[doc = "Current Device Private Key being written plus one. Position 0 is occupied by the AKSV."]
pub mod hdcpreg_rmlsts;
#[doc = "HDCPREG_SEED0 (w) register accessor: Least significant byte of the decryption seed value (dpk_decrypt_seed\\[7:0\\]).\n\nYou can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hdcpreg_seed0::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcpreg_seed0`]
module"]
#[doc(alias = "HDCPREG_SEED0")]
pub type HdcpregSeed0 = crate::Reg<hdcpreg_seed0::HdcpregSeed0Spec>;
#[doc = "Least significant byte of the decryption seed value (dpk_decrypt_seed\\[7:0\\])."]
pub mod hdcpreg_seed0;
#[doc = "HDCPREG_SEED1 (w) register accessor: Most significant byte of the decryption seed value (dpk_decrypt_seed\\[15:8\\]).\n\nYou can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hdcpreg_seed1::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcpreg_seed1`]
module"]
#[doc(alias = "HDCPREG_SEED1")]
pub type HdcpregSeed1 = crate::Reg<hdcpreg_seed1::HdcpregSeed1Spec>;
#[doc = "Most significant byte of the decryption seed value (dpk_decrypt_seed\\[15:8\\])."]
pub mod hdcpreg_seed1;
#[doc = "HDCPREG_DPK0 (w) register accessor: Byte of the encrypted DPK value. dpk\\[7:0\\]
When this byte is written, a strobe signal is generated that triggers the decryption and/or storage of the DPK word on the DPK internal RAM memory.\n\nYou can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hdcpreg_dpk0::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcpreg_dpk0`]
module"]
#[doc(alias = "HDCPREG_DPK0")]
pub type HdcpregDpk0 = crate::Reg<hdcpreg_dpk0::HdcpregDpk0Spec>;
#[doc = "Byte of the encrypted DPK value. dpk\\[7:0\\]
When this byte is written, a strobe signal is generated that triggers the decryption and/or storage of the DPK word on the DPK internal RAM memory."]
pub mod hdcpreg_dpk0;
#[doc = "HDCPREG_DPK1 (w) register accessor: Byte of the encrypted DPK value. dpk\\[15:8\\]\n\nYou can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hdcpreg_dpk1::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcpreg_dpk1`]
module"]
#[doc(alias = "HDCPREG_DPK1")]
pub type HdcpregDpk1 = crate::Reg<hdcpreg_dpk1::HdcpregDpk1Spec>;
#[doc = "Byte of the encrypted DPK value. dpk\\[15:8\\]"]
pub mod hdcpreg_dpk1;
#[doc = "HDCPREG_DPK2 (w) register accessor: Byte of the encrypted DPK value. dpk\\[23:16\\]\n\nYou can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hdcpreg_dpk2::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcpreg_dpk2`]
module"]
#[doc(alias = "HDCPREG_DPK2")]
pub type HdcpregDpk2 = crate::Reg<hdcpreg_dpk2::HdcpregDpk2Spec>;
#[doc = "Byte of the encrypted DPK value. dpk\\[23:16\\]"]
pub mod hdcpreg_dpk2;
#[doc = "HDCPREG_DPK3 (w) register accessor: Byte of the encrypted DPK value. dpk\\[31:24\\]\n\nYou can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hdcpreg_dpk3::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcpreg_dpk3`]
module"]
#[doc(alias = "HDCPREG_DPK3")]
pub type HdcpregDpk3 = crate::Reg<hdcpreg_dpk3::HdcpregDpk3Spec>;
#[doc = "Byte of the encrypted DPK value. dpk\\[31:24\\]"]
pub mod hdcpreg_dpk3;
#[doc = "HDCPREG_DPK4 (w) register accessor: Byte of the encrypted DPK value. dpk\\[39:32\\]\n\nYou can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hdcpreg_dpk4::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcpreg_dpk4`]
module"]
#[doc(alias = "HDCPREG_DPK4")]
pub type HdcpregDpk4 = crate::Reg<hdcpreg_dpk4::HdcpregDpk4Spec>;
#[doc = "Byte of the encrypted DPK value. dpk\\[39:32\\]"]
pub mod hdcpreg_dpk4;
#[doc = "HDCPREG_DPK5 (w) register accessor: Contains the value of DPK\\[x\\]\\[47:40\\]\n\nYou can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hdcpreg_dpk5::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcpreg_dpk5`]
module"]
#[doc(alias = "HDCPREG_DPK5")]
pub type HdcpregDpk5 = crate::Reg<hdcpreg_dpk5::HdcpregDpk5Spec>;
#[doc = "Contains the value of DPK\\[x\\]\\[47:40\\]"]
pub mod hdcpreg_dpk5;
#[doc = "HDCPREG_DPK6 (w) register accessor: Contains the value of DPK\\[x\\]\\[55:48\\]\n\nYou can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hdcpreg_dpk6::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcpreg_dpk6`]
module"]
#[doc(alias = "HDCPREG_DPK6")]
pub type HdcpregDpk6 = crate::Reg<hdcpreg_dpk6::HdcpregDpk6Spec>;
#[doc = "Contains the value of DPK\\[x\\]\\[55:48\\]"]
pub mod hdcpreg_dpk6;
#[doc = "HDCP22REG_ID (r) register accessor: Reserved for future use.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hdcp22reg_id::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcp22reg_id`]
module"]
#[doc(alias = "HDCP22REG_ID")]
pub type Hdcp22regId = crate::Reg<hdcp22reg_id::Hdcp22regIdSpec>;
#[doc = "Reserved for future use."]
pub mod hdcp22reg_id;
#[doc = "HDCP22REG_CTRL (rw) register accessor: HDCP 2.2 switch lock 1'b0: Enables you to change the direction of the HDCP 2.2 versus 1.4 switch by using the hdcp22_ovr_en and hdcp22_ovr_val. 1'b1: You can still write to hdcp22_ovr_en and hdcp22_ovr_val but has no effect over the HDCP 2.2 versus 1.4 switch, that keeps as it was configured by hdcp22_ovr_en and hdcp22_ovr_val at the time the 1'b1 was written to this bit field. Once you set the value to 1'b1, you can change the value back to 1'b0 only by issuing a master reset to the Hdmi_tx.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hdcp22reg_ctrl::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hdcp22reg_ctrl::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcp22reg_ctrl`]
module"]
#[doc(alias = "HDCP22REG_CTRL")]
pub type Hdcp22regCtrl = crate::Reg<hdcp22reg_ctrl::Hdcp22regCtrlSpec>;
#[doc = "HDCP 2.2 switch lock 1'b0: Enables you to change the direction of the HDCP 2.2 versus 1.4 switch by using the hdcp22_ovr_en and hdcp22_ovr_val. 1'b1: You can still write to hdcp22_ovr_en and hdcp22_ovr_val but has no effect over the HDCP 2.2 versus 1.4 switch, that keeps as it was configured by hdcp22_ovr_en and hdcp22_ovr_val at the time the 1'b1 was written to this bit field. Once you set the value to 1'b1, you can change the value back to 1'b0 only by issuing a master reset to the Hdmi_tx."]
pub mod hdcp22reg_ctrl;
#[doc = "HDCP22REG_CTRL1 (rw) register accessor: HDCP 2.2 versus 1.4 color depth override enable: 1'b0: The default 1'b0 value indicates that the color depth sent to the external interface is the one configured in the vp_pr_cd.color_depth register field. 1'b1: Although the used color depth for pixel encoding is defined by the field vp_pr_cd.color_depth register, the color depth sent to the external interface is the one defined in register field hdcp22reg_ctrl1.hdcp22_cd_ovr_val.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hdcp22reg_ctrl1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hdcp22reg_ctrl1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcp22reg_ctrl1`]
module"]
#[doc(alias = "HDCP22REG_CTRL1")]
pub type Hdcp22regCtrl1 = crate::Reg<hdcp22reg_ctrl1::Hdcp22regCtrl1Spec>;
#[doc = "HDCP 2.2 versus 1.4 color depth override enable: 1'b0: The default 1'b0 value indicates that the color depth sent to the external interface is the one configured in the vp_pr_cd.color_depth register field. 1'b1: Although the used color depth for pixel encoding is defined by the field vp_pr_cd.color_depth register, the color depth sent to the external interface is the one defined in register field hdcp22reg_ctrl1.hdcp22_cd_ovr_val."]
pub mod hdcp22reg_ctrl1;
#[doc = "HDCP22REG_STS (r) register accessor: HDCP 2.2 HPD external interface status after lock mechanism (hdcp22reg_ctrl.hdcp22_switch_lock, hdcp22reg_ctrl.hdcp22_ovr_en and hdcp22reg_ctrl.hdcp22_ovr_val). 1'b0: Sink not detected (HPD line clear ) 1'b1: Sink detected (HPD line set)\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hdcp22reg_sts::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcp22reg_sts`]
module"]
#[doc(alias = "HDCP22REG_STS")]
pub type Hdcp22regSts = crate::Reg<hdcp22reg_sts::Hdcp22regStsSpec>;
#[doc = "HDCP 2.2 HPD external interface status after lock mechanism (hdcp22reg_ctrl.hdcp22_switch_lock, hdcp22reg_ctrl.hdcp22_ovr_en and hdcp22reg_ctrl.hdcp22_ovr_val). 1'b0: Sink not detected (HPD line clear ) 1'b1: Sink detected (HPD line set)"]
pub mod hdcp22reg_sts;
#[doc = "HDCP22REG_MASK (rw) register accessor: Active high interrupt mask to HDCP 2.2 capable rise interrupt status\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hdcp22reg_mask::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hdcp22reg_mask::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcp22reg_mask`]
module"]
#[doc(alias = "HDCP22REG_MASK")]
pub type Hdcp22regMask = crate::Reg<hdcp22reg_mask::Hdcp22regMaskSpec>;
#[doc = "Active high interrupt mask to HDCP 2.2 capable rise interrupt status"]
pub mod hdcp22reg_mask;
#[doc = "HDCP22REG_STAT (rw) register accessor: HDCP 2.2 capable rise interrupt status sticky bit. Clear by Write 1 to this bit field\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hdcp22reg_stat::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hdcp22reg_stat::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcp22reg_stat`]
module"]
#[doc(alias = "HDCP22REG_STAT")]
pub type Hdcp22regStat = crate::Reg<hdcp22reg_stat::Hdcp22regStatSpec>;
#[doc = "HDCP 2.2 capable rise interrupt status sticky bit. Clear by Write 1 to this bit field"]
pub mod hdcp22reg_stat;
#[doc = "HDCP22REG_MUTE (rw) register accessor: Active high interrupt mute to HDCP 2.2 capable rise interrupt status\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hdcp22reg_mute::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hdcp22reg_mute::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hdcp22reg_mute`]
module"]
#[doc(alias = "HDCP22REG_MUTE")]
pub type Hdcp22regMute = crate::Reg<hdcp22reg_mute::Hdcp22regMuteSpec>;
#[doc = "Active high interrupt mute to HDCP 2.2 capable rise interrupt status"]
pub mod hdcp22reg_mute;
#[doc = "CEC_CTRL (rw) register accessor: 2'b00: Signal Free Time = 3-bit periods. Previous attempt to send frame is unsuccessful. 2'b01: Signal Free Time = 5-bit periods. New initiator wants to send a frame. 2'b10: Signal Free Time = 7-bit periods. Present initiator wants to send another frame immediately after its previous frame. (specification CEC 9.1). 2'b11: Illegal value. If software writes this value, hardware sets the value to the default 2'b01.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`cec_ctrl::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`cec_ctrl::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@cec_ctrl`]
module"]
#[doc(alias = "CEC_CTRL")]
pub type CecCtrl = crate::Reg<cec_ctrl::CecCtrlSpec>;
#[doc = "2'b00: Signal Free Time = 3-bit periods. Previous attempt to send frame is unsuccessful. 2'b01: Signal Free Time = 5-bit periods. New initiator wants to send a frame. 2'b10: Signal Free Time = 7-bit periods. Present initiator wants to send another frame immediately after its previous frame. (specification CEC 9.1). 2'b11: Illegal value. If software writes this value, hardware sets the value to the default 2'b01."]
pub mod cec_ctrl;
#[doc = "CEC_MASK (rw) register accessor: The current transmission is successful (for initiator only)\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`cec_mask::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`cec_mask::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@cec_mask`]
module"]
#[doc(alias = "CEC_MASK")]
pub type CecMask = crate::Reg<cec_mask::CecMaskSpec>;
#[doc = "The current transmission is successful (for initiator only)"]
pub mod cec_mask;
#[doc = "CEC_ADDR_L (rw) register accessor: Logical address 0 - Device TV\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`cec_addr_l::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`cec_addr_l::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@cec_addr_l`]
module"]
#[doc(alias = "CEC_ADDR_L")]
pub type CecAddrL = crate::Reg<cec_addr_l::CecAddrLSpec>;
#[doc = "Logical address 0 - Device TV"]
pub mod cec_addr_l;
#[doc = "CEC_ADDR_H (rw) register accessor: Logical address 8 - Playback Device 2\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`cec_addr_h::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`cec_addr_h::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@cec_addr_h`]
module"]
#[doc(alias = "CEC_ADDR_H")]
pub type CecAddrH = crate::Reg<cec_addr_h::CecAddrHSpec>;
#[doc = "Logical address 8 - Playback Device 2"]
pub mod cec_addr_h;
#[doc = "CEC_TX_CNT (rw) register accessor: CEC Transmitter Counter register 5'd0: No data needs to be transmitted 5'd1: Frame size is 1 byte 5'd16: Frame size is 16 bytes\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`cec_tx_cnt::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`cec_tx_cnt::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@cec_tx_cnt`]
module"]
#[doc(alias = "CEC_TX_CNT")]
pub type CecTxCnt = crate::Reg<cec_tx_cnt::CecTxCntSpec>;
#[doc = "CEC Transmitter Counter register 5'd0: No data needs to be transmitted 5'd1: Frame size is 1 byte 5'd16: Frame size is 16 bytes"]
pub mod cec_tx_cnt;
#[doc = "CEC_RX_CNT (r) register accessor: CEC Receiver Counter register: 5'd0: No data received 5'd1: 1-byte data is received 5'd16: 16-byte data is received\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`cec_rx_cnt::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@cec_rx_cnt`]
module"]
#[doc(alias = "CEC_RX_CNT")]
pub type CecRxCnt = crate::Reg<cec_rx_cnt::CecRxCntSpec>;
#[doc = "CEC Receiver Counter register: 5'd0: No data received 5'd1: 1-byte data is received 5'd16: 16-byte data is received"]
pub mod cec_rx_cnt;
#[doc = "CEC_TX_DATA (rw) register accessor: Data byte\\[x\\], where x is 0 to 15\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`cec_tx_data::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`cec_tx_data::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@cec_tx_data`]
module"]
#[doc(alias = "CEC_TX_DATA")]
pub type CecTxData = crate::Reg<cec_tx_data::CecTxDataSpec>;
#[doc = "Data byte\\[x\\], where x is 0 to 15"]
pub mod cec_tx_data;
#[doc = "CEC_RX_DATA (r) register accessor: Data byte\\[x\\], where x is 0 to 15\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`cec_rx_data::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@cec_rx_data`]
module"]
#[doc(alias = "CEC_RX_DATA")]
pub type CecRxData = crate::Reg<cec_rx_data::CecRxDataSpec>;
#[doc = "Data byte\\[x\\], where x is 0 to 15"]
pub mod cec_rx_data;
#[doc = "CEC_LOCK (rw) register accessor: When a frame is received, this bit would be active. The CEC controller answers to all the messages with NACK until the CPU writes it to '0'.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`cec_lock::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`cec_lock::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@cec_lock`]
module"]
#[doc(alias = "CEC_LOCK")]
pub type CecLock = crate::Reg<cec_lock::CecLockSpec>;
#[doc = "When a frame is received, this bit would be active. The CEC controller answers to all the messages with NACK until the CPU writes it to '0'."]
pub mod cec_lock;
#[doc = "CEC_WAKEUPCTRL (rw) register accessor: OPCODE 0x04 wake up enable\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`cec_wakeupctrl::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`cec_wakeupctrl::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@cec_wakeupctrl`]
module"]
#[doc(alias = "CEC_WAKEUPCTRL")]
pub type CecWakeupctrl = crate::Reg<cec_wakeupctrl::CecWakeupctrlSpec>;
#[doc = "OPCODE 0x04 wake up enable"]
pub mod cec_wakeupctrl;
#[doc = "I2CM_SLAVE (rw) register accessor: Slave address to be sent during read and write normal operations.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`i2cm_slave::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`i2cm_slave::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@i2cm_slave`]
module"]
#[doc(alias = "I2CM_SLAVE")]
pub type I2cmSlave = crate::Reg<i2cm_slave::I2cmSlaveSpec>;
#[doc = "Slave address to be sent during read and write normal operations."]
pub mod i2cm_slave;
#[doc = "I2CM_ADDRESS (rw) register accessor: Register address for read and write operations\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`i2cm_address::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`i2cm_address::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@i2cm_address`]
module"]
#[doc(alias = "I2CM_ADDRESS")]
pub type I2cmAddress = crate::Reg<i2cm_address::I2cmAddressSpec>;
#[doc = "Register address for read and write operations"]
pub mod i2cm_address;
#[doc = "I2CM_DATAO (rw) register accessor: Data to be written on register pointed by address\\[7:0\\].\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`i2cm_datao::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`i2cm_datao::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@i2cm_datao`]
module"]
#[doc(alias = "I2CM_DATAO")]
pub type I2cmDatao = crate::Reg<i2cm_datao::I2cmDataoSpec>;
#[doc = "Data to be written on register pointed by address\\[7:0\\]."]
pub mod i2cm_datao;
#[doc = "I2CM_DATAI (r) register accessor: Data read from register pointed by address\\[7:0\\].\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`i2cm_datai::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@i2cm_datai`]
module"]
#[doc(alias = "I2CM_DATAI")]
pub type I2cmDatai = crate::Reg<i2cm_datai::I2cmDataiSpec>;
#[doc = "Data read from register pointed by address\\[7:0\\]."]
pub mod i2cm_datai;
#[doc = "I2CM_OPERATION (w) register accessor: Single byte read operation request\n\nYou can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`i2cm_operation::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@i2cm_operation`]
module"]
#[doc(alias = "I2CM_OPERATION")]
pub type I2cmOperation = crate::Reg<i2cm_operation::I2cmOperationSpec>;
#[doc = "Single byte read operation request"]
pub mod i2cm_operation;
#[doc = "I2CM_INT (rw) register accessor: Reserved for future use.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`i2cm_int::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`i2cm_int::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@i2cm_int`]
module"]
#[doc(alias = "I2CM_INT")]
pub type I2cmInt = crate::Reg<i2cm_int::I2cmIntSpec>;
#[doc = "Reserved for future use."]
pub mod i2cm_int;
#[doc = "I2CM_CTLINT (rw) register accessor: Arbitration error interrupt mask signal.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`i2cm_ctlint::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`i2cm_ctlint::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@i2cm_ctlint`]
module"]
#[doc(alias = "I2CM_CTLINT")]
pub type I2cmCtlint = crate::Reg<i2cm_ctlint::I2cmCtlintSpec>;
#[doc = "Arbitration error interrupt mask signal."]
pub mod i2cm_ctlint;
#[doc = "I2CM_DIV (rw) register accessor: Reserved as \"spare\" bit with no associated functionality.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`i2cm_div::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`i2cm_div::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@i2cm_div`]
module"]
#[doc(alias = "I2CM_DIV")]
pub type I2cmDiv = crate::Reg<i2cm_div::I2cmDivSpec>;
#[doc = "Reserved as \"spare\" bit with no associated functionality."]
pub mod i2cm_div;
#[doc = "I2CM_SEGADDR (rw) register accessor: I2C DDC Segment Address Configuration Register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`i2cm_segaddr::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`i2cm_segaddr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@i2cm_segaddr`]
module"]
#[doc(alias = "I2CM_SEGADDR")]
pub type I2cmSegaddr = crate::Reg<i2cm_segaddr::I2cmSegaddrSpec>;
#[doc = "I2C DDC Segment Address Configuration Register"]
pub mod i2cm_segaddr;
#[doc = "I2CM_SOFTRSTZ (rw) register accessor: I2C Master Software Reset. Active by writing a zero and auto cleared to one in the following cycle.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`i2cm_softrstz::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`i2cm_softrstz::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@i2cm_softrstz`]
module"]
#[doc(alias = "I2CM_SOFTRSTZ")]
pub type I2cmSoftrstz = crate::Reg<i2cm_softrstz::I2cmSoftrstzSpec>;
#[doc = "I2C Master Software Reset. Active by writing a zero and auto cleared to one in the following cycle."]
pub mod i2cm_softrstz;
#[doc = "I2CM_SEGPTR (rw) register accessor: I2C DDC Segment Pointer Register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`i2cm_segptr::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`i2cm_segptr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@i2cm_segptr`]
module"]
#[doc(alias = "I2CM_SEGPTR")]
pub type I2cmSegptr = crate::Reg<i2cm_segptr::I2cmSegptrSpec>;
#[doc = "I2C DDC Segment Pointer Register"]
pub mod i2cm_segptr;
#[doc = "I2CM_SS_SCL_HCNT_1_ADDR (rw) register accessor: I2C DDC Slow Speed SCL High Level Control Register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`i2cm_ss_scl_hcnt_1_addr::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`i2cm_ss_scl_hcnt_1_addr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@i2cm_ss_scl_hcnt_1_addr`]
module"]
#[doc(alias = "I2CM_SS_SCL_HCNT_1_ADDR")]
pub type I2cmSsSclHcnt1Addr = crate::Reg<i2cm_ss_scl_hcnt_1_addr::I2cmSsSclHcnt1AddrSpec>;
#[doc = "I2C DDC Slow Speed SCL High Level Control Register 1"]
pub mod i2cm_ss_scl_hcnt_1_addr;
#[doc = "I2CM_SS_SCL_HCNT_0_ADDR (rw) register accessor: I2C DDC Slow Speed SCL High Level Control Register 0\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`i2cm_ss_scl_hcnt_0_addr::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`i2cm_ss_scl_hcnt_0_addr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@i2cm_ss_scl_hcnt_0_addr`]
module"]
#[doc(alias = "I2CM_SS_SCL_HCNT_0_ADDR")]
pub type I2cmSsSclHcnt0Addr = crate::Reg<i2cm_ss_scl_hcnt_0_addr::I2cmSsSclHcnt0AddrSpec>;
#[doc = "I2C DDC Slow Speed SCL High Level Control Register 0"]
pub mod i2cm_ss_scl_hcnt_0_addr;
#[doc = "I2CM_SS_SCL_LCNT_1_ADDR (rw) register accessor: I2C DDC Slow Speed SCL Low Level Control Register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`i2cm_ss_scl_lcnt_1_addr::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`i2cm_ss_scl_lcnt_1_addr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@i2cm_ss_scl_lcnt_1_addr`]
module"]
#[doc(alias = "I2CM_SS_SCL_LCNT_1_ADDR")]
pub type I2cmSsSclLcnt1Addr = crate::Reg<i2cm_ss_scl_lcnt_1_addr::I2cmSsSclLcnt1AddrSpec>;
#[doc = "I2C DDC Slow Speed SCL Low Level Control Register 1"]
pub mod i2cm_ss_scl_lcnt_1_addr;
#[doc = "I2CM_SS_SCL_LCNT_0_ADDR (rw) register accessor: I2C DDC Slow Speed SCL Low Level Control Register 0\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`i2cm_ss_scl_lcnt_0_addr::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`i2cm_ss_scl_lcnt_0_addr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@i2cm_ss_scl_lcnt_0_addr`]
module"]
#[doc(alias = "I2CM_SS_SCL_LCNT_0_ADDR")]
pub type I2cmSsSclLcnt0Addr = crate::Reg<i2cm_ss_scl_lcnt_0_addr::I2cmSsSclLcnt0AddrSpec>;
#[doc = "I2C DDC Slow Speed SCL Low Level Control Register 0"]
pub mod i2cm_ss_scl_lcnt_0_addr;
#[doc = "I2CM_FS_SCL_HCNT_1_ADDR (rw) register accessor: I2C DDC Fast Speed SCL High Level Control Register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`i2cm_fs_scl_hcnt_1_addr::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`i2cm_fs_scl_hcnt_1_addr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@i2cm_fs_scl_hcnt_1_addr`]
module"]
#[doc(alias = "I2CM_FS_SCL_HCNT_1_ADDR")]
pub type I2cmFsSclHcnt1Addr = crate::Reg<i2cm_fs_scl_hcnt_1_addr::I2cmFsSclHcnt1AddrSpec>;
#[doc = "I2C DDC Fast Speed SCL High Level Control Register 1"]
pub mod i2cm_fs_scl_hcnt_1_addr;
#[doc = "I2CM_FS_SCL_HCNT_0_ADDR (rw) register accessor: I2C DDC Fast Speed SCL High Level Control Register 0\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`i2cm_fs_scl_hcnt_0_addr::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`i2cm_fs_scl_hcnt_0_addr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@i2cm_fs_scl_hcnt_0_addr`]
module"]
#[doc(alias = "I2CM_FS_SCL_HCNT_0_ADDR")]
pub type I2cmFsSclHcnt0Addr = crate::Reg<i2cm_fs_scl_hcnt_0_addr::I2cmFsSclHcnt0AddrSpec>;
#[doc = "I2C DDC Fast Speed SCL High Level Control Register 0"]
pub mod i2cm_fs_scl_hcnt_0_addr;
#[doc = "I2CM_FS_SCL_LCNT_1_ADDR (rw) register accessor: I2C DDC Fast Speed SCL Low Level Control Register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`i2cm_fs_scl_lcnt_1_addr::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`i2cm_fs_scl_lcnt_1_addr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@i2cm_fs_scl_lcnt_1_addr`]
module"]
#[doc(alias = "I2CM_FS_SCL_LCNT_1_ADDR")]
pub type I2cmFsSclLcnt1Addr = crate::Reg<i2cm_fs_scl_lcnt_1_addr::I2cmFsSclLcnt1AddrSpec>;
#[doc = "I2C DDC Fast Speed SCL Low Level Control Register 1"]
pub mod i2cm_fs_scl_lcnt_1_addr;
#[doc = "I2CM_FS_SCL_LCNT_0_ADDR (rw) register accessor: I2C DDC Fast Speed SCL Low Level Control Register 0\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`i2cm_fs_scl_lcnt_0_addr::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`i2cm_fs_scl_lcnt_0_addr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@i2cm_fs_scl_lcnt_0_addr`]
module"]
#[doc(alias = "I2CM_FS_SCL_LCNT_0_ADDR")]
pub type I2cmFsSclLcnt0Addr = crate::Reg<i2cm_fs_scl_lcnt_0_addr::I2cmFsSclLcnt0AddrSpec>;
#[doc = "I2C DDC Fast Speed SCL Low Level Control Register 0"]
pub mod i2cm_fs_scl_lcnt_0_addr;
#[doc = "I2CM_SDA_HOLD (rw) register accessor: Defines the number of SFR clock cycles to meet tHD;DAT (300 ns) osda_hold = round_to_high_integer (300 ns / (1 / isfrclk_frequency))\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`i2cm_sda_hold::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`i2cm_sda_hold::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@i2cm_sda_hold`]
module"]
#[doc(alias = "I2CM_SDA_HOLD")]
pub type I2cmSdaHold = crate::Reg<i2cm_sda_hold::I2cmSdaHoldSpec>;
#[doc = "Defines the number of SFR clock cycles to meet tHD;DAT (300 ns) osda_hold = round_to_high_integer (300 ns / (1 / isfrclk_frequency))"]
pub mod i2cm_sda_hold;
#[doc = "I2CM_SCDC_READ_UPDATE (rw) register accessor: When set to 1'b1, a SCDC Update Read is performed and the read data loaded into registers i2cm_scdc_update0 and i2cm_scdc_update1.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`i2cm_scdc_read_update::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`i2cm_scdc_read_update::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@i2cm_scdc_read_update`]
module"]
#[doc(alias = "I2CM_SCDC_READ_UPDATE")]
pub type I2cmScdcReadUpdate = crate::Reg<i2cm_scdc_read_update::I2cmScdcReadUpdateSpec>;
#[doc = "When set to 1'b1, a SCDC Update Read is performed and the read data loaded into registers i2cm_scdc_update0 and i2cm_scdc_update1."]
pub mod i2cm_scdc_read_update;
#[doc = "I2CM_READ_BUFF0 (r) register accessor: Byte 0 of a I2C read buffer sequential read (from address i2cm_address)\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`i2cm_read_buff0::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@i2cm_read_buff0`]
module"]
#[doc(alias = "I2CM_READ_BUFF0")]
pub type I2cmReadBuff0 = crate::Reg<i2cm_read_buff0::I2cmReadBuff0Spec>;
#[doc = "Byte 0 of a I2C read buffer sequential read (from address i2cm_address)"]
pub mod i2cm_read_buff0;
#[doc = "I2CM_READ_BUFF1 (r) register accessor: Byte 1 of a I2C read buffer sequential read (from address i2cm_address+1)\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`i2cm_read_buff1::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@i2cm_read_buff1`]
module"]
#[doc(alias = "I2CM_READ_BUFF1")]
pub type I2cmReadBuff1 = crate::Reg<i2cm_read_buff1::I2cmReadBuff1Spec>;
#[doc = "Byte 1 of a I2C read buffer sequential read (from address i2cm_address+1)"]
pub mod i2cm_read_buff1;
#[doc = "I2CM_READ_BUFF2 (r) register accessor: Byte 2 of a I2C read buffer sequential read (from address i2cm_address+2)\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`i2cm_read_buff2::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@i2cm_read_buff2`]
module"]
#[doc(alias = "I2CM_READ_BUFF2")]
pub type I2cmReadBuff2 = crate::Reg<i2cm_read_buff2::I2cmReadBuff2Spec>;
#[doc = "Byte 2 of a I2C read buffer sequential read (from address i2cm_address+2)"]
pub mod i2cm_read_buff2;
#[doc = "I2CM_READ_BUFF3 (r) register accessor: Byte 3 of a I2C read buffer sequential read (from address i2cm_address+3)\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`i2cm_read_buff3::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@i2cm_read_buff3`]
module"]
#[doc(alias = "I2CM_READ_BUFF3")]
pub type I2cmReadBuff3 = crate::Reg<i2cm_read_buff3::I2cmReadBuff3Spec>;
#[doc = "Byte 3 of a I2C read buffer sequential read (from address i2cm_address+3)"]
pub mod i2cm_read_buff3;
#[doc = "I2CM_READ_BUFF4 (r) register accessor: Byte 4 of a I2C read buffer sequential read (from address i2cm_address+4)\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`i2cm_read_buff4::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@i2cm_read_buff4`]
module"]
#[doc(alias = "I2CM_READ_BUFF4")]
pub type I2cmReadBuff4 = crate::Reg<i2cm_read_buff4::I2cmReadBuff4Spec>;
#[doc = "Byte 4 of a I2C read buffer sequential read (from address i2cm_address+4)"]
pub mod i2cm_read_buff4;
#[doc = "I2CM_READ_BUFF5 (r) register accessor: Byte 5 of a I2C read buffer sequential read (from address i2cm_address+5)\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`i2cm_read_buff5::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@i2cm_read_buff5`]
module"]
#[doc(alias = "I2CM_READ_BUFF5")]
pub type I2cmReadBuff5 = crate::Reg<i2cm_read_buff5::I2cmReadBuff5Spec>;
#[doc = "Byte 5 of a I2C read buffer sequential read (from address i2cm_address+5)"]
pub mod i2cm_read_buff5;
#[doc = "I2CM_READ_BUFF6 (r) register accessor: Byte 6 of a I2C read buffer sequential read (from address i2cm_address+6)\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`i2cm_read_buff6::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@i2cm_read_buff6`]
module"]
#[doc(alias = "I2CM_READ_BUFF6")]
pub type I2cmReadBuff6 = crate::Reg<i2cm_read_buff6::I2cmReadBuff6Spec>;
#[doc = "Byte 6 of a I2C read buffer sequential read (from address i2cm_address+6)"]
pub mod i2cm_read_buff6;
#[doc = "I2CM_READ_BUFF7 (r) register accessor: Byte 7 of a I2C read buffer sequential read (from address i2cm_address+7)\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`i2cm_read_buff7::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@i2cm_read_buff7`]
module"]
#[doc(alias = "I2CM_READ_BUFF7")]
pub type I2cmReadBuff7 = crate::Reg<i2cm_read_buff7::I2cmReadBuff7Spec>;
#[doc = "Byte 7 of a I2C read buffer sequential read (from address i2cm_address+7)"]
pub mod i2cm_read_buff7;
#[doc = "I2CM_SCDC_UPDATE0 (r) register accessor: Byte 0 of a SCDC I2C update sequential read\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`i2cm_scdc_update0::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@i2cm_scdc_update0`]
module"]
#[doc(alias = "I2CM_SCDC_UPDATE0")]
pub type I2cmScdcUpdate0 = crate::Reg<i2cm_scdc_update0::I2cmScdcUpdate0Spec>;
#[doc = "Byte 0 of a SCDC I2C update sequential read"]
pub mod i2cm_scdc_update0;
#[doc = "I2CM_SCDC_UPDATE1 (r) register accessor: Byte 1 of a SCDC I2C update sequential read Bits Name Attr Description\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`i2cm_scdc_update1::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@i2cm_scdc_update1`]
module"]
#[doc(alias = "I2CM_SCDC_UPDATE1")]
pub type I2cmScdcUpdate1 = crate::Reg<i2cm_scdc_update1::I2cmScdcUpdate1Spec>;
#[doc = "Byte 1 of a SCDC I2C update sequential read Bits Name Attr Description"]
pub mod i2cm_scdc_update1;