aboutsummaryrefslogtreecommitdiffstats
path: root/lib/pico-sdk/rp2350/hardware/regs/sio.h
blob: c4cb29042c23c860e92491b5082328f15ac32c47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
// THIS HEADER FILE IS AUTOMATICALLY GENERATED -- DO NOT EDIT

/**
 * Copyright (c) 2024 Raspberry Pi Ltd.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */
// =============================================================================
// Register block : SIO
// Version        : 1
// Bus type       : apb
// Description    : Single-cycle IO block
//                  Provides core-local and inter-core hardware for the two
//                  processors, with single-cycle access.
// =============================================================================
#ifndef _HARDWARE_REGS_SIO_H
#define _HARDWARE_REGS_SIO_H
// =============================================================================
// Register    : SIO_CPUID
// Description : Processor core identifier
//               Value is 0 when read from processor core 0, and 1 when read
//               from processor core 1.
#define SIO_CPUID_OFFSET _u(0x00000000)
#define SIO_CPUID_BITS   _u(0xffffffff)
#define SIO_CPUID_RESET  "-"
#define SIO_CPUID_MSB    _u(31)
#define SIO_CPUID_LSB    _u(0)
#define SIO_CPUID_ACCESS "RO"
// =============================================================================
// Register    : SIO_GPIO_IN
// Description : Input value for GPIO0...31.
//
//               In the Non-secure SIO, Secure-only GPIOs (as per ACCESSCTRL)
//               appear as zero.
#define SIO_GPIO_IN_OFFSET _u(0x00000004)
#define SIO_GPIO_IN_BITS   _u(0xffffffff)
#define SIO_GPIO_IN_RESET  _u(0x00000000)
#define SIO_GPIO_IN_MSB    _u(31)
#define SIO_GPIO_IN_LSB    _u(0)
#define SIO_GPIO_IN_ACCESS "RO"
// =============================================================================
// Register    : SIO_GPIO_HI_IN
// Description : Input value on GPIO32...47, QSPI IOs and USB pins
//
//               In the Non-secure SIO, Secure-only GPIOs (as per ACCESSCTRL)
//               appear as zero.
#define SIO_GPIO_HI_IN_OFFSET _u(0x00000008)
#define SIO_GPIO_HI_IN_BITS   _u(0xff00ffff)
#define SIO_GPIO_HI_IN_RESET  _u(0x00000000)
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_IN_QSPI_SD
// Description : Input value on QSPI SD0 (MOSI), SD1 (MISO), SD2 and SD3 pins
#define SIO_GPIO_HI_IN_QSPI_SD_RESET  _u(0x0)
#define SIO_GPIO_HI_IN_QSPI_SD_BITS   _u(0xf0000000)
#define SIO_GPIO_HI_IN_QSPI_SD_MSB    _u(31)
#define SIO_GPIO_HI_IN_QSPI_SD_LSB    _u(28)
#define SIO_GPIO_HI_IN_QSPI_SD_ACCESS "RO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_IN_QSPI_CSN
// Description : Input value on QSPI CSn pin
#define SIO_GPIO_HI_IN_QSPI_CSN_RESET  _u(0x0)
#define SIO_GPIO_HI_IN_QSPI_CSN_BITS   _u(0x08000000)
#define SIO_GPIO_HI_IN_QSPI_CSN_MSB    _u(27)
#define SIO_GPIO_HI_IN_QSPI_CSN_LSB    _u(27)
#define SIO_GPIO_HI_IN_QSPI_CSN_ACCESS "RO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_IN_QSPI_SCK
// Description : Input value on QSPI SCK pin
#define SIO_GPIO_HI_IN_QSPI_SCK_RESET  _u(0x0)
#define SIO_GPIO_HI_IN_QSPI_SCK_BITS   _u(0x04000000)
#define SIO_GPIO_HI_IN_QSPI_SCK_MSB    _u(26)
#define SIO_GPIO_HI_IN_QSPI_SCK_LSB    _u(26)
#define SIO_GPIO_HI_IN_QSPI_SCK_ACCESS "RO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_IN_USB_DM
// Description : Input value on USB D- pin
#define SIO_GPIO_HI_IN_USB_DM_RESET  _u(0x0)
#define SIO_GPIO_HI_IN_USB_DM_BITS   _u(0x02000000)
#define SIO_GPIO_HI_IN_USB_DM_MSB    _u(25)
#define SIO_GPIO_HI_IN_USB_DM_LSB    _u(25)
#define SIO_GPIO_HI_IN_USB_DM_ACCESS "RO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_IN_USB_DP
// Description : Input value on USB D+ pin
#define SIO_GPIO_HI_IN_USB_DP_RESET  _u(0x0)
#define SIO_GPIO_HI_IN_USB_DP_BITS   _u(0x01000000)
#define SIO_GPIO_HI_IN_USB_DP_MSB    _u(24)
#define SIO_GPIO_HI_IN_USB_DP_LSB    _u(24)
#define SIO_GPIO_HI_IN_USB_DP_ACCESS "RO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_IN_GPIO
// Description : Input value on GPIO32...47
#define SIO_GPIO_HI_IN_GPIO_RESET  _u(0x0000)
#define SIO_GPIO_HI_IN_GPIO_BITS   _u(0x0000ffff)
#define SIO_GPIO_HI_IN_GPIO_MSB    _u(15)
#define SIO_GPIO_HI_IN_GPIO_LSB    _u(0)
#define SIO_GPIO_HI_IN_GPIO_ACCESS "RO"
// =============================================================================
// Register    : SIO_GPIO_OUT
// Description : GPIO0...31 output value
//               Set output level (1/0 -> high/low) for GPIO0...31. Reading back
//               gives the last value written, NOT the input value from the
//               pins.
//
//               If core 0 and core 1 both write to GPIO_OUT simultaneously (or
//               to a SET/CLR/XOR alias), the result is as though the write from
//               core 0 took place first, and the write from core 1 was then
//               applied to that intermediate result.
//
//               In the Non-secure SIO, Secure-only GPIOs (as per ACCESSCTRL)
//               ignore writes, and their output status reads back as zero. This
//               is also true for SET/CLR/XOR aliases of this register.
#define SIO_GPIO_OUT_OFFSET _u(0x00000010)
#define SIO_GPIO_OUT_BITS   _u(0xffffffff)
#define SIO_GPIO_OUT_RESET  _u(0x00000000)
#define SIO_GPIO_OUT_MSB    _u(31)
#define SIO_GPIO_OUT_LSB    _u(0)
#define SIO_GPIO_OUT_ACCESS "RW"
// =============================================================================
// Register    : SIO_GPIO_HI_OUT
// Description : Output value for GPIO32...47, QSPI IOs and USB pins.
//
//               Write to set output level (1/0 -> high/low). Reading back gives
//               the last value written, NOT the input value from the pins. If
//               core 0 and core 1 both write to GPIO_HI_OUT simultaneously (or
//               to a SET/CLR/XOR alias), the result is as though the write from
//               core 0 took place first, and the write from core 1 was then
//               applied to that intermediate result.
//
//               In the Non-secure SIO, Secure-only GPIOs (as per ACCESSCTRL)
//               ignore writes, and their output status reads back as zero. This
//               is also true for SET/CLR/XOR aliases of this register.
#define SIO_GPIO_HI_OUT_OFFSET _u(0x00000014)
#define SIO_GPIO_HI_OUT_BITS   _u(0xff00ffff)
#define SIO_GPIO_HI_OUT_RESET  _u(0x00000000)
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OUT_QSPI_SD
// Description : Output value for QSPI SD0 (MOSI), SD1 (MISO), SD2 and SD3 pins
#define SIO_GPIO_HI_OUT_QSPI_SD_RESET  _u(0x0)
#define SIO_GPIO_HI_OUT_QSPI_SD_BITS   _u(0xf0000000)
#define SIO_GPIO_HI_OUT_QSPI_SD_MSB    _u(31)
#define SIO_GPIO_HI_OUT_QSPI_SD_LSB    _u(28)
#define SIO_GPIO_HI_OUT_QSPI_SD_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OUT_QSPI_CSN
// Description : Output value for QSPI CSn pin
#define SIO_GPIO_HI_OUT_QSPI_CSN_RESET  _u(0x0)
#define SIO_GPIO_HI_OUT_QSPI_CSN_BITS   _u(0x08000000)
#define SIO_GPIO_HI_OUT_QSPI_CSN_MSB    _u(27)
#define SIO_GPIO_HI_OUT_QSPI_CSN_LSB    _u(27)
#define SIO_GPIO_HI_OUT_QSPI_CSN_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OUT_QSPI_SCK
// Description : Output value for QSPI SCK pin
#define SIO_GPIO_HI_OUT_QSPI_SCK_RESET  _u(0x0)
#define SIO_GPIO_HI_OUT_QSPI_SCK_BITS   _u(0x04000000)
#define SIO_GPIO_HI_OUT_QSPI_SCK_MSB    _u(26)
#define SIO_GPIO_HI_OUT_QSPI_SCK_LSB    _u(26)
#define SIO_GPIO_HI_OUT_QSPI_SCK_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OUT_USB_DM
// Description : Output value for USB D- pin
#define SIO_GPIO_HI_OUT_USB_DM_RESET  _u(0x0)
#define SIO_GPIO_HI_OUT_USB_DM_BITS   _u(0x02000000)
#define SIO_GPIO_HI_OUT_USB_DM_MSB    _u(25)
#define SIO_GPIO_HI_OUT_USB_DM_LSB    _u(25)
#define SIO_GPIO_HI_OUT_USB_DM_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OUT_USB_DP
// Description : Output value for USB D+ pin
#define SIO_GPIO_HI_OUT_USB_DP_RESET  _u(0x0)
#define SIO_GPIO_HI_OUT_USB_DP_BITS   _u(0x01000000)
#define SIO_GPIO_HI_OUT_USB_DP_MSB    _u(24)
#define SIO_GPIO_HI_OUT_USB_DP_LSB    _u(24)
#define SIO_GPIO_HI_OUT_USB_DP_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OUT_GPIO
// Description : Output value for GPIO32...47
#define SIO_GPIO_HI_OUT_GPIO_RESET  _u(0x0000)
#define SIO_GPIO_HI_OUT_GPIO_BITS   _u(0x0000ffff)
#define SIO_GPIO_HI_OUT_GPIO_MSB    _u(15)
#define SIO_GPIO_HI_OUT_GPIO_LSB    _u(0)
#define SIO_GPIO_HI_OUT_GPIO_ACCESS "RW"
// =============================================================================
// Register    : SIO_GPIO_OUT_SET
// Description : GPIO0...31 output value set
//               Perform an atomic bit-set on GPIO_OUT, i.e. `GPIO_OUT |= wdata`
#define SIO_GPIO_OUT_SET_OFFSET _u(0x00000018)
#define SIO_GPIO_OUT_SET_BITS   _u(0xffffffff)
#define SIO_GPIO_OUT_SET_RESET  _u(0x00000000)
#define SIO_GPIO_OUT_SET_MSB    _u(31)
#define SIO_GPIO_OUT_SET_LSB    _u(0)
#define SIO_GPIO_OUT_SET_ACCESS "WO"
// =============================================================================
// Register    : SIO_GPIO_HI_OUT_SET
// Description : Output value set for GPIO32..47, QSPI IOs and USB pins.
//               Perform an atomic bit-set on GPIO_HI_OUT, i.e. `GPIO_HI_OUT |=
//               wdata`
#define SIO_GPIO_HI_OUT_SET_OFFSET _u(0x0000001c)
#define SIO_GPIO_HI_OUT_SET_BITS   _u(0xff00ffff)
#define SIO_GPIO_HI_OUT_SET_RESET  _u(0x00000000)
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OUT_SET_QSPI_SD
#define SIO_GPIO_HI_OUT_SET_QSPI_SD_RESET  _u(0x0)
#define SIO_GPIO_HI_OUT_SET_QSPI_SD_BITS   _u(0xf0000000)
#define SIO_GPIO_HI_OUT_SET_QSPI_SD_MSB    _u(31)
#define SIO_GPIO_HI_OUT_SET_QSPI_SD_LSB    _u(28)
#define SIO_GPIO_HI_OUT_SET_QSPI_SD_ACCESS "WO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OUT_SET_QSPI_CSN
#define SIO_GPIO_HI_OUT_SET_QSPI_CSN_RESET  _u(0x0)
#define SIO_GPIO_HI_OUT_SET_QSPI_CSN_BITS   _u(0x08000000)
#define SIO_GPIO_HI_OUT_SET_QSPI_CSN_MSB    _u(27)
#define SIO_GPIO_HI_OUT_SET_QSPI_CSN_LSB    _u(27)
#define SIO_GPIO_HI_OUT_SET_QSPI_CSN_ACCESS "WO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OUT_SET_QSPI_SCK
#define SIO_GPIO_HI_OUT_SET_QSPI_SCK_RESET  _u(0x0)
#define SIO_GPIO_HI_OUT_SET_QSPI_SCK_BITS   _u(0x04000000)
#define SIO_GPIO_HI_OUT_SET_QSPI_SCK_MSB    _u(26)
#define SIO_GPIO_HI_OUT_SET_QSPI_SCK_LSB    _u(26)
#define SIO_GPIO_HI_OUT_SET_QSPI_SCK_ACCESS "WO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OUT_SET_USB_DM
#define SIO_GPIO_HI_OUT_SET_USB_DM_RESET  _u(0x0)
#define SIO_GPIO_HI_OUT_SET_USB_DM_BITS   _u(0x02000000)
#define SIO_GPIO_HI_OUT_SET_USB_DM_MSB    _u(25)
#define SIO_GPIO_HI_OUT_SET_USB_DM_LSB    _u(25)
#define SIO_GPIO_HI_OUT_SET_USB_DM_ACCESS "WO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OUT_SET_USB_DP
#define SIO_GPIO_HI_OUT_SET_USB_DP_RESET  _u(0x0)
#define SIO_GPIO_HI_OUT_SET_USB_DP_BITS   _u(0x01000000)
#define SIO_GPIO_HI_OUT_SET_USB_DP_MSB    _u(24)
#define SIO_GPIO_HI_OUT_SET_USB_DP_LSB    _u(24)
#define SIO_GPIO_HI_OUT_SET_USB_DP_ACCESS "WO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OUT_SET_GPIO
#define SIO_GPIO_HI_OUT_SET_GPIO_RESET  _u(0x0000)
#define SIO_GPIO_HI_OUT_SET_GPIO_BITS   _u(0x0000ffff)
#define SIO_GPIO_HI_OUT_SET_GPIO_MSB    _u(15)
#define SIO_GPIO_HI_OUT_SET_GPIO_LSB    _u(0)
#define SIO_GPIO_HI_OUT_SET_GPIO_ACCESS "WO"
// =============================================================================
// Register    : SIO_GPIO_OUT_CLR
// Description : GPIO0...31 output value clear
//               Perform an atomic bit-clear on GPIO_OUT, i.e. `GPIO_OUT &=
//               ~wdata`
#define SIO_GPIO_OUT_CLR_OFFSET _u(0x00000020)
#define SIO_GPIO_OUT_CLR_BITS   _u(0xffffffff)
#define SIO_GPIO_OUT_CLR_RESET  _u(0x00000000)
#define SIO_GPIO_OUT_CLR_MSB    _u(31)
#define SIO_GPIO_OUT_CLR_LSB    _u(0)
#define SIO_GPIO_OUT_CLR_ACCESS "WO"
// =============================================================================
// Register    : SIO_GPIO_HI_OUT_CLR
// Description : Output value clear for GPIO32..47, QSPI IOs and USB pins.
//               Perform an atomic bit-clear on GPIO_HI_OUT, i.e. `GPIO_HI_OUT
//               &= ~wdata`
#define SIO_GPIO_HI_OUT_CLR_OFFSET _u(0x00000024)
#define SIO_GPIO_HI_OUT_CLR_BITS   _u(0xff00ffff)
#define SIO_GPIO_HI_OUT_CLR_RESET  _u(0x00000000)
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OUT_CLR_QSPI_SD
#define SIO_GPIO_HI_OUT_CLR_QSPI_SD_RESET  _u(0x0)
#define SIO_GPIO_HI_OUT_CLR_QSPI_SD_BITS   _u(0xf0000000)
#define SIO_GPIO_HI_OUT_CLR_QSPI_SD_MSB    _u(31)
#define SIO_GPIO_HI_OUT_CLR_QSPI_SD_LSB    _u(28)
#define SIO_GPIO_HI_OUT_CLR_QSPI_SD_ACCESS "WO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OUT_CLR_QSPI_CSN
#define SIO_GPIO_HI_OUT_CLR_QSPI_CSN_RESET  _u(0x0)
#define SIO_GPIO_HI_OUT_CLR_QSPI_CSN_BITS   _u(0x08000000)
#define SIO_GPIO_HI_OUT_CLR_QSPI_CSN_MSB    _u(27)
#define SIO_GPIO_HI_OUT_CLR_QSPI_CSN_LSB    _u(27)
#define SIO_GPIO_HI_OUT_CLR_QSPI_CSN_ACCESS "WO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OUT_CLR_QSPI_SCK
#define SIO_GPIO_HI_OUT_CLR_QSPI_SCK_RESET  _u(0x0)
#define SIO_GPIO_HI_OUT_CLR_QSPI_SCK_BITS   _u(0x04000000)
#define SIO_GPIO_HI_OUT_CLR_QSPI_SCK_MSB    _u(26)
#define SIO_GPIO_HI_OUT_CLR_QSPI_SCK_LSB    _u(26)
#define SIO_GPIO_HI_OUT_CLR_QSPI_SCK_ACCESS "WO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OUT_CLR_USB_DM
#define SIO_GPIO_HI_OUT_CLR_USB_DM_RESET  _u(0x0)
#define SIO_GPIO_HI_OUT_CLR_USB_DM_BITS   _u(0x02000000)
#define SIO_GPIO_HI_OUT_CLR_USB_DM_MSB    _u(25)
#define SIO_GPIO_HI_OUT_CLR_USB_DM_LSB    _u(25)
#define SIO_GPIO_HI_OUT_CLR_USB_DM_ACCESS "WO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OUT_CLR_USB_DP
#define SIO_GPIO_HI_OUT_CLR_USB_DP_RESET  _u(0x0)
#define SIO_GPIO_HI_OUT_CLR_USB_DP_BITS   _u(0x01000000)
#define SIO_GPIO_HI_OUT_CLR_USB_DP_MSB    _u(24)
#define SIO_GPIO_HI_OUT_CLR_USB_DP_LSB    _u(24)
#define SIO_GPIO_HI_OUT_CLR_USB_DP_ACCESS "WO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OUT_CLR_GPIO
#define SIO_GPIO_HI_OUT_CLR_GPIO_RESET  _u(0x0000)
#define SIO_GPIO_HI_OUT_CLR_GPIO_BITS   _u(0x0000ffff)
#define SIO_GPIO_HI_OUT_CLR_GPIO_MSB    _u(15)
#define SIO_GPIO_HI_OUT_CLR_GPIO_LSB    _u(0)
#define SIO_GPIO_HI_OUT_CLR_GPIO_ACCESS "WO"
// =============================================================================
// Register    : SIO_GPIO_OUT_XOR
// Description : GPIO0...31 output value XOR
//               Perform an atomic bitwise XOR on GPIO_OUT, i.e. `GPIO_OUT ^=
//               wdata`
#define SIO_GPIO_OUT_XOR_OFFSET _u(0x00000028)
#define SIO_GPIO_OUT_XOR_BITS   _u(0xffffffff)
#define SIO_GPIO_OUT_XOR_RESET  _u(0x00000000)
#define SIO_GPIO_OUT_XOR_MSB    _u(31)
#define SIO_GPIO_OUT_XOR_LSB    _u(0)
#define SIO_GPIO_OUT_XOR_ACCESS "WO"
// =============================================================================
// Register    : SIO_GPIO_HI_OUT_XOR
// Description : Output value XOR for GPIO32..47, QSPI IOs and USB pins.
//               Perform an atomic bitwise XOR on GPIO_HI_OUT, i.e. `GPIO_HI_OUT
//               ^= wdata`
#define SIO_GPIO_HI_OUT_XOR_OFFSET _u(0x0000002c)
#define SIO_GPIO_HI_OUT_XOR_BITS   _u(0xff00ffff)
#define SIO_GPIO_HI_OUT_XOR_RESET  _u(0x00000000)
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OUT_XOR_QSPI_SD
#define SIO_GPIO_HI_OUT_XOR_QSPI_SD_RESET  _u(0x0)
#define SIO_GPIO_HI_OUT_XOR_QSPI_SD_BITS   _u(0xf0000000)
#define SIO_GPIO_HI_OUT_XOR_QSPI_SD_MSB    _u(31)
#define SIO_GPIO_HI_OUT_XOR_QSPI_SD_LSB    _u(28)
#define SIO_GPIO_HI_OUT_XOR_QSPI_SD_ACCESS "WO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OUT_XOR_QSPI_CSN
#define SIO_GPIO_HI_OUT_XOR_QSPI_CSN_RESET  _u(0x0)
#define SIO_GPIO_HI_OUT_XOR_QSPI_CSN_BITS   _u(0x08000000)
#define SIO_GPIO_HI_OUT_XOR_QSPI_CSN_MSB    _u(27)
#define SIO_GPIO_HI_OUT_XOR_QSPI_CSN_LSB    _u(27)
#define SIO_GPIO_HI_OUT_XOR_QSPI_CSN_ACCESS "WO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OUT_XOR_QSPI_SCK
#define SIO_GPIO_HI_OUT_XOR_QSPI_SCK_RESET  _u(0x0)
#define SIO_GPIO_HI_OUT_XOR_QSPI_SCK_BITS   _u(0x04000000)
#define SIO_GPIO_HI_OUT_XOR_QSPI_SCK_MSB    _u(26)
#define SIO_GPIO_HI_OUT_XOR_QSPI_SCK_LSB    _u(26)
#define SIO_GPIO_HI_OUT_XOR_QSPI_SCK_ACCESS "WO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OUT_XOR_USB_DM
#define SIO_GPIO_HI_OUT_XOR_USB_DM_RESET  _u(0x0)
#define SIO_GPIO_HI_OUT_XOR_USB_DM_BITS   _u(0x02000000)
#define SIO_GPIO_HI_OUT_XOR_USB_DM_MSB    _u(25)
#define SIO_GPIO_HI_OUT_XOR_USB_DM_LSB    _u(25)
#define SIO_GPIO_HI_OUT_XOR_USB_DM_ACCESS "WO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OUT_XOR_USB_DP
#define SIO_GPIO_HI_OUT_XOR_USB_DP_RESET  _u(0x0)
#define SIO_GPIO_HI_OUT_XOR_USB_DP_BITS   _u(0x01000000)
#define SIO_GPIO_HI_OUT_XOR_USB_DP_MSB    _u(24)
#define SIO_GPIO_HI_OUT_XOR_USB_DP_LSB    _u(24)
#define SIO_GPIO_HI_OUT_XOR_USB_DP_ACCESS "WO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OUT_XOR_GPIO
#define SIO_GPIO_HI_OUT_XOR_GPIO_RESET  _u(0x0000)
#define SIO_GPIO_HI_OUT_XOR_GPIO_BITS   _u(0x0000ffff)
#define SIO_GPIO_HI_OUT_XOR_GPIO_MSB    _u(15)
#define SIO_GPIO_HI_OUT_XOR_GPIO_LSB    _u(0)
#define SIO_GPIO_HI_OUT_XOR_GPIO_ACCESS "WO"
// =============================================================================
// Register    : SIO_GPIO_OE
// Description : GPIO0...31 output enable
//               Set output enable (1/0 -> output/input) for GPIO0...31. Reading
//               back gives the last value written.
//
//               If core 0 and core 1 both write to GPIO_OE simultaneously (or
//               to a SET/CLR/XOR alias), the result is as though the write from
//               core 0 took place first, and the write from core 1 was then
//               applied to that intermediate result.
//
//               In the Non-secure SIO, Secure-only GPIOs (as per ACCESSCTRL)
//               ignore writes, and their output status reads back as zero. This
//               is also true for SET/CLR/XOR aliases of this register.
#define SIO_GPIO_OE_OFFSET _u(0x00000030)
#define SIO_GPIO_OE_BITS   _u(0xffffffff)
#define SIO_GPIO_OE_RESET  _u(0x00000000)
#define SIO_GPIO_OE_MSB    _u(31)
#define SIO_GPIO_OE_LSB    _u(0)
#define SIO_GPIO_OE_ACCESS "RW"
// =============================================================================
// Register    : SIO_GPIO_HI_OE
// Description : Output enable value for GPIO32...47, QSPI IOs and USB pins.
//
//               Write output enable (1/0 -> output/input). Reading back gives
//               the last value written. If core 0 and core 1 both write to
//               GPIO_HI_OE simultaneously (or to a SET/CLR/XOR alias), the
//               result is as though the write from core 0 took place first, and
//               the write from core 1 was then applied to that intermediate
//               result.
//
//               In the Non-secure SIO, Secure-only GPIOs (as per ACCESSCTRL)
//               ignore writes, and their output status reads back as zero. This
//               is also true for SET/CLR/XOR aliases of this register.
#define SIO_GPIO_HI_OE_OFFSET _u(0x00000034)
#define SIO_GPIO_HI_OE_BITS   _u(0xff00ffff)
#define SIO_GPIO_HI_OE_RESET  _u(0x00000000)
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OE_QSPI_SD
// Description : Output enable value for QSPI SD0 (MOSI), SD1 (MISO), SD2 and
//               SD3 pins
#define SIO_GPIO_HI_OE_QSPI_SD_RESET  _u(0x0)
#define SIO_GPIO_HI_OE_QSPI_SD_BITS   _u(0xf0000000)
#define SIO_GPIO_HI_OE_QSPI_SD_MSB    _u(31)
#define SIO_GPIO_HI_OE_QSPI_SD_LSB    _u(28)
#define SIO_GPIO_HI_OE_QSPI_SD_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OE_QSPI_CSN
// Description : Output enable value for QSPI CSn pin
#define SIO_GPIO_HI_OE_QSPI_CSN_RESET  _u(0x0)
#define SIO_GPIO_HI_OE_QSPI_CSN_BITS   _u(0x08000000)
#define SIO_GPIO_HI_OE_QSPI_CSN_MSB    _u(27)
#define SIO_GPIO_HI_OE_QSPI_CSN_LSB    _u(27)
#define SIO_GPIO_HI_OE_QSPI_CSN_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OE_QSPI_SCK
// Description : Output enable value for QSPI SCK pin
#define SIO_GPIO_HI_OE_QSPI_SCK_RESET  _u(0x0)
#define SIO_GPIO_HI_OE_QSPI_SCK_BITS   _u(0x04000000)
#define SIO_GPIO_HI_OE_QSPI_SCK_MSB    _u(26)
#define SIO_GPIO_HI_OE_QSPI_SCK_LSB    _u(26)
#define SIO_GPIO_HI_OE_QSPI_SCK_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OE_USB_DM
// Description : Output enable value for USB D- pin
#define SIO_GPIO_HI_OE_USB_DM_RESET  _u(0x0)
#define SIO_GPIO_HI_OE_USB_DM_BITS   _u(0x02000000)
#define SIO_GPIO_HI_OE_USB_DM_MSB    _u(25)
#define SIO_GPIO_HI_OE_USB_DM_LSB    _u(25)
#define SIO_GPIO_HI_OE_USB_DM_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OE_USB_DP
// Description : Output enable value for USB D+ pin
#define SIO_GPIO_HI_OE_USB_DP_RESET  _u(0x0)
#define SIO_GPIO_HI_OE_USB_DP_BITS   _u(0x01000000)
#define SIO_GPIO_HI_OE_USB_DP_MSB    _u(24)
#define SIO_GPIO_HI_OE_USB_DP_LSB    _u(24)
#define SIO_GPIO_HI_OE_USB_DP_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OE_GPIO
// Description : Output enable value for GPIO32...47
#define SIO_GPIO_HI_OE_GPIO_RESET  _u(0x0000)
#define SIO_GPIO_HI_OE_GPIO_BITS   _u(0x0000ffff)
#define SIO_GPIO_HI_OE_GPIO_MSB    _u(15)
#define SIO_GPIO_HI_OE_GPIO_LSB    _u(0)
#define SIO_GPIO_HI_OE_GPIO_ACCESS "RW"
// =============================================================================
// Register    : SIO_GPIO_OE_SET
// Description : GPIO0...31 output enable set
//               Perform an atomic bit-set on GPIO_OE, i.e. `GPIO_OE |= wdata`
#define SIO_GPIO_OE_SET_OFFSET _u(0x00000038)
#define SIO_GPIO_OE_SET_BITS   _u(0xffffffff)
#define SIO_GPIO_OE_SET_RESET  _u(0x00000000)
#define SIO_GPIO_OE_SET_MSB    _u(31)
#define SIO_GPIO_OE_SET_LSB    _u(0)
#define SIO_GPIO_OE_SET_ACCESS "WO"
// =============================================================================
// Register    : SIO_GPIO_HI_OE_SET
// Description : Output enable set for GPIO32...47, QSPI IOs and USB pins.
//               Perform an atomic bit-set on GPIO_HI_OE, i.e. `GPIO_HI_OE |=
//               wdata`
#define SIO_GPIO_HI_OE_SET_OFFSET _u(0x0000003c)
#define SIO_GPIO_HI_OE_SET_BITS   _u(0xff00ffff)
#define SIO_GPIO_HI_OE_SET_RESET  _u(0x00000000)
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OE_SET_QSPI_SD
#define SIO_GPIO_HI_OE_SET_QSPI_SD_RESET  _u(0x0)
#define SIO_GPIO_HI_OE_SET_QSPI_SD_BITS   _u(0xf0000000)
#define SIO_GPIO_HI_OE_SET_QSPI_SD_MSB    _u(31)
#define SIO_GPIO_HI_OE_SET_QSPI_SD_LSB    _u(28)
#define SIO_GPIO_HI_OE_SET_QSPI_SD_ACCESS "WO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OE_SET_QSPI_CSN
#define SIO_GPIO_HI_OE_SET_QSPI_CSN_RESET  _u(0x0)
#define SIO_GPIO_HI_OE_SET_QSPI_CSN_BITS   _u(0x08000000)
#define SIO_GPIO_HI_OE_SET_QSPI_CSN_MSB    _u(27)
#define SIO_GPIO_HI_OE_SET_QSPI_CSN_LSB    _u(27)
#define SIO_GPIO_HI_OE_SET_QSPI_CSN_ACCESS "WO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OE_SET_QSPI_SCK
#define SIO_GPIO_HI_OE_SET_QSPI_SCK_RESET  _u(0x0)
#define SIO_GPIO_HI_OE_SET_QSPI_SCK_BITS   _u(0x04000000)
#define SIO_GPIO_HI_OE_SET_QSPI_SCK_MSB    _u(26)
#define SIO_GPIO_HI_OE_SET_QSPI_SCK_LSB    _u(26)
#define SIO_GPIO_HI_OE_SET_QSPI_SCK_ACCESS "WO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OE_SET_USB_DM
#define SIO_GPIO_HI_OE_SET_USB_DM_RESET  _u(0x0)
#define SIO_GPIO_HI_OE_SET_USB_DM_BITS   _u(0x02000000)
#define SIO_GPIO_HI_OE_SET_USB_DM_MSB    _u(25)
#define SIO_GPIO_HI_OE_SET_USB_DM_LSB    _u(25)
#define SIO_GPIO_HI_OE_SET_USB_DM_ACCESS "WO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OE_SET_USB_DP
#define SIO_GPIO_HI_OE_SET_USB_DP_RESET  _u(0x0)
#define SIO_GPIO_HI_OE_SET_USB_DP_BITS   _u(0x01000000)
#define SIO_GPIO_HI_OE_SET_USB_DP_MSB    _u(24)
#define SIO_GPIO_HI_OE_SET_USB_DP_LSB    _u(24)
#define SIO_GPIO_HI_OE_SET_USB_DP_ACCESS "WO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OE_SET_GPIO
#define SIO_GPIO_HI_OE_SET_GPIO_RESET  _u(0x0000)
#define SIO_GPIO_HI_OE_SET_GPIO_BITS   _u(0x0000ffff)
#define SIO_GPIO_HI_OE_SET_GPIO_MSB    _u(15)
#define SIO_GPIO_HI_OE_SET_GPIO_LSB    _u(0)
#define SIO_GPIO_HI_OE_SET_GPIO_ACCESS "WO"
// =============================================================================
// Register    : SIO_GPIO_OE_CLR
// Description : GPIO0...31 output enable clear
//               Perform an atomic bit-clear on GPIO_OE, i.e. `GPIO_OE &=
//               ~wdata`
#define SIO_GPIO_OE_CLR_OFFSET _u(0x00000040)
#define SIO_GPIO_OE_CLR_BITS   _u(0xffffffff)
#define SIO_GPIO_OE_CLR_RESET  _u(0x00000000)
#define SIO_GPIO_OE_CLR_MSB    _u(31)
#define SIO_GPIO_OE_CLR_LSB    _u(0)
#define SIO_GPIO_OE_CLR_ACCESS "WO"
// =============================================================================
// Register    : SIO_GPIO_HI_OE_CLR
// Description : Output enable clear for GPIO32...47, QSPI IOs and USB pins.
//               Perform an atomic bit-clear on GPIO_HI_OE, i.e. `GPIO_HI_OE &=
//               ~wdata`
#define SIO_GPIO_HI_OE_CLR_OFFSET _u(0x00000044)
#define SIO_GPIO_HI_OE_CLR_BITS   _u(0xff00ffff)
#define SIO_GPIO_HI_OE_CLR_RESET  _u(0x00000000)
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OE_CLR_QSPI_SD
#define SIO_GPIO_HI_OE_CLR_QSPI_SD_RESET  _u(0x0)
#define SIO_GPIO_HI_OE_CLR_QSPI_SD_BITS   _u(0xf0000000)
#define SIO_GPIO_HI_OE_CLR_QSPI_SD_MSB    _u(31)
#define SIO_GPIO_HI_OE_CLR_QSPI_SD_LSB    _u(28)
#define SIO_GPIO_HI_OE_CLR_QSPI_SD_ACCESS "WO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OE_CLR_QSPI_CSN
#define SIO_GPIO_HI_OE_CLR_QSPI_CSN_RESET  _u(0x0)
#define SIO_GPIO_HI_OE_CLR_QSPI_CSN_BITS   _u(0x08000000)
#define SIO_GPIO_HI_OE_CLR_QSPI_CSN_MSB    _u(27)
#define SIO_GPIO_HI_OE_CLR_QSPI_CSN_LSB    _u(27)
#define SIO_GPIO_HI_OE_CLR_QSPI_CSN_ACCESS "WO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OE_CLR_QSPI_SCK
#define SIO_GPIO_HI_OE_CLR_QSPI_SCK_RESET  _u(0x0)
#define SIO_GPIO_HI_OE_CLR_QSPI_SCK_BITS   _u(0x04000000)
#define SIO_GPIO_HI_OE_CLR_QSPI_SCK_MSB    _u(26)
#define SIO_GPIO_HI_OE_CLR_QSPI_SCK_LSB    _u(26)
#define SIO_GPIO_HI_OE_CLR_QSPI_SCK_ACCESS "WO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OE_CLR_USB_DM
#define SIO_GPIO_HI_OE_CLR_USB_DM_RESET  _u(0x0)
#define SIO_GPIO_HI_OE_CLR_USB_DM_BITS   _u(0x02000000)
#define SIO_GPIO_HI_OE_CLR_USB_DM_MSB    _u(25)
#define SIO_GPIO_HI_OE_CLR_USB_DM_LSB    _u(25)
#define SIO_GPIO_HI_OE_CLR_USB_DM_ACCESS "WO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OE_CLR_USB_DP
#define SIO_GPIO_HI_OE_CLR_USB_DP_RESET  _u(0x0)
#define SIO_GPIO_HI_OE_CLR_USB_DP_BITS   _u(0x01000000)
#define SIO_GPIO_HI_OE_CLR_USB_DP_MSB    _u(24)
#define SIO_GPIO_HI_OE_CLR_USB_DP_LSB    _u(24)
#define SIO_GPIO_HI_OE_CLR_USB_DP_ACCESS "WO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OE_CLR_GPIO
#define SIO_GPIO_HI_OE_CLR_GPIO_RESET  _u(0x0000)
#define SIO_GPIO_HI_OE_CLR_GPIO_BITS   _u(0x0000ffff)
#define SIO_GPIO_HI_OE_CLR_GPIO_MSB    _u(15)
#define SIO_GPIO_HI_OE_CLR_GPIO_LSB    _u(0)
#define SIO_GPIO_HI_OE_CLR_GPIO_ACCESS "WO"
// =============================================================================
// Register    : SIO_GPIO_OE_XOR
// Description : GPIO0...31 output enable XOR
//               Perform an atomic bitwise XOR on GPIO_OE, i.e. `GPIO_OE ^=
//               wdata`
#define SIO_GPIO_OE_XOR_OFFSET _u(0x00000048)
#define SIO_GPIO_OE_XOR_BITS   _u(0xffffffff)
#define SIO_GPIO_OE_XOR_RESET  _u(0x00000000)
#define SIO_GPIO_OE_XOR_MSB    _u(31)
#define SIO_GPIO_OE_XOR_LSB    _u(0)
#define SIO_GPIO_OE_XOR_ACCESS "WO"
// =============================================================================
// Register    : SIO_GPIO_HI_OE_XOR
// Description : Output enable XOR for GPIO32...47, QSPI IOs and USB pins.
//               Perform an atomic bitwise XOR on GPIO_HI_OE, i.e. `GPIO_HI_OE
//               ^= wdata`
#define SIO_GPIO_HI_OE_XOR_OFFSET _u(0x0000004c)
#define SIO_GPIO_HI_OE_XOR_BITS   _u(0xff00ffff)
#define SIO_GPIO_HI_OE_XOR_RESET  _u(0x00000000)
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OE_XOR_QSPI_SD
#define SIO_GPIO_HI_OE_XOR_QSPI_SD_RESET  _u(0x0)
#define SIO_GPIO_HI_OE_XOR_QSPI_SD_BITS   _u(0xf0000000)
#define SIO_GPIO_HI_OE_XOR_QSPI_SD_MSB    _u(31)
#define SIO_GPIO_HI_OE_XOR_QSPI_SD_LSB    _u(28)
#define SIO_GPIO_HI_OE_XOR_QSPI_SD_ACCESS "WO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OE_XOR_QSPI_CSN
#define SIO_GPIO_HI_OE_XOR_QSPI_CSN_RESET  _u(0x0)
#define SIO_GPIO_HI_OE_XOR_QSPI_CSN_BITS   _u(0x08000000)
#define SIO_GPIO_HI_OE_XOR_QSPI_CSN_MSB    _u(27)
#define SIO_GPIO_HI_OE_XOR_QSPI_CSN_LSB    _u(27)
#define SIO_GPIO_HI_OE_XOR_QSPI_CSN_ACCESS "WO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OE_XOR_QSPI_SCK
#define SIO_GPIO_HI_OE_XOR_QSPI_SCK_RESET  _u(0x0)
#define SIO_GPIO_HI_OE_XOR_QSPI_SCK_BITS   _u(0x04000000)
#define SIO_GPIO_HI_OE_XOR_QSPI_SCK_MSB    _u(26)
#define SIO_GPIO_HI_OE_XOR_QSPI_SCK_LSB    _u(26)
#define SIO_GPIO_HI_OE_XOR_QSPI_SCK_ACCESS "WO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OE_XOR_USB_DM
#define SIO_GPIO_HI_OE_XOR_USB_DM_RESET  _u(0x0)
#define SIO_GPIO_HI_OE_XOR_USB_DM_BITS   _u(0x02000000)
#define SIO_GPIO_HI_OE_XOR_USB_DM_MSB    _u(25)
#define SIO_GPIO_HI_OE_XOR_USB_DM_LSB    _u(25)
#define SIO_GPIO_HI_OE_XOR_USB_DM_ACCESS "WO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OE_XOR_USB_DP
#define SIO_GPIO_HI_OE_XOR_USB_DP_RESET  _u(0x0)
#define SIO_GPIO_HI_OE_XOR_USB_DP_BITS   _u(0x01000000)
#define SIO_GPIO_HI_OE_XOR_USB_DP_MSB    _u(24)
#define SIO_GPIO_HI_OE_XOR_USB_DP_LSB    _u(24)
#define SIO_GPIO_HI_OE_XOR_USB_DP_ACCESS "WO"
// -----------------------------------------------------------------------------
// Field       : SIO_GPIO_HI_OE_XOR_GPIO
#define SIO_GPIO_HI_OE_XOR_GPIO_RESET  _u(0x0000)
#define SIO_GPIO_HI_OE_XOR_GPIO_BITS   _u(0x0000ffff)
#define SIO_GPIO_HI_OE_XOR_GPIO_MSB    _u(15)
#define SIO_GPIO_HI_OE_XOR_GPIO_LSB    _u(0)
#define SIO_GPIO_HI_OE_XOR_GPIO_ACCESS "WO"
// =============================================================================
// Register    : SIO_FIFO_ST
// Description : Status register for inter-core FIFOs (mailboxes).
//               There is one FIFO in the core 0 -> core 1 direction, and one
//               core 1 -> core 0. Both are 32 bits wide and 8 words deep.
//               Core 0 can see the read side of the 1->0 FIFO (RX), and the
//               write side of 0->1 FIFO (TX).
//               Core 1 can see the read side of the 0->1 FIFO (RX), and the
//               write side of 1->0 FIFO (TX).
//               The SIO IRQ for each core is the logical OR of the VLD, WOF and
//               ROE fields of its FIFO_ST register.
#define SIO_FIFO_ST_OFFSET _u(0x00000050)
#define SIO_FIFO_ST_BITS   _u(0x0000000f)
#define SIO_FIFO_ST_RESET  _u(0x00000002)
// -----------------------------------------------------------------------------
// Field       : SIO_FIFO_ST_ROE
// Description : Sticky flag indicating the RX FIFO was read when empty. This
//               read was ignored by the FIFO.
#define SIO_FIFO_ST_ROE_RESET  _u(0x0)
#define SIO_FIFO_ST_ROE_BITS   _u(0x00000008)
#define SIO_FIFO_ST_ROE_MSB    _u(3)
#define SIO_FIFO_ST_ROE_LSB    _u(3)
#define SIO_FIFO_ST_ROE_ACCESS "WC"
// -----------------------------------------------------------------------------
// Field       : SIO_FIFO_ST_WOF
// Description : Sticky flag indicating the TX FIFO was written when full. This
//               write was ignored by the FIFO.
#define SIO_FIFO_ST_WOF_RESET  _u(0x0)
#define SIO_FIFO_ST_WOF_BITS   _u(0x00000004)
#define SIO_FIFO_ST_WOF_MSB    _u(2)
#define SIO_FIFO_ST_WOF_LSB    _u(2)
#define SIO_FIFO_ST_WOF_ACCESS "WC"
// -----------------------------------------------------------------------------
// Field       : SIO_FIFO_ST_RDY
// Description : Value is 1 if this core's TX FIFO is not full (i.e. if FIFO_WR
//               is ready for more data)
#define SIO_FIFO_ST_RDY_RESET  _u(0x1)
#define SIO_FIFO_ST_RDY_BITS   _u(0x00000002)
#define SIO_FIFO_ST_RDY_MSB    _u(1)
#define SIO_FIFO_ST_RDY_LSB    _u(1)
#define SIO_FIFO_ST_RDY_ACCESS "RO"
// -----------------------------------------------------------------------------
// Field       : SIO_FIFO_ST_VLD
// Description : Value is 1 if this core's RX FIFO is not empty (i.e. if FIFO_RD
//               is valid)
#define SIO_FIFO_ST_VLD_RESET  _u(0x0)
#define SIO_FIFO_ST_VLD_BITS   _u(0x00000001)
#define SIO_FIFO_ST_VLD_MSB    _u(0)
#define SIO_FIFO_ST_VLD_LSB    _u(0)
#define SIO_FIFO_ST_VLD_ACCESS "RO"
// =============================================================================
// Register    : SIO_FIFO_WR
// Description : Write access to this core's TX FIFO
#define SIO_FIFO_WR_OFFSET _u(0x00000054)
#define SIO_FIFO_WR_BITS   _u(0xffffffff)
#define SIO_FIFO_WR_RESET  _u(0x00000000)
#define SIO_FIFO_WR_MSB    _u(31)
#define SIO_FIFO_WR_LSB    _u(0)
#define SIO_FIFO_WR_ACCESS "WF"
// =============================================================================
// Register    : SIO_FIFO_RD
// Description : Read access to this core's RX FIFO
#define SIO_FIFO_RD_OFFSET _u(0x00000058)
#define SIO_FIFO_RD_BITS   _u(0xffffffff)
#define SIO_FIFO_RD_RESET  "-"
#define SIO_FIFO_RD_MSB    _u(31)
#define SIO_FIFO_RD_LSB    _u(0)
#define SIO_FIFO_RD_ACCESS "RF"
// =============================================================================
// Register    : SIO_SPINLOCK_ST
// Description : Spinlock state
//               A bitmap containing the state of all 32 spinlocks (1=locked).
//               Mainly intended for debugging.
#define SIO_SPINLOCK_ST_OFFSET _u(0x0000005c)
#define SIO_SPINLOCK_ST_BITS   _u(0xffffffff)
#define SIO_SPINLOCK_ST_RESET  _u(0x00000000)
#define SIO_SPINLOCK_ST_MSB    _u(31)
#define SIO_SPINLOCK_ST_LSB    _u(0)
#define SIO_SPINLOCK_ST_ACCESS "RO"
// =============================================================================
// Register    : SIO_INTERP0_ACCUM0
// Description : Read/write access to accumulator 0
#define SIO_INTERP0_ACCUM0_OFFSET _u(0x00000080)
#define SIO_INTERP0_ACCUM0_BITS   _u(0xffffffff)
#define SIO_INTERP0_ACCUM0_RESET  _u(0x00000000)
#define SIO_INTERP0_ACCUM0_MSB    _u(31)
#define SIO_INTERP0_ACCUM0_LSB    _u(0)
#define SIO_INTERP0_ACCUM0_ACCESS "RW"
// =============================================================================
// Register    : SIO_INTERP0_ACCUM1
// Description : Read/write access to accumulator 1
#define SIO_INTERP0_ACCUM1_OFFSET _u(0x00000084)
#define SIO_INTERP0_ACCUM1_BITS   _u(0xffffffff)
#define SIO_INTERP0_ACCUM1_RESET  _u(0x00000000)
#define SIO_INTERP0_ACCUM1_MSB    _u(31)
#define SIO_INTERP0_ACCUM1_LSB    _u(0)
#define SIO_INTERP0_ACCUM1_ACCESS "RW"
// =============================================================================
// Register    : SIO_INTERP0_BASE0
// Description : Read/write access to BASE0 register.
#define SIO_INTERP0_BASE0_OFFSET _u(0x00000088)
#define SIO_INTERP0_BASE0_BITS   _u(0xffffffff)
#define SIO_INTERP0_BASE0_RESET  _u(0x00000000)
#define SIO_INTERP0_BASE0_MSB    _u(31)
#define SIO_INTERP0_BASE0_LSB    _u(0)
#define SIO_INTERP0_BASE0_ACCESS "RW"
// =============================================================================
// Register    : SIO_INTERP0_BASE1
// Description : Read/write access to BASE1 register.
#define SIO_INTERP0_BASE1_OFFSET _u(0x0000008c)
#define SIO_INTERP0_BASE1_BITS   _u(0xffffffff)
#define SIO_INTERP0_BASE1_RESET  _u(0x00000000)
#define SIO_INTERP0_BASE1_MSB    _u(31)
#define SIO_INTERP0_BASE1_LSB    _u(0)
#define SIO_INTERP0_BASE1_ACCESS "RW"
// =============================================================================
// Register    : SIO_INTERP0_BASE2
// Description : Read/write access to BASE2 register.
#define SIO_INTERP0_BASE2_OFFSET _u(0x00000090)
#define SIO_INTERP0_BASE2_BITS   _u(0xffffffff)
#define SIO_INTERP0_BASE2_RESET  _u(0x00000000)
#define SIO_INTERP0_BASE2_MSB    _u(31)
#define SIO_INTERP0_BASE2_LSB    _u(0)
#define SIO_INTERP0_BASE2_ACCESS "RW"
// =============================================================================
// Register    : SIO_INTERP0_POP_LANE0
// Description : Read LANE0 result, and simultaneously write lane results to
//               both accumulators (POP).
#define SIO_INTERP0_POP_LANE0_OFFSET _u(0x00000094)
#define SIO_INTERP0_POP_LANE0_BITS   _u(0xffffffff)
#define SIO_INTERP0_POP_LANE0_RESET  _u(0x00000000)
#define SIO_INTERP0_POP_LANE0_MSB    _u(31)
#define SIO_INTERP0_POP_LANE0_LSB    _u(0)
#define SIO_INTERP0_POP_LANE0_ACCESS "RO"
// =============================================================================
// Register    : SIO_INTERP0_POP_LANE1
// Description : Read LANE1 result, and simultaneously write lane results to
//               both accumulators (POP).
#define SIO_INTERP0_POP_LANE1_OFFSET _u(0x00000098)
#define SIO_INTERP0_POP_LANE1_BITS   _u(0xffffffff)
#define SIO_INTERP0_POP_LANE1_RESET  _u(0x00000000)
#define SIO_INTERP0_POP_LANE1_MSB    _u(31)
#define SIO_INTERP0_POP_LANE1_LSB    _u(0)
#define SIO_INTERP0_POP_LANE1_ACCESS "RO"
// =============================================================================
// Register    : SIO_INTERP0_POP_FULL
// Description : Read FULL result, and simultaneously write lane results to both
//               accumulators (POP).
#define SIO_INTERP0_POP_FULL_OFFSET _u(0x0000009c)
#define SIO_INTERP0_POP_FULL_BITS   _u(0xffffffff)
#define SIO_INTERP0_POP_FULL_RESET  _u(0x00000000)
#define SIO_INTERP0_POP_FULL_MSB    _u(31)
#define SIO_INTERP0_POP_FULL_LSB    _u(0)
#define SIO_INTERP0_POP_FULL_ACCESS "RO"
// =============================================================================
// Register    : SIO_INTERP0_PEEK_LANE0
// Description : Read LANE0 result, without altering any internal state (PEEK).
#define SIO_INTERP0_PEEK_LANE0_OFFSET _u(0x000000a0)
#define SIO_INTERP0_PEEK_LANE0_BITS   _u(0xffffffff)
#define SIO_INTERP0_PEEK_LANE0_RESET  _u(0x00000000)
#define SIO_INTERP0_PEEK_LANE0_MSB    _u(31)
#define SIO_INTERP0_PEEK_LANE0_LSB    _u(0)
#define SIO_INTERP0_PEEK_LANE0_ACCESS "RO"
// =============================================================================
// Register    : SIO_INTERP0_PEEK_LANE1
// Description : Read LANE1 result, without altering any internal state (PEEK).
#define SIO_INTERP0_PEEK_LANE1_OFFSET _u(0x000000a4)
#define SIO_INTERP0_PEEK_LANE1_BITS   _u(0xffffffff)
#define SIO_INTERP0_PEEK_LANE1_RESET  _u(0x00000000)
#define SIO_INTERP0_PEEK_LANE1_MSB    _u(31)
#define SIO_INTERP0_PEEK_LANE1_LSB    _u(0)
#define SIO_INTERP0_PEEK_LANE1_ACCESS "RO"
// =============================================================================
// Register    : SIO_INTERP0_PEEK_FULL
// Description : Read FULL result, without altering any internal state (PEEK).
#define SIO_INTERP0_PEEK_FULL_OFFSET _u(0x000000a8)
#define SIO_INTERP0_PEEK_FULL_BITS   _u(0xffffffff)
#define SIO_INTERP0_PEEK_FULL_RESET  _u(0x00000000)
#define SIO_INTERP0_PEEK_FULL_MSB    _u(31)
#define SIO_INTERP0_PEEK_FULL_LSB    _u(0)
#define SIO_INTERP0_PEEK_FULL_ACCESS "RO"
// =============================================================================
// Register    : SIO_INTERP0_CTRL_LANE0
// Description : Control register for lane 0
#define SIO_INTERP0_CTRL_LANE0_OFFSET _u(0x000000ac)
#define SIO_INTERP0_CTRL_LANE0_BITS   _u(0x03bfffff)
#define SIO_INTERP0_CTRL_LANE0_RESET  _u(0x00000000)
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP0_CTRL_LANE0_OVERF
// Description : Set if either OVERF0 or OVERF1 is set.
#define SIO_INTERP0_CTRL_LANE0_OVERF_RESET  _u(0x0)
#define SIO_INTERP0_CTRL_LANE0_OVERF_BITS   _u(0x02000000)
#define SIO_INTERP0_CTRL_LANE0_OVERF_MSB    _u(25)
#define SIO_INTERP0_CTRL_LANE0_OVERF_LSB    _u(25)
#define SIO_INTERP0_CTRL_LANE0_OVERF_ACCESS "RO"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP0_CTRL_LANE0_OVERF1
// Description : Indicates if any masked-off MSBs in ACCUM1 are set.
#define SIO_INTERP0_CTRL_LANE0_OVERF1_RESET  _u(0x0)
#define SIO_INTERP0_CTRL_LANE0_OVERF1_BITS   _u(0x01000000)
#define SIO_INTERP0_CTRL_LANE0_OVERF1_MSB    _u(24)
#define SIO_INTERP0_CTRL_LANE0_OVERF1_LSB    _u(24)
#define SIO_INTERP0_CTRL_LANE0_OVERF1_ACCESS "RO"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP0_CTRL_LANE0_OVERF0
// Description : Indicates if any masked-off MSBs in ACCUM0 are set.
#define SIO_INTERP0_CTRL_LANE0_OVERF0_RESET  _u(0x0)
#define SIO_INTERP0_CTRL_LANE0_OVERF0_BITS   _u(0x00800000)
#define SIO_INTERP0_CTRL_LANE0_OVERF0_MSB    _u(23)
#define SIO_INTERP0_CTRL_LANE0_OVERF0_LSB    _u(23)
#define SIO_INTERP0_CTRL_LANE0_OVERF0_ACCESS "RO"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP0_CTRL_LANE0_BLEND
// Description : Only present on INTERP0 on each core. If BLEND mode is enabled:
//               - LANE1 result is a linear interpolation between BASE0 and
//               BASE1, controlled
//               by the 8 LSBs of lane 1 shift and mask value (a fractional
//               number between
//               0 and 255/256ths)
//               - LANE0 result does not have BASE0 added (yields only the 8
//               LSBs of lane 1 shift+mask value)
//               - FULL result does not have lane 1 shift+mask value added
//               (BASE2 + lane 0 shift+mask)
//               LANE1 SIGNED flag controls whether the interpolation is signed
//               or unsigned.
#define SIO_INTERP0_CTRL_LANE0_BLEND_RESET  _u(0x0)
#define SIO_INTERP0_CTRL_LANE0_BLEND_BITS   _u(0x00200000)
#define SIO_INTERP0_CTRL_LANE0_BLEND_MSB    _u(21)
#define SIO_INTERP0_CTRL_LANE0_BLEND_LSB    _u(21)
#define SIO_INTERP0_CTRL_LANE0_BLEND_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP0_CTRL_LANE0_FORCE_MSB
// Description : ORed into bits 29:28 of the lane result presented to the
//               processor on the bus.
//               No effect on the internal 32-bit datapath. Handy for using a
//               lane to generate sequence
//               of pointers into flash or SRAM.
#define SIO_INTERP0_CTRL_LANE0_FORCE_MSB_RESET  _u(0x0)
#define SIO_INTERP0_CTRL_LANE0_FORCE_MSB_BITS   _u(0x00180000)
#define SIO_INTERP0_CTRL_LANE0_FORCE_MSB_MSB    _u(20)
#define SIO_INTERP0_CTRL_LANE0_FORCE_MSB_LSB    _u(19)
#define SIO_INTERP0_CTRL_LANE0_FORCE_MSB_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP0_CTRL_LANE0_ADD_RAW
// Description : If 1, mask + shift is bypassed for LANE0 result. This does not
//               affect FULL result.
#define SIO_INTERP0_CTRL_LANE0_ADD_RAW_RESET  _u(0x0)
#define SIO_INTERP0_CTRL_LANE0_ADD_RAW_BITS   _u(0x00040000)
#define SIO_INTERP0_CTRL_LANE0_ADD_RAW_MSB    _u(18)
#define SIO_INTERP0_CTRL_LANE0_ADD_RAW_LSB    _u(18)
#define SIO_INTERP0_CTRL_LANE0_ADD_RAW_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP0_CTRL_LANE0_CROSS_RESULT
// Description : If 1, feed the opposite lane's result into this lane's
//               accumulator on POP.
#define SIO_INTERP0_CTRL_LANE0_CROSS_RESULT_RESET  _u(0x0)
#define SIO_INTERP0_CTRL_LANE0_CROSS_RESULT_BITS   _u(0x00020000)
#define SIO_INTERP0_CTRL_LANE0_CROSS_RESULT_MSB    _u(17)
#define SIO_INTERP0_CTRL_LANE0_CROSS_RESULT_LSB    _u(17)
#define SIO_INTERP0_CTRL_LANE0_CROSS_RESULT_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP0_CTRL_LANE0_CROSS_INPUT
// Description : If 1, feed the opposite lane's accumulator into this lane's
//               shift + mask hardware.
//               Takes effect even if ADD_RAW is set (the CROSS_INPUT mux is
//               before the shift+mask bypass)
#define SIO_INTERP0_CTRL_LANE0_CROSS_INPUT_RESET  _u(0x0)
#define SIO_INTERP0_CTRL_LANE0_CROSS_INPUT_BITS   _u(0x00010000)
#define SIO_INTERP0_CTRL_LANE0_CROSS_INPUT_MSB    _u(16)
#define SIO_INTERP0_CTRL_LANE0_CROSS_INPUT_LSB    _u(16)
#define SIO_INTERP0_CTRL_LANE0_CROSS_INPUT_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP0_CTRL_LANE0_SIGNED
// Description : If SIGNED is set, the shifted and masked accumulator value is
//               sign-extended to 32 bits
//               before adding to BASE0, and LANE0 PEEK/POP appear extended to
//               32 bits when read by processor.
#define SIO_INTERP0_CTRL_LANE0_SIGNED_RESET  _u(0x0)
#define SIO_INTERP0_CTRL_LANE0_SIGNED_BITS   _u(0x00008000)
#define SIO_INTERP0_CTRL_LANE0_SIGNED_MSB    _u(15)
#define SIO_INTERP0_CTRL_LANE0_SIGNED_LSB    _u(15)
#define SIO_INTERP0_CTRL_LANE0_SIGNED_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP0_CTRL_LANE0_MASK_MSB
// Description : The most-significant bit allowed to pass by the mask
//               (inclusive)
//               Setting MSB < LSB may cause chip to turn inside-out
#define SIO_INTERP0_CTRL_LANE0_MASK_MSB_RESET  _u(0x00)
#define SIO_INTERP0_CTRL_LANE0_MASK_MSB_BITS   _u(0x00007c00)
#define SIO_INTERP0_CTRL_LANE0_MASK_MSB_MSB    _u(14)
#define SIO_INTERP0_CTRL_LANE0_MASK_MSB_LSB    _u(10)
#define SIO_INTERP0_CTRL_LANE0_MASK_MSB_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP0_CTRL_LANE0_MASK_LSB
// Description : The least-significant bit allowed to pass by the mask
//               (inclusive)
#define SIO_INTERP0_CTRL_LANE0_MASK_LSB_RESET  _u(0x00)
#define SIO_INTERP0_CTRL_LANE0_MASK_LSB_BITS   _u(0x000003e0)
#define SIO_INTERP0_CTRL_LANE0_MASK_LSB_MSB    _u(9)
#define SIO_INTERP0_CTRL_LANE0_MASK_LSB_LSB    _u(5)
#define SIO_INTERP0_CTRL_LANE0_MASK_LSB_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP0_CTRL_LANE0_SHIFT
// Description : Right-rotate applied to accumulator before masking. By
//               appropriately configuring the masks, left and right shifts can
//               be synthesised.
#define SIO_INTERP0_CTRL_LANE0_SHIFT_RESET  _u(0x00)
#define SIO_INTERP0_CTRL_LANE0_SHIFT_BITS   _u(0x0000001f)
#define SIO_INTERP0_CTRL_LANE0_SHIFT_MSB    _u(4)
#define SIO_INTERP0_CTRL_LANE0_SHIFT_LSB    _u(0)
#define SIO_INTERP0_CTRL_LANE0_SHIFT_ACCESS "RW"
// =============================================================================
// Register    : SIO_INTERP0_CTRL_LANE1
// Description : Control register for lane 1
#define SIO_INTERP0_CTRL_LANE1_OFFSET _u(0x000000b0)
#define SIO_INTERP0_CTRL_LANE1_BITS   _u(0x001fffff)
#define SIO_INTERP0_CTRL_LANE1_RESET  _u(0x00000000)
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP0_CTRL_LANE1_FORCE_MSB
// Description : ORed into bits 29:28 of the lane result presented to the
//               processor on the bus.
//               No effect on the internal 32-bit datapath. Handy for using a
//               lane to generate sequence
//               of pointers into flash or SRAM.
#define SIO_INTERP0_CTRL_LANE1_FORCE_MSB_RESET  _u(0x0)
#define SIO_INTERP0_CTRL_LANE1_FORCE_MSB_BITS   _u(0x00180000)
#define SIO_INTERP0_CTRL_LANE1_FORCE_MSB_MSB    _u(20)
#define SIO_INTERP0_CTRL_LANE1_FORCE_MSB_LSB    _u(19)
#define SIO_INTERP0_CTRL_LANE1_FORCE_MSB_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP0_CTRL_LANE1_ADD_RAW
// Description : If 1, mask + shift is bypassed for LANE1 result. This does not
//               affect FULL result.
#define SIO_INTERP0_CTRL_LANE1_ADD_RAW_RESET  _u(0x0)
#define SIO_INTERP0_CTRL_LANE1_ADD_RAW_BITS   _u(0x00040000)
#define SIO_INTERP0_CTRL_LANE1_ADD_RAW_MSB    _u(18)
#define SIO_INTERP0_CTRL_LANE1_ADD_RAW_LSB    _u(18)
#define SIO_INTERP0_CTRL_LANE1_ADD_RAW_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP0_CTRL_LANE1_CROSS_RESULT
// Description : If 1, feed the opposite lane's result into this lane's
//               accumulator on POP.
#define SIO_INTERP0_CTRL_LANE1_CROSS_RESULT_RESET  _u(0x0)
#define SIO_INTERP0_CTRL_LANE1_CROSS_RESULT_BITS   _u(0x00020000)
#define SIO_INTERP0_CTRL_LANE1_CROSS_RESULT_MSB    _u(17)
#define SIO_INTERP0_CTRL_LANE1_CROSS_RESULT_LSB    _u(17)
#define SIO_INTERP0_CTRL_LANE1_CROSS_RESULT_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP0_CTRL_LANE1_CROSS_INPUT
// Description : If 1, feed the opposite lane's accumulator into this lane's
//               shift + mask hardware.
//               Takes effect even if ADD_RAW is set (the CROSS_INPUT mux is
//               before the shift+mask bypass)
#define SIO_INTERP0_CTRL_LANE1_CROSS_INPUT_RESET  _u(0x0)
#define SIO_INTERP0_CTRL_LANE1_CROSS_INPUT_BITS   _u(0x00010000)
#define SIO_INTERP0_CTRL_LANE1_CROSS_INPUT_MSB    _u(16)
#define SIO_INTERP0_CTRL_LANE1_CROSS_INPUT_LSB    _u(16)
#define SIO_INTERP0_CTRL_LANE1_CROSS_INPUT_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP0_CTRL_LANE1_SIGNED
// Description : If SIGNED is set, the shifted and masked accumulator value is
//               sign-extended to 32 bits
//               before adding to BASE1, and LANE1 PEEK/POP appear extended to
//               32 bits when read by processor.
#define SIO_INTERP0_CTRL_LANE1_SIGNED_RESET  _u(0x0)
#define SIO_INTERP0_CTRL_LANE1_SIGNED_BITS   _u(0x00008000)
#define SIO_INTERP0_CTRL_LANE1_SIGNED_MSB    _u(15)
#define SIO_INTERP0_CTRL_LANE1_SIGNED_LSB    _u(15)
#define SIO_INTERP0_CTRL_LANE1_SIGNED_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP0_CTRL_LANE1_MASK_MSB
// Description : The most-significant bit allowed to pass by the mask
//               (inclusive)
//               Setting MSB < LSB may cause chip to turn inside-out
#define SIO_INTERP0_CTRL_LANE1_MASK_MSB_RESET  _u(0x00)
#define SIO_INTERP0_CTRL_LANE1_MASK_MSB_BITS   _u(0x00007c00)
#define SIO_INTERP0_CTRL_LANE1_MASK_MSB_MSB    _u(14)
#define SIO_INTERP0_CTRL_LANE1_MASK_MSB_LSB    _u(10)
#define SIO_INTERP0_CTRL_LANE1_MASK_MSB_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP0_CTRL_LANE1_MASK_LSB
// Description : The least-significant bit allowed to pass by the mask
//               (inclusive)
#define SIO_INTERP0_CTRL_LANE1_MASK_LSB_RESET  _u(0x00)
#define SIO_INTERP0_CTRL_LANE1_MASK_LSB_BITS   _u(0x000003e0)
#define SIO_INTERP0_CTRL_LANE1_MASK_LSB_MSB    _u(9)
#define SIO_INTERP0_CTRL_LANE1_MASK_LSB_LSB    _u(5)
#define SIO_INTERP0_CTRL_LANE1_MASK_LSB_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP0_CTRL_LANE1_SHIFT
// Description : Right-rotate applied to accumulator before masking. By
//               appropriately configuring the masks, left and right shifts can
//               be synthesised.
#define SIO_INTERP0_CTRL_LANE1_SHIFT_RESET  _u(0x00)
#define SIO_INTERP0_CTRL_LANE1_SHIFT_BITS   _u(0x0000001f)
#define SIO_INTERP0_CTRL_LANE1_SHIFT_MSB    _u(4)
#define SIO_INTERP0_CTRL_LANE1_SHIFT_LSB    _u(0)
#define SIO_INTERP0_CTRL_LANE1_SHIFT_ACCESS "RW"
// =============================================================================
// Register    : SIO_INTERP0_ACCUM0_ADD
// Description : Values written here are atomically added to ACCUM0
//               Reading yields lane 0's raw shift and mask value (BASE0 not
//               added).
#define SIO_INTERP0_ACCUM0_ADD_OFFSET _u(0x000000b4)
#define SIO_INTERP0_ACCUM0_ADD_BITS   _u(0x00ffffff)
#define SIO_INTERP0_ACCUM0_ADD_RESET  _u(0x00000000)
#define SIO_INTERP0_ACCUM0_ADD_MSB    _u(23)
#define SIO_INTERP0_ACCUM0_ADD_LSB    _u(0)
#define SIO_INTERP0_ACCUM0_ADD_ACCESS "RW"
// =============================================================================
// Register    : SIO_INTERP0_ACCUM1_ADD
// Description : Values written here are atomically added to ACCUM1
//               Reading yields lane 1's raw shift and mask value (BASE1 not
//               added).
#define SIO_INTERP0_ACCUM1_ADD_OFFSET _u(0x000000b8)
#define SIO_INTERP0_ACCUM1_ADD_BITS   _u(0x00ffffff)
#define SIO_INTERP0_ACCUM1_ADD_RESET  _u(0x00000000)
#define SIO_INTERP0_ACCUM1_ADD_MSB    _u(23)
#define SIO_INTERP0_ACCUM1_ADD_LSB    _u(0)
#define SIO_INTERP0_ACCUM1_ADD_ACCESS "RW"
// =============================================================================
// Register    : SIO_INTERP0_BASE_1AND0
// Description : On write, the lower 16 bits go to BASE0, upper bits to BASE1
//               simultaneously.
//               Each half is sign-extended to 32 bits if that lane's SIGNED
//               flag is set.
#define SIO_INTERP0_BASE_1AND0_OFFSET _u(0x000000bc)
#define SIO_INTERP0_BASE_1AND0_BITS   _u(0xffffffff)
#define SIO_INTERP0_BASE_1AND0_RESET  _u(0x00000000)
#define SIO_INTERP0_BASE_1AND0_MSB    _u(31)
#define SIO_INTERP0_BASE_1AND0_LSB    _u(0)
#define SIO_INTERP0_BASE_1AND0_ACCESS "WO"
// =============================================================================
// Register    : SIO_INTERP1_ACCUM0
// Description : Read/write access to accumulator 0
#define SIO_INTERP1_ACCUM0_OFFSET _u(0x000000c0)
#define SIO_INTERP1_ACCUM0_BITS   _u(0xffffffff)
#define SIO_INTERP1_ACCUM0_RESET  _u(0x00000000)
#define SIO_INTERP1_ACCUM0_MSB    _u(31)
#define SIO_INTERP1_ACCUM0_LSB    _u(0)
#define SIO_INTERP1_ACCUM0_ACCESS "RW"
// =============================================================================
// Register    : SIO_INTERP1_ACCUM1
// Description : Read/write access to accumulator 1
#define SIO_INTERP1_ACCUM1_OFFSET _u(0x000000c4)
#define SIO_INTERP1_ACCUM1_BITS   _u(0xffffffff)
#define SIO_INTERP1_ACCUM1_RESET  _u(0x00000000)
#define SIO_INTERP1_ACCUM1_MSB    _u(31)
#define SIO_INTERP1_ACCUM1_LSB    _u(0)
#define SIO_INTERP1_ACCUM1_ACCESS "RW"
// =============================================================================
// Register    : SIO_INTERP1_BASE0
// Description : Read/write access to BASE0 register.
#define SIO_INTERP1_BASE0_OFFSET _u(0x000000c8)
#define SIO_INTERP1_BASE0_BITS   _u(0xffffffff)
#define SIO_INTERP1_BASE0_RESET  _u(0x00000000)
#define SIO_INTERP1_BASE0_MSB    _u(31)
#define SIO_INTERP1_BASE0_LSB    _u(0)
#define SIO_INTERP1_BASE0_ACCESS "RW"
// =============================================================================
// Register    : SIO_INTERP1_BASE1
// Description : Read/write access to BASE1 register.
#define SIO_INTERP1_BASE1_OFFSET _u(0x000000cc)
#define SIO_INTERP1_BASE1_BITS   _u(0xffffffff)
#define SIO_INTERP1_BASE1_RESET  _u(0x00000000)
#define SIO_INTERP1_BASE1_MSB    _u(31)
#define SIO_INTERP1_BASE1_LSB    _u(0)
#define SIO_INTERP1_BASE1_ACCESS "RW"
// =============================================================================
// Register    : SIO_INTERP1_BASE2
// Description : Read/write access to BASE2 register.
#define SIO_INTERP1_BASE2_OFFSET _u(0x000000d0)
#define SIO_INTERP1_BASE2_BITS   _u(0xffffffff)
#define SIO_INTERP1_BASE2_RESET  _u(0x00000000)
#define SIO_INTERP1_BASE2_MSB    _u(31)
#define SIO_INTERP1_BASE2_LSB    _u(0)
#define SIO_INTERP1_BASE2_ACCESS "RW"
// =============================================================================
// Register    : SIO_INTERP1_POP_LANE0
// Description : Read LANE0 result, and simultaneously write lane results to
//               both accumulators (POP).
#define SIO_INTERP1_POP_LANE0_OFFSET _u(0x000000d4)
#define SIO_INTERP1_POP_LANE0_BITS   _u(0xffffffff)
#define SIO_INTERP1_POP_LANE0_RESET  _u(0x00000000)
#define SIO_INTERP1_POP_LANE0_MSB    _u(31)
#define SIO_INTERP1_POP_LANE0_LSB    _u(0)
#define SIO_INTERP1_POP_LANE0_ACCESS "RO"
// =============================================================================
// Register    : SIO_INTERP1_POP_LANE1
// Description : Read LANE1 result, and simultaneously write lane results to
//               both accumulators (POP).
#define SIO_INTERP1_POP_LANE1_OFFSET _u(0x000000d8)
#define SIO_INTERP1_POP_LANE1_BITS   _u(0xffffffff)
#define SIO_INTERP1_POP_LANE1_RESET  _u(0x00000000)
#define SIO_INTERP1_POP_LANE1_MSB    _u(31)
#define SIO_INTERP1_POP_LANE1_LSB    _u(0)
#define SIO_INTERP1_POP_LANE1_ACCESS "RO"
// =============================================================================
// Register    : SIO_INTERP1_POP_FULL
// Description : Read FULL result, and simultaneously write lane results to both
//               accumulators (POP).
#define SIO_INTERP1_POP_FULL_OFFSET _u(0x000000dc)
#define SIO_INTERP1_POP_FULL_BITS   _u(0xffffffff)
#define SIO_INTERP1_POP_FULL_RESET  _u(0x00000000)
#define SIO_INTERP1_POP_FULL_MSB    _u(31)
#define SIO_INTERP1_POP_FULL_LSB    _u(0)
#define SIO_INTERP1_POP_FULL_ACCESS "RO"
// =============================================================================
// Register    : SIO_INTERP1_PEEK_LANE0
// Description : Read LANE0 result, without altering any internal state (PEEK).
#define SIO_INTERP1_PEEK_LANE0_OFFSET _u(0x000000e0)
#define SIO_INTERP1_PEEK_LANE0_BITS   _u(0xffffffff)
#define SIO_INTERP1_PEEK_LANE0_RESET  _u(0x00000000)
#define SIO_INTERP1_PEEK_LANE0_MSB    _u(31)
#define SIO_INTERP1_PEEK_LANE0_LSB    _u(0)
#define SIO_INTERP1_PEEK_LANE0_ACCESS "RO"
// =============================================================================
// Register    : SIO_INTERP1_PEEK_LANE1
// Description : Read LANE1 result, without altering any internal state (PEEK).
#define SIO_INTERP1_PEEK_LANE1_OFFSET _u(0x000000e4)
#define SIO_INTERP1_PEEK_LANE1_BITS   _u(0xffffffff)
#define SIO_INTERP1_PEEK_LANE1_RESET  _u(0x00000000)
#define SIO_INTERP1_PEEK_LANE1_MSB    _u(31)
#define SIO_INTERP1_PEEK_LANE1_LSB    _u(0)
#define SIO_INTERP1_PEEK_LANE1_ACCESS "RO"
// =============================================================================
// Register    : SIO_INTERP1_PEEK_FULL
// Description : Read FULL result, without altering any internal state (PEEK).
#define SIO_INTERP1_PEEK_FULL_OFFSET _u(0x000000e8)
#define SIO_INTERP1_PEEK_FULL_BITS   _u(0xffffffff)
#define SIO_INTERP1_PEEK_FULL_RESET  _u(0x00000000)
#define SIO_INTERP1_PEEK_FULL_MSB    _u(31)
#define SIO_INTERP1_PEEK_FULL_LSB    _u(0)
#define SIO_INTERP1_PEEK_FULL_ACCESS "RO"
// =============================================================================
// Register    : SIO_INTERP1_CTRL_LANE0
// Description : Control register for lane 0
#define SIO_INTERP1_CTRL_LANE0_OFFSET _u(0x000000ec)
#define SIO_INTERP1_CTRL_LANE0_BITS   _u(0x03dfffff)
#define SIO_INTERP1_CTRL_LANE0_RESET  _u(0x00000000)
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP1_CTRL_LANE0_OVERF
// Description : Set if either OVERF0 or OVERF1 is set.
#define SIO_INTERP1_CTRL_LANE0_OVERF_RESET  _u(0x0)
#define SIO_INTERP1_CTRL_LANE0_OVERF_BITS   _u(0x02000000)
#define SIO_INTERP1_CTRL_LANE0_OVERF_MSB    _u(25)
#define SIO_INTERP1_CTRL_LANE0_OVERF_LSB    _u(25)
#define SIO_INTERP1_CTRL_LANE0_OVERF_ACCESS "RO"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP1_CTRL_LANE0_OVERF1
// Description : Indicates if any masked-off MSBs in ACCUM1 are set.
#define SIO_INTERP1_CTRL_LANE0_OVERF1_RESET  _u(0x0)
#define SIO_INTERP1_CTRL_LANE0_OVERF1_BITS   _u(0x01000000)
#define SIO_INTERP1_CTRL_LANE0_OVERF1_MSB    _u(24)
#define SIO_INTERP1_CTRL_LANE0_OVERF1_LSB    _u(24)
#define SIO_INTERP1_CTRL_LANE0_OVERF1_ACCESS "RO"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP1_CTRL_LANE0_OVERF0
// Description : Indicates if any masked-off MSBs in ACCUM0 are set.
#define SIO_INTERP1_CTRL_LANE0_OVERF0_RESET  _u(0x0)
#define SIO_INTERP1_CTRL_LANE0_OVERF0_BITS   _u(0x00800000)
#define SIO_INTERP1_CTRL_LANE0_OVERF0_MSB    _u(23)
#define SIO_INTERP1_CTRL_LANE0_OVERF0_LSB    _u(23)
#define SIO_INTERP1_CTRL_LANE0_OVERF0_ACCESS "RO"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP1_CTRL_LANE0_CLAMP
// Description : Only present on INTERP1 on each core. If CLAMP mode is enabled:
//               - LANE0 result is shifted and masked ACCUM0, clamped by a lower
//               bound of
//               BASE0 and an upper bound of BASE1.
//               - Signedness of these comparisons is determined by
//               LANE0_CTRL_SIGNED
#define SIO_INTERP1_CTRL_LANE0_CLAMP_RESET  _u(0x0)
#define SIO_INTERP1_CTRL_LANE0_CLAMP_BITS   _u(0x00400000)
#define SIO_INTERP1_CTRL_LANE0_CLAMP_MSB    _u(22)
#define SIO_INTERP1_CTRL_LANE0_CLAMP_LSB    _u(22)
#define SIO_INTERP1_CTRL_LANE0_CLAMP_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP1_CTRL_LANE0_FORCE_MSB
// Description : ORed into bits 29:28 of the lane result presented to the
//               processor on the bus.
//               No effect on the internal 32-bit datapath. Handy for using a
//               lane to generate sequence
//               of pointers into flash or SRAM.
#define SIO_INTERP1_CTRL_LANE0_FORCE_MSB_RESET  _u(0x0)
#define SIO_INTERP1_CTRL_LANE0_FORCE_MSB_BITS   _u(0x00180000)
#define SIO_INTERP1_CTRL_LANE0_FORCE_MSB_MSB    _u(20)
#define SIO_INTERP1_CTRL_LANE0_FORCE_MSB_LSB    _u(19)
#define SIO_INTERP1_CTRL_LANE0_FORCE_MSB_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP1_CTRL_LANE0_ADD_RAW
// Description : If 1, mask + shift is bypassed for LANE0 result. This does not
//               affect FULL result.
#define SIO_INTERP1_CTRL_LANE0_ADD_RAW_RESET  _u(0x0)
#define SIO_INTERP1_CTRL_LANE0_ADD_RAW_BITS   _u(0x00040000)
#define SIO_INTERP1_CTRL_LANE0_ADD_RAW_MSB    _u(18)
#define SIO_INTERP1_CTRL_LANE0_ADD_RAW_LSB    _u(18)
#define SIO_INTERP1_CTRL_LANE0_ADD_RAW_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP1_CTRL_LANE0_CROSS_RESULT
// Description : If 1, feed the opposite lane's result into this lane's
//               accumulator on POP.
#define SIO_INTERP1_CTRL_LANE0_CROSS_RESULT_RESET  _u(0x0)
#define SIO_INTERP1_CTRL_LANE0_CROSS_RESULT_BITS   _u(0x00020000)
#define SIO_INTERP1_CTRL_LANE0_CROSS_RESULT_MSB    _u(17)
#define SIO_INTERP1_CTRL_LANE0_CROSS_RESULT_LSB    _u(17)
#define SIO_INTERP1_CTRL_LANE0_CROSS_RESULT_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP1_CTRL_LANE0_CROSS_INPUT
// Description : If 1, feed the opposite lane's accumulator into this lane's
//               shift + mask hardware.
//               Takes effect even if ADD_RAW is set (the CROSS_INPUT mux is
//               before the shift+mask bypass)
#define SIO_INTERP1_CTRL_LANE0_CROSS_INPUT_RESET  _u(0x0)
#define SIO_INTERP1_CTRL_LANE0_CROSS_INPUT_BITS   _u(0x00010000)
#define SIO_INTERP1_CTRL_LANE0_CROSS_INPUT_MSB    _u(16)
#define SIO_INTERP1_CTRL_LANE0_CROSS_INPUT_LSB    _u(16)
#define SIO_INTERP1_CTRL_LANE0_CROSS_INPUT_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP1_CTRL_LANE0_SIGNED
// Description : If SIGNED is set, the shifted and masked accumulator value is
//               sign-extended to 32 bits
//               before adding to BASE0, and LANE0 PEEK/POP appear extended to
//               32 bits when read by processor.
#define SIO_INTERP1_CTRL_LANE0_SIGNED_RESET  _u(0x0)
#define SIO_INTERP1_CTRL_LANE0_SIGNED_BITS   _u(0x00008000)
#define SIO_INTERP1_CTRL_LANE0_SIGNED_MSB    _u(15)
#define SIO_INTERP1_CTRL_LANE0_SIGNED_LSB    _u(15)
#define SIO_INTERP1_CTRL_LANE0_SIGNED_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP1_CTRL_LANE0_MASK_MSB
// Description : The most-significant bit allowed to pass by the mask
//               (inclusive)
//               Setting MSB < LSB may cause chip to turn inside-out
#define SIO_INTERP1_CTRL_LANE0_MASK_MSB_RESET  _u(0x00)
#define SIO_INTERP1_CTRL_LANE0_MASK_MSB_BITS   _u(0x00007c00)
#define SIO_INTERP1_CTRL_LANE0_MASK_MSB_MSB    _u(14)
#define SIO_INTERP1_CTRL_LANE0_MASK_MSB_LSB    _u(10)
#define SIO_INTERP1_CTRL_LANE0_MASK_MSB_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP1_CTRL_LANE0_MASK_LSB
// Description : The least-significant bit allowed to pass by the mask
//               (inclusive)
#define SIO_INTERP1_CTRL_LANE0_MASK_LSB_RESET  _u(0x00)
#define SIO_INTERP1_CTRL_LANE0_MASK_LSB_BITS   _u(0x000003e0)
#define SIO_INTERP1_CTRL_LANE0_MASK_LSB_MSB    _u(9)
#define SIO_INTERP1_CTRL_LANE0_MASK_LSB_LSB    _u(5)
#define SIO_INTERP1_CTRL_LANE0_MASK_LSB_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP1_CTRL_LANE0_SHIFT
// Description : Right-rotate applied to accumulator before masking. By
//               appropriately configuring the masks, left and right shifts can
//               be synthesised.
#define SIO_INTERP1_CTRL_LANE0_SHIFT_RESET  _u(0x00)
#define SIO_INTERP1_CTRL_LANE0_SHIFT_BITS   _u(0x0000001f)
#define SIO_INTERP1_CTRL_LANE0_SHIFT_MSB    _u(4)
#define SIO_INTERP1_CTRL_LANE0_SHIFT_LSB    _u(0)
#define SIO_INTERP1_CTRL_LANE0_SHIFT_ACCESS "RW"
// =============================================================================
// Register    : SIO_INTERP1_CTRL_LANE1
// Description : Control register for lane 1
#define SIO_INTERP1_CTRL_LANE1_OFFSET _u(0x000000f0)
#define SIO_INTERP1_CTRL_LANE1_BITS   _u(0x001fffff)
#define SIO_INTERP1_CTRL_LANE1_RESET  _u(0x00000000)
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP1_CTRL_LANE1_FORCE_MSB
// Description : ORed into bits 29:28 of the lane result presented to the
//               processor on the bus.
//               No effect on the internal 32-bit datapath. Handy for using a
//               lane to generate sequence
//               of pointers into flash or SRAM.
#define SIO_INTERP1_CTRL_LANE1_FORCE_MSB_RESET  _u(0x0)
#define SIO_INTERP1_CTRL_LANE1_FORCE_MSB_BITS   _u(0x00180000)
#define SIO_INTERP1_CTRL_LANE1_FORCE_MSB_MSB    _u(20)
#define SIO_INTERP1_CTRL_LANE1_FORCE_MSB_LSB    _u(19)
#define SIO_INTERP1_CTRL_LANE1_FORCE_MSB_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP1_CTRL_LANE1_ADD_RAW
// Description : If 1, mask + shift is bypassed for LANE1 result. This does not
//               affect FULL result.
#define SIO_INTERP1_CTRL_LANE1_ADD_RAW_RESET  _u(0x0)
#define SIO_INTERP1_CTRL_LANE1_ADD_RAW_BITS   _u(0x00040000)
#define SIO_INTERP1_CTRL_LANE1_ADD_RAW_MSB    _u(18)
#define SIO_INTERP1_CTRL_LANE1_ADD_RAW_LSB    _u(18)
#define SIO_INTERP1_CTRL_LANE1_ADD_RAW_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP1_CTRL_LANE1_CROSS_RESULT
// Description : If 1, feed the opposite lane's result into this lane's
//               accumulator on POP.
#define SIO_INTERP1_CTRL_LANE1_CROSS_RESULT_RESET  _u(0x0)
#define SIO_INTERP1_CTRL_LANE1_CROSS_RESULT_BITS   _u(0x00020000)
#define SIO_INTERP1_CTRL_LANE1_CROSS_RESULT_MSB    _u(17)
#define SIO_INTERP1_CTRL_LANE1_CROSS_RESULT_LSB    _u(17)
#define SIO_INTERP1_CTRL_LANE1_CROSS_RESULT_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP1_CTRL_LANE1_CROSS_INPUT
// Description : If 1, feed the opposite lane's accumulator into this lane's
//               shift + mask hardware.
//               Takes effect even if ADD_RAW is set (the CROSS_INPUT mux is
//               before the shift+mask bypass)
#define SIO_INTERP1_CTRL_LANE1_CROSS_INPUT_RESET  _u(0x0)
#define SIO_INTERP1_CTRL_LANE1_CROSS_INPUT_BITS   _u(0x00010000)
#define SIO_INTERP1_CTRL_LANE1_CROSS_INPUT_MSB    _u(16)
#define SIO_INTERP1_CTRL_LANE1_CROSS_INPUT_LSB    _u(16)
#define SIO_INTERP1_CTRL_LANE1_CROSS_INPUT_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP1_CTRL_LANE1_SIGNED
// Description : If SIGNED is set, the shifted and masked accumulator value is
//               sign-extended to 32 bits
//               before adding to BASE1, and LANE1 PEEK/POP appear extended to
//               32 bits when read by processor.
#define SIO_INTERP1_CTRL_LANE1_SIGNED_RESET  _u(0x0)
#define SIO_INTERP1_CTRL_LANE1_SIGNED_BITS   _u(0x00008000)
#define SIO_INTERP1_CTRL_LANE1_SIGNED_MSB    _u(15)
#define SIO_INTERP1_CTRL_LANE1_SIGNED_LSB    _u(15)
#define SIO_INTERP1_CTRL_LANE1_SIGNED_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP1_CTRL_LANE1_MASK_MSB
// Description : The most-significant bit allowed to pass by the mask
//               (inclusive)
//               Setting MSB < LSB may cause chip to turn inside-out
#define SIO_INTERP1_CTRL_LANE1_MASK_MSB_RESET  _u(0x00)
#define SIO_INTERP1_CTRL_LANE1_MASK_MSB_BITS   _u(0x00007c00)
#define SIO_INTERP1_CTRL_LANE1_MASK_MSB_MSB    _u(14)
#define SIO_INTERP1_CTRL_LANE1_MASK_MSB_LSB    _u(10)
#define SIO_INTERP1_CTRL_LANE1_MASK_MSB_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP1_CTRL_LANE1_MASK_LSB
// Description : The least-significant bit allowed to pass by the mask
//               (inclusive)
#define SIO_INTERP1_CTRL_LANE1_MASK_LSB_RESET  _u(0x00)
#define SIO_INTERP1_CTRL_LANE1_MASK_LSB_BITS   _u(0x000003e0)
#define SIO_INTERP1_CTRL_LANE1_MASK_LSB_MSB    _u(9)
#define SIO_INTERP1_CTRL_LANE1_MASK_LSB_LSB    _u(5)
#define SIO_INTERP1_CTRL_LANE1_MASK_LSB_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_INTERP1_CTRL_LANE1_SHIFT
// Description : Right-rotate applied to accumulator before masking. By
//               appropriately configuring the masks, left and right shifts can
//               be synthesised.
#define SIO_INTERP1_CTRL_LANE1_SHIFT_RESET  _u(0x00)
#define SIO_INTERP1_CTRL_LANE1_SHIFT_BITS   _u(0x0000001f)
#define SIO_INTERP1_CTRL_LANE1_SHIFT_MSB    _u(4)
#define SIO_INTERP1_CTRL_LANE1_SHIFT_LSB    _u(0)
#define SIO_INTERP1_CTRL_LANE1_SHIFT_ACCESS "RW"
// =============================================================================
// Register    : SIO_INTERP1_ACCUM0_ADD
// Description : Values written here are atomically added to ACCUM0
//               Reading yields lane 0's raw shift and mask value (BASE0 not
//               added).
#define SIO_INTERP1_ACCUM0_ADD_OFFSET _u(0x000000f4)
#define SIO_INTERP1_ACCUM0_ADD_BITS   _u(0x00ffffff)
#define SIO_INTERP1_ACCUM0_ADD_RESET  _u(0x00000000)
#define SIO_INTERP1_ACCUM0_ADD_MSB    _u(23)
#define SIO_INTERP1_ACCUM0_ADD_LSB    _u(0)
#define SIO_INTERP1_ACCUM0_ADD_ACCESS "RW"
// =============================================================================
// Register    : SIO_INTERP1_ACCUM1_ADD
// Description : Values written here are atomically added to ACCUM1
//               Reading yields lane 1's raw shift and mask value (BASE1 not
//               added).
#define SIO_INTERP1_ACCUM1_ADD_OFFSET _u(0x000000f8)
#define SIO_INTERP1_ACCUM1_ADD_BITS   _u(0x00ffffff)
#define SIO_INTERP1_ACCUM1_ADD_RESET  _u(0x00000000)
#define SIO_INTERP1_ACCUM1_ADD_MSB    _u(23)
#define SIO_INTERP1_ACCUM1_ADD_LSB    _u(0)
#define SIO_INTERP1_ACCUM1_ADD_ACCESS "RW"
// =============================================================================
// Register    : SIO_INTERP1_BASE_1AND0
// Description : On write, the lower 16 bits go to BASE0, upper bits to BASE1
//               simultaneously.
//               Each half is sign-extended to 32 bits if that lane's SIGNED
//               flag is set.
#define SIO_INTERP1_BASE_1AND0_OFFSET _u(0x000000fc)
#define SIO_INTERP1_BASE_1AND0_BITS   _u(0xffffffff)
#define SIO_INTERP1_BASE_1AND0_RESET  _u(0x00000000)
#define SIO_INTERP1_BASE_1AND0_MSB    _u(31)
#define SIO_INTERP1_BASE_1AND0_LSB    _u(0)
#define SIO_INTERP1_BASE_1AND0_ACCESS "WO"
// =============================================================================
// Register    : SIO_SPINLOCK0
// Description : Reading from a spinlock address will:
//               - Return 0 if lock is already locked
//               - Otherwise return nonzero, and simultaneously claim the lock
//
//               Writing (any value) releases the lock.
//               If core 0 and core 1 attempt to claim the same lock
//               simultaneously, core 0 wins.
//               The value returned on success is 0x1 << lock number.
#define SIO_SPINLOCK0_OFFSET _u(0x00000100)
#define SIO_SPINLOCK0_BITS   _u(0xffffffff)
#define SIO_SPINLOCK0_RESET  _u(0x00000000)
#define SIO_SPINLOCK0_MSB    _u(31)
#define SIO_SPINLOCK0_LSB    _u(0)
#define SIO_SPINLOCK0_ACCESS "RW"
// =============================================================================
// Register    : SIO_SPINLOCK1
// Description : Reading from a spinlock address will:
//               - Return 0 if lock is already locked
//               - Otherwise return nonzero, and simultaneously claim the lock
//
//               Writing (any value) releases the lock.
//               If core 0 and core 1 attempt to claim the same lock
//               simultaneously, core 0 wins.
//               The value returned on success is 0x1 << lock number.
#define SIO_SPINLOCK1_OFFSET _u(0x00000104)
#define SIO_SPINLOCK1_BITS   _u(0xffffffff)
#define SIO_SPINLOCK1_RESET  _u(0x00000000)
#define SIO_SPINLOCK1_MSB    _u(31)
#define SIO_SPINLOCK1_LSB    _u(0)
#define SIO_SPINLOCK1_ACCESS "RW"
// =============================================================================
// Register    : SIO_SPINLOCK2
// Description : Reading from a spinlock address will:
//               - Return 0 if lock is already locked
//               - Otherwise return nonzero, and simultaneously claim the lock
//
//               Writing (any value) releases the lock.
//               If core 0 and core 1 attempt to claim the same lock
//               simultaneously, core 0 wins.
//               The value returned on success is 0x1 << lock number.
#define SIO_SPINLOCK2_OFFSET _u(0x00000108)
#define SIO_SPINLOCK2_BITS   _u(0xffffffff)
#define SIO_SPINLOCK2_RESET  _u(0x00000000)
#define SIO_SPINLOCK2_MSB    _u(31)
#define SIO_SPINLOCK2_LSB    _u(0)
#define SIO_SPINLOCK2_ACCESS "RW"
// =============================================================================
// Register    : SIO_SPINLOCK3
// Description : Reading from a spinlock address will:
//               - Return 0 if lock is already locked
//               - Otherwise return nonzero, and simultaneously claim the lock
//
//               Writing (any value) releases the lock.
//               If core 0 and core 1 attempt to claim the same lock
//               simultaneously, core 0 wins.
//               The value returned on success is 0x1 << lock number.
#define SIO_SPINLOCK3_OFFSET _u(0x0000010c)
#define SIO_SPINLOCK3_BITS   _u(0xffffffff)
#define SIO_SPINLOCK3_RESET  _u(0x00000000)
#define SIO_SPINLOCK3_MSB    _u(31)
#define SIO_SPINLOCK3_LSB    _u(0)
#define SIO_SPINLOCK3_ACCESS "RW"
// =============================================================================
// Register    : SIO_SPINLOCK4
// Description : Reading from a spinlock address will:
//               - Return 0 if lock is already locked
//               - Otherwise return nonzero, and simultaneously claim the lock
//
//               Writing (any value) releases the lock.
//               If core 0 and core 1 attempt to claim the same lock
//               simultaneously, core 0 wins.
//               The value returned on success is 0x1 << lock number.
#define SIO_SPINLOCK4_OFFSET _u(0x00000110)
#define SIO_SPINLOCK4_BITS   _u(0xffffffff)
#define SIO_SPINLOCK4_RESET  _u(0x00000000)
#define SIO_SPINLOCK4_MSB    _u(31)
#define SIO_SPINLOCK4_LSB    _u(0)
#define SIO_SPINLOCK4_ACCESS "RW"
// =============================================================================
// Register    : SIO_SPINLOCK5
// Description : Reading from a spinlock address will:
//               - Return 0 if lock is already locked
//               - Otherwise return nonzero, and simultaneously claim the lock
//
//               Writing (any value) releases the lock.
//               If core 0 and core 1 attempt to claim the same lock
//               simultaneously, core 0 wins.
//               The value returned on success is 0x1 << lock number.
#define SIO_SPINLOCK5_OFFSET _u(0x00000114)
#define SIO_SPINLOCK5_BITS   _u(0xffffffff)
#define SIO_SPINLOCK5_RESET  _u(0x00000000)
#define SIO_SPINLOCK5_MSB    _u(31)
#define SIO_SPINLOCK5_LSB    _u(0)
#define SIO_SPINLOCK5_ACCESS "RW"
// =============================================================================
// Register    : SIO_SPINLOCK6
// Description : Reading from a spinlock address will:
//               - Return 0 if lock is already locked
//               - Otherwise return nonzero, and simultaneously claim the lock
//
//               Writing (any value) releases the lock.
//               If core 0 and core 1 attempt to claim the same lock
//               simultaneously, core 0 wins.
//               The value returned on success is 0x1 << lock number.
#define SIO_SPINLOCK6_OFFSET _u(0x00000118)
#define SIO_SPINLOCK6_BITS   _u(0xffffffff)
#define SIO_SPINLOCK6_RESET  _u(0x00000000)
#define SIO_SPINLOCK6_MSB    _u(31)
#define SIO_SPINLOCK6_LSB    _u(0)
#define SIO_SPINLOCK6_ACCESS "RW"
// =============================================================================
// Register    : SIO_SPINLOCK7
// Description : Reading from a spinlock address will:
//               - Return 0 if lock is already locked
//               - Otherwise return nonzero, and simultaneously claim the lock
//
//               Writing (any value) releases the lock.
//               If core 0 and core 1 attempt to claim the same lock
//               simultaneously, core 0 wins.
//               The value returned on success is 0x1 << lock number.
#define SIO_SPINLOCK7_OFFSET _u(0x0000011c)
#define SIO_SPINLOCK7_BITS   _u(0xffffffff)
#define SIO_SPINLOCK7_RESET  _u(0x00000000)
#define SIO_SPINLOCK7_MSB    _u(31)
#define SIO_SPINLOCK7_LSB    _u(0)
#define SIO_SPINLOCK7_ACCESS "RW"
// =============================================================================
// Register    : SIO_SPINLOCK8
// Description : Reading from a spinlock address will:
//               - Return 0 if lock is already locked
//               - Otherwise return nonzero, and simultaneously claim the lock
//
//               Writing (any value) releases the lock.
//               If core 0 and core 1 attempt to claim the same lock
//               simultaneously, core 0 wins.
//               The value returned on success is 0x1 << lock number.
#define SIO_SPINLOCK8_OFFSET _u(0x00000120)
#define SIO_SPINLOCK8_BITS   _u(0xffffffff)
#define SIO_SPINLOCK8_RESET  _u(0x00000000)
#define SIO_SPINLOCK8_MSB    _u(31)
#define SIO_SPINLOCK8_LSB    _u(0)
#define SIO_SPINLOCK8_ACCESS "RW"
// =============================================================================
// Register    : SIO_SPINLOCK9
// Description : Reading from a spinlock address will:
//               - Return 0 if lock is already locked
//               - Otherwise return nonzero, and simultaneously claim the lock
//
//               Writing (any value) releases the lock.
//               If core 0 and core 1 attempt to claim the same lock
//               simultaneously, core 0 wins.
//               The value returned on success is 0x1 << lock number.
#define SIO_SPINLOCK9_OFFSET _u(0x00000124)
#define SIO_SPINLOCK9_BITS   _u(0xffffffff)
#define SIO_SPINLOCK9_RESET  _u(0x00000000)
#define SIO_SPINLOCK9_MSB    _u(31)
#define SIO_SPINLOCK9_LSB    _u(0)
#define SIO_SPINLOCK9_ACCESS "RW"
// =============================================================================
// Register    : SIO_SPINLOCK10
// Description : Reading from a spinlock address will:
//               - Return 0 if lock is already locked
//               - Otherwise return nonzero, and simultaneously claim the lock
//
//               Writing (any value) releases the lock.
//               If core 0 and core 1 attempt to claim the same lock
//               simultaneously, core 0 wins.
//               The value returned on success is 0x1 << lock number.
#define SIO_SPINLOCK10_OFFSET _u(0x00000128)
#define SIO_SPINLOCK10_BITS   _u(0xffffffff)
#define SIO_SPINLOCK10_RESET  _u(0x00000000)
#define SIO_SPINLOCK10_MSB    _u(31)
#define SIO_SPINLOCK10_LSB    _u(0)
#define SIO_SPINLOCK10_ACCESS "RW"
// =============================================================================
// Register    : SIO_SPINLOCK11
// Description : Reading from a spinlock address will:
//               - Return 0 if lock is already locked
//               - Otherwise return nonzero, and simultaneously claim the lock
//
//               Writing (any value) releases the lock.
//               If core 0 and core 1 attempt to claim the same lock
//               simultaneously, core 0 wins.
//               The value returned on success is 0x1 << lock number.
#define SIO_SPINLOCK11_OFFSET _u(0x0000012c)
#define SIO_SPINLOCK11_BITS   _u(0xffffffff)
#define SIO_SPINLOCK11_RESET  _u(0x00000000)
#define SIO_SPINLOCK11_MSB    _u(31)
#define SIO_SPINLOCK11_LSB    _u(0)
#define SIO_SPINLOCK11_ACCESS "RW"
// =============================================================================
// Register    : SIO_SPINLOCK12
// Description : Reading from a spinlock address will:
//               - Return 0 if lock is already locked
//               - Otherwise return nonzero, and simultaneously claim the lock
//
//               Writing (any value) releases the lock.
//               If core 0 and core 1 attempt to claim the same lock
//               simultaneously, core 0 wins.
//               The value returned on success is 0x1 << lock number.
#define SIO_SPINLOCK12_OFFSET _u(0x00000130)
#define SIO_SPINLOCK12_BITS   _u(0xffffffff)
#define SIO_SPINLOCK12_RESET  _u(0x00000000)
#define SIO_SPINLOCK12_MSB    _u(31)
#define SIO_SPINLOCK12_LSB    _u(0)
#define SIO_SPINLOCK12_ACCESS "RW"
// =============================================================================
// Register    : SIO_SPINLOCK13
// Description : Reading from a spinlock address will:
//               - Return 0 if lock is already locked
//               - Otherwise return nonzero, and simultaneously claim the lock
//
//               Writing (any value) releases the lock.
//               If core 0 and core 1 attempt to claim the same lock
//               simultaneously, core 0 wins.
//               The value returned on success is 0x1 << lock number.
#define SIO_SPINLOCK13_OFFSET _u(0x00000134)
#define SIO_SPINLOCK13_BITS   _u(0xffffffff)
#define SIO_SPINLOCK13_RESET  _u(0x00000000)
#define SIO_SPINLOCK13_MSB    _u(31)
#define SIO_SPINLOCK13_LSB    _u(0)
#define SIO_SPINLOCK13_ACCESS "RW"
// =============================================================================
// Register    : SIO_SPINLOCK14
// Description : Reading from a spinlock address will:
//               - Return 0 if lock is already locked
//               - Otherwise return nonzero, and simultaneously claim the lock
//
//               Writing (any value) releases the lock.
//               If core 0 and core 1 attempt to claim the same lock
//               simultaneously, core 0 wins.
//               The value returned on success is 0x1 << lock number.
#define SIO_SPINLOCK14_OFFSET _u(0x00000138)
#define SIO_SPINLOCK14_BITS   _u(0xffffffff)
#define SIO_SPINLOCK14_RESET  _u(0x00000000)
#define SIO_SPINLOCK14_MSB    _u(31)
#define SIO_SPINLOCK14_LSB    _u(0)
#define SIO_SPINLOCK14_ACCESS "RW"
// =============================================================================
// Register    : SIO_SPINLOCK15
// Description : Reading from a spinlock address will:
//               - Return 0 if lock is already locked
//               - Otherwise return nonzero, and simultaneously claim the lock
//
//               Writing (any value) releases the lock.
//               If core 0 and core 1 attempt to claim the same lock
//               simultaneously, core 0 wins.
//               The value returned on success is 0x1 << lock number.
#define SIO_SPINLOCK15_OFFSET _u(0x0000013c)
#define SIO_SPINLOCK15_BITS   _u(0xffffffff)
#define SIO_SPINLOCK15_RESET  _u(0x00000000)
#define SIO_SPINLOCK15_MSB    _u(31)
#define SIO_SPINLOCK15_LSB    _u(0)
#define SIO_SPINLOCK15_ACCESS "RW"
// =============================================================================
// Register    : SIO_SPINLOCK16
// Description : Reading from a spinlock address will:
//               - Return 0 if lock is already locked
//               - Otherwise return nonzero, and simultaneously claim the lock
//
//               Writing (any value) releases the lock.
//               If core 0 and core 1 attempt to claim the same lock
//               simultaneously, core 0 wins.
//               The value returned on success is 0x1 << lock number.
#define SIO_SPINLOCK16_OFFSET _u(0x00000140)
#define SIO_SPINLOCK16_BITS   _u(0xffffffff)
#define SIO_SPINLOCK16_RESET  _u(0x00000000)
#define SIO_SPINLOCK16_MSB    _u(31)
#define SIO_SPINLOCK16_LSB    _u(0)
#define SIO_SPINLOCK16_ACCESS "RW"
// =============================================================================
// Register    : SIO_SPINLOCK17
// Description : Reading from a spinlock address will:
//               - Return 0 if lock is already locked
//               - Otherwise return nonzero, and simultaneously claim the lock
//
//               Writing (any value) releases the lock.
//               If core 0 and core 1 attempt to claim the same lock
//               simultaneously, core 0 wins.
//               The value returned on success is 0x1 << lock number.
#define SIO_SPINLOCK17_OFFSET _u(0x00000144)
#define SIO_SPINLOCK17_BITS   _u(0xffffffff)
#define SIO_SPINLOCK17_RESET  _u(0x00000000)
#define SIO_SPINLOCK17_MSB    _u(31)
#define SIO_SPINLOCK17_LSB    _u(0)
#define SIO_SPINLOCK17_ACCESS "RW"
// =============================================================================
// Register    : SIO_SPINLOCK18
// Description : Reading from a spinlock address will:
//               - Return 0 if lock is already locked
//               - Otherwise return nonzero, and simultaneously claim the lock
//
//               Writing (any value) releases the lock.
//               If core 0 and core 1 attempt to claim the same lock
//               simultaneously, core 0 wins.
//               The value returned on success is 0x1 << lock number.
#define SIO_SPINLOCK18_OFFSET _u(0x00000148)
#define SIO_SPINLOCK18_BITS   _u(0xffffffff)
#define SIO_SPINLOCK18_RESET  _u(0x00000000)
#define SIO_SPINLOCK18_MSB    _u(31)
#define SIO_SPINLOCK18_LSB    _u(0)
#define SIO_SPINLOCK18_ACCESS "RW"
// =============================================================================
// Register    : SIO_SPINLOCK19
// Description : Reading from a spinlock address will:
//               - Return 0 if lock is already locked
//               - Otherwise return nonzero, and simultaneously claim the lock
//
//               Writing (any value) releases the lock.
//               If core 0 and core 1 attempt to claim the same lock
//               simultaneously, core 0 wins.
//               The value returned on success is 0x1 << lock number.
#define SIO_SPINLOCK19_OFFSET _u(0x0000014c)
#define SIO_SPINLOCK19_BITS   _u(0xffffffff)
#define SIO_SPINLOCK19_RESET  _u(0x00000000)
#define SIO_SPINLOCK19_MSB    _u(31)
#define SIO_SPINLOCK19_LSB    _u(0)
#define SIO_SPINLOCK19_ACCESS "RW"
// =============================================================================
// Register    : SIO_SPINLOCK20
// Description : Reading from a spinlock address will:
//               - Return 0 if lock is already locked
//               - Otherwise return nonzero, and simultaneously claim the lock
//
//               Writing (any value) releases the lock.
//               If core 0 and core 1 attempt to claim the same lock
//               simultaneously, core 0 wins.
//               The value returned on success is 0x1 << lock number.
#define SIO_SPINLOCK20_OFFSET _u(0x00000150)
#define SIO_SPINLOCK20_BITS   _u(0xffffffff)
#define SIO_SPINLOCK20_RESET  _u(0x00000000)
#define SIO_SPINLOCK20_MSB    _u(31)
#define SIO_SPINLOCK20_LSB    _u(0)
#define SIO_SPINLOCK20_ACCESS "RW"
// =============================================================================
// Register    : SIO_SPINLOCK21
// Description : Reading from a spinlock address will:
//               - Return 0 if lock is already locked
//               - Otherwise return nonzero, and simultaneously claim the lock
//
//               Writing (any value) releases the lock.
//               If core 0 and core 1 attempt to claim the same lock
//               simultaneously, core 0 wins.
//               The value returned on success is 0x1 << lock number.
#define SIO_SPINLOCK21_OFFSET _u(0x00000154)
#define SIO_SPINLOCK21_BITS   _u(0xffffffff)
#define SIO_SPINLOCK21_RESET  _u(0x00000000)
#define SIO_SPINLOCK21_MSB    _u(31)
#define SIO_SPINLOCK21_LSB    _u(0)
#define SIO_SPINLOCK21_ACCESS "RW"
// =============================================================================
// Register    : SIO_SPINLOCK22
// Description : Reading from a spinlock address will:
//               - Return 0 if lock is already locked
//               - Otherwise return nonzero, and simultaneously claim the lock
//
//               Writing (any value) releases the lock.
//               If core 0 and core 1 attempt to claim the same lock
//               simultaneously, core 0 wins.
//               The value returned on success is 0x1 << lock number.
#define SIO_SPINLOCK22_OFFSET _u(0x00000158)
#define SIO_SPINLOCK22_BITS   _u(0xffffffff)
#define SIO_SPINLOCK22_RESET  _u(0x00000000)
#define SIO_SPINLOCK22_MSB    _u(31)
#define SIO_SPINLOCK22_LSB    _u(0)
#define SIO_SPINLOCK22_ACCESS "RW"
// =============================================================================
// Register    : SIO_SPINLOCK23
// Description : Reading from a spinlock address will:
//               - Return 0 if lock is already locked
//               - Otherwise return nonzero, and simultaneously claim the lock
//
//               Writing (any value) releases the lock.
//               If core 0 and core 1 attempt to claim the same lock
//               simultaneously, core 0 wins.
//               The value returned on success is 0x1 << lock number.
#define SIO_SPINLOCK23_OFFSET _u(0x0000015c)
#define SIO_SPINLOCK23_BITS   _u(0xffffffff)
#define SIO_SPINLOCK23_RESET  _u(0x00000000)
#define SIO_SPINLOCK23_MSB    _u(31)
#define SIO_SPINLOCK23_LSB    _u(0)
#define SIO_SPINLOCK23_ACCESS "RW"
// =============================================================================
// Register    : SIO_SPINLOCK24
// Description : Reading from a spinlock address will:
//               - Return 0 if lock is already locked
//               - Otherwise return nonzero, and simultaneously claim the lock
//
//               Writing (any value) releases the lock.
//               If core 0 and core 1 attempt to claim the same lock
//               simultaneously, core 0 wins.
//               The value returned on success is 0x1 << lock number.
#define SIO_SPINLOCK24_OFFSET _u(0x00000160)
#define SIO_SPINLOCK24_BITS   _u(0xffffffff)
#define SIO_SPINLOCK24_RESET  _u(0x00000000)
#define SIO_SPINLOCK24_MSB    _u(31)
#define SIO_SPINLOCK24_LSB    _u(0)
#define SIO_SPINLOCK24_ACCESS "RW"
// =============================================================================
// Register    : SIO_SPINLOCK25
// Description : Reading from a spinlock address will:
//               - Return 0 if lock is already locked
//               - Otherwise return nonzero, and simultaneously claim the lock
//
//               Writing (any value) releases the lock.
//               If core 0 and core 1 attempt to claim the same lock
//               simultaneously, core 0 wins.
//               The value returned on success is 0x1 << lock number.
#define SIO_SPINLOCK25_OFFSET _u(0x00000164)
#define SIO_SPINLOCK25_BITS   _u(0xffffffff)
#define SIO_SPINLOCK25_RESET  _u(0x00000000)
#define SIO_SPINLOCK25_MSB    _u(31)
#define SIO_SPINLOCK25_LSB    _u(0)
#define SIO_SPINLOCK25_ACCESS "RW"
// =============================================================================
// Register    : SIO_SPINLOCK26
// Description : Reading from a spinlock address will:
//               - Return 0 if lock is already locked
//               - Otherwise return nonzero, and simultaneously claim the lock
//
//               Writing (any value) releases the lock.
//               If core 0 and core 1 attempt to claim the same lock
//               simultaneously, core 0 wins.
//               The value returned on success is 0x1 << lock number.
#define SIO_SPINLOCK26_OFFSET _u(0x00000168)
#define SIO_SPINLOCK26_BITS   _u(0xffffffff)
#define SIO_SPINLOCK26_RESET  _u(0x00000000)
#define SIO_SPINLOCK26_MSB    _u(31)
#define SIO_SPINLOCK26_LSB    _u(0)
#define SIO_SPINLOCK26_ACCESS "RW"
// =============================================================================
// Register    : SIO_SPINLOCK27
// Description : Reading from a spinlock address will:
//               - Return 0 if lock is already locked
//               - Otherwise return nonzero, and simultaneously claim the lock
//
//               Writing (any value) releases the lock.
//               If core 0 and core 1 attempt to claim the same lock
//               simultaneously, core 0 wins.
//               The value returned on success is 0x1 << lock number.
#define SIO_SPINLOCK27_OFFSET _u(0x0000016c)
#define SIO_SPINLOCK27_BITS   _u(0xffffffff)
#define SIO_SPINLOCK27_RESET  _u(0x00000000)
#define SIO_SPINLOCK27_MSB    _u(31)
#define SIO_SPINLOCK27_LSB    _u(0)
#define SIO_SPINLOCK27_ACCESS "RW"
// =============================================================================
// Register    : SIO_SPINLOCK28
// Description : Reading from a spinlock address will:
//               - Return 0 if lock is already locked
//               - Otherwise return nonzero, and simultaneously claim the lock
//
//               Writing (any value) releases the lock.
//               If core 0 and core 1 attempt to claim the same lock
//               simultaneously, core 0 wins.
//               The value returned on success is 0x1 << lock number.
#define SIO_SPINLOCK28_OFFSET _u(0x00000170)
#define SIO_SPINLOCK28_BITS   _u(0xffffffff)
#define SIO_SPINLOCK28_RESET  _u(0x00000000)
#define SIO_SPINLOCK28_MSB    _u(31)
#define SIO_SPINLOCK28_LSB    _u(0)
#define SIO_SPINLOCK28_ACCESS "RW"
// =============================================================================
// Register    : SIO_SPINLOCK29
// Description : Reading from a spinlock address will:
//               - Return 0 if lock is already locked
//               - Otherwise return nonzero, and simultaneously claim the lock
//
//               Writing (any value) releases the lock.
//               If core 0 and core 1 attempt to claim the same lock
//               simultaneously, core 0 wins.
//               The value returned on success is 0x1 << lock number.
#define SIO_SPINLOCK29_OFFSET _u(0x00000174)
#define SIO_SPINLOCK29_BITS   _u(0xffffffff)
#define SIO_SPINLOCK29_RESET  _u(0x00000000)
#define SIO_SPINLOCK29_MSB    _u(31)
#define SIO_SPINLOCK29_LSB    _u(0)
#define SIO_SPINLOCK29_ACCESS "RW"
// =============================================================================
// Register    : SIO_SPINLOCK30
// Description : Reading from a spinlock address will:
//               - Return 0 if lock is already locked
//               - Otherwise return nonzero, and simultaneously claim the lock
//
//               Writing (any value) releases the lock.
//               If core 0 and core 1 attempt to claim the same lock
//               simultaneously, core 0 wins.
//               The value returned on success is 0x1 << lock number.
#define SIO_SPINLOCK30_OFFSET _u(0x00000178)
#define SIO_SPINLOCK30_BITS   _u(0xffffffff)
#define SIO_SPINLOCK30_RESET  _u(0x00000000)
#define SIO_SPINLOCK30_MSB    _u(31)
#define SIO_SPINLOCK30_LSB    _u(0)
#define SIO_SPINLOCK30_ACCESS "RW"
// =============================================================================
// Register    : SIO_SPINLOCK31
// Description : Reading from a spinlock address will:
//               - Return 0 if lock is already locked
//               - Otherwise return nonzero, and simultaneously claim the lock
//
//               Writing (any value) releases the lock.
//               If core 0 and core 1 attempt to claim the same lock
//               simultaneously, core 0 wins.
//               The value returned on success is 0x1 << lock number.
#define SIO_SPINLOCK31_OFFSET _u(0x0000017c)
#define SIO_SPINLOCK31_BITS   _u(0xffffffff)
#define SIO_SPINLOCK31_RESET  _u(0x00000000)
#define SIO_SPINLOCK31_MSB    _u(31)
#define SIO_SPINLOCK31_LSB    _u(0)
#define SIO_SPINLOCK31_ACCESS "RW"
// =============================================================================
// Register    : SIO_DOORBELL_OUT_SET
// Description : Trigger a doorbell interrupt on the opposite core.
//
//               Write 1 to a bit to set the corresponding bit in DOORBELL_IN on
//               the opposite core. This raises the opposite core's doorbell
//               interrupt.
//
//               Read to get the status of the doorbells currently asserted on
//               the opposite core. This is equivalent to that core reading its
//               own DOORBELL_IN status.
#define SIO_DOORBELL_OUT_SET_OFFSET _u(0x00000180)
#define SIO_DOORBELL_OUT_SET_BITS   _u(0x000000ff)
#define SIO_DOORBELL_OUT_SET_RESET  _u(0x00000000)
#define SIO_DOORBELL_OUT_SET_MSB    _u(7)
#define SIO_DOORBELL_OUT_SET_LSB    _u(0)
#define SIO_DOORBELL_OUT_SET_ACCESS "RW"
// =============================================================================
// Register    : SIO_DOORBELL_OUT_CLR
// Description : Clear doorbells which have been posted to the opposite core.
//               This register is intended for debugging and initialisation
//               purposes.
//
//               Writing 1 to a bit in DOORBELL_OUT_CLR clears the corresponding
//               bit in DOORBELL_IN on the opposite core. Clearing all bits will
//               cause that core's doorbell interrupt to deassert. Since the
//               usual order of events is for software to send events using
//               DOORBELL_OUT_SET, and acknowledge incoming events by writing to
//               DOORBELL_IN_CLR, this register should be used with caution to
//               avoid race conditions.
//
//               Reading returns the status of the doorbells currently asserted
//               on the other core, i.e. is equivalent to that core reading its
//               own DOORBELL_IN status.
#define SIO_DOORBELL_OUT_CLR_OFFSET _u(0x00000184)
#define SIO_DOORBELL_OUT_CLR_BITS   _u(0x000000ff)
#define SIO_DOORBELL_OUT_CLR_RESET  _u(0x00000000)
#define SIO_DOORBELL_OUT_CLR_MSB    _u(7)
#define SIO_DOORBELL_OUT_CLR_LSB    _u(0)
#define SIO_DOORBELL_OUT_CLR_ACCESS "WC"
// =============================================================================
// Register    : SIO_DOORBELL_IN_SET
// Description : Write 1s to trigger doorbell interrupts on this core. Read to
//               get status of doorbells currently asserted on this core.
#define SIO_DOORBELL_IN_SET_OFFSET _u(0x00000188)
#define SIO_DOORBELL_IN_SET_BITS   _u(0x000000ff)
#define SIO_DOORBELL_IN_SET_RESET  _u(0x00000000)
#define SIO_DOORBELL_IN_SET_MSB    _u(7)
#define SIO_DOORBELL_IN_SET_LSB    _u(0)
#define SIO_DOORBELL_IN_SET_ACCESS "RW"
// =============================================================================
// Register    : SIO_DOORBELL_IN_CLR
// Description : Check and acknowledge doorbells posted to this core. This
//               core's doorbell interrupt is asserted when any bit in this
//               register is 1.
//
//               Write 1 to each bit to clear that bit. The doorbell interrupt
//               deasserts once all bits are cleared. Read to get status of
//               doorbells currently asserted on this core.
#define SIO_DOORBELL_IN_CLR_OFFSET _u(0x0000018c)
#define SIO_DOORBELL_IN_CLR_BITS   _u(0x000000ff)
#define SIO_DOORBELL_IN_CLR_RESET  _u(0x00000000)
#define SIO_DOORBELL_IN_CLR_MSB    _u(7)
#define SIO_DOORBELL_IN_CLR_LSB    _u(0)
#define SIO_DOORBELL_IN_CLR_ACCESS "WC"
// =============================================================================
// Register    : SIO_PERI_NONSEC
// Description : Detach certain core-local peripherals from Secure SIO, and
//               attach them to Non-secure SIO, so that Non-secure software can
//               use them. Attempting to access one of these peripherals from
//               the Secure SIO when it is attached to the Non-secure SIO, or
//               vice versa, will generate a bus error.
//
//               This register is per-core, and is only present on the Secure
//               SIO.
//
//               Most SIO hardware is duplicated across the Secure and Non-
//               secure SIO, so is not listed in this register.
#define SIO_PERI_NONSEC_OFFSET _u(0x00000190)
#define SIO_PERI_NONSEC_BITS   _u(0x00000023)
#define SIO_PERI_NONSEC_RESET  _u(0x00000000)
// -----------------------------------------------------------------------------
// Field       : SIO_PERI_NONSEC_TMDS
// Description : IF 1, detach TMDS encoder (of this core) from the Secure SIO,
//               and attach to the Non-secure SIO.
#define SIO_PERI_NONSEC_TMDS_RESET  _u(0x0)
#define SIO_PERI_NONSEC_TMDS_BITS   _u(0x00000020)
#define SIO_PERI_NONSEC_TMDS_MSB    _u(5)
#define SIO_PERI_NONSEC_TMDS_LSB    _u(5)
#define SIO_PERI_NONSEC_TMDS_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_PERI_NONSEC_INTERP1
// Description : If 1, detach interpolator 1 (of this core) from the Secure SIO,
//               and attach to the Non-secure SIO.
#define SIO_PERI_NONSEC_INTERP1_RESET  _u(0x0)
#define SIO_PERI_NONSEC_INTERP1_BITS   _u(0x00000002)
#define SIO_PERI_NONSEC_INTERP1_MSB    _u(1)
#define SIO_PERI_NONSEC_INTERP1_LSB    _u(1)
#define SIO_PERI_NONSEC_INTERP1_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_PERI_NONSEC_INTERP0
// Description : If 1, detach interpolator 0 (of this core) from the Secure SIO,
//               and attach to the Non-secure SIO.
#define SIO_PERI_NONSEC_INTERP0_RESET  _u(0x0)
#define SIO_PERI_NONSEC_INTERP0_BITS   _u(0x00000001)
#define SIO_PERI_NONSEC_INTERP0_MSB    _u(0)
#define SIO_PERI_NONSEC_INTERP0_LSB    _u(0)
#define SIO_PERI_NONSEC_INTERP0_ACCESS "RW"
// =============================================================================
// Register    : SIO_RISCV_SOFTIRQ
// Description : Control the assertion of the standard software interrupt
//               (MIP.MSIP) on the RISC-V cores.
//
//               Unlike the RISC-V timer, this interrupt is not routed to a
//               normal system-level interrupt line, so can not be used by the
//               Arm cores.
//
//               It is safe for both cores to write to this register on the same
//               cycle. The set/clear effect is accumulated across both cores,
//               and then applied. If a flag is both set and cleared on the same
//               cycle, only the set takes effect.
#define SIO_RISCV_SOFTIRQ_OFFSET _u(0x000001a0)
#define SIO_RISCV_SOFTIRQ_BITS   _u(0x00000303)
#define SIO_RISCV_SOFTIRQ_RESET  _u(0x00000000)
// -----------------------------------------------------------------------------
// Field       : SIO_RISCV_SOFTIRQ_CORE1_CLR
// Description : Write 1 to atomically clear the core 1 software interrupt flag.
//               Read to get the status of this flag.
#define SIO_RISCV_SOFTIRQ_CORE1_CLR_RESET  _u(0x0)
#define SIO_RISCV_SOFTIRQ_CORE1_CLR_BITS   _u(0x00000200)
#define SIO_RISCV_SOFTIRQ_CORE1_CLR_MSB    _u(9)
#define SIO_RISCV_SOFTIRQ_CORE1_CLR_LSB    _u(9)
#define SIO_RISCV_SOFTIRQ_CORE1_CLR_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_RISCV_SOFTIRQ_CORE0_CLR
// Description : Write 1 to atomically clear the core 0 software interrupt flag.
//               Read to get the status of this flag.
#define SIO_RISCV_SOFTIRQ_CORE0_CLR_RESET  _u(0x0)
#define SIO_RISCV_SOFTIRQ_CORE0_CLR_BITS   _u(0x00000100)
#define SIO_RISCV_SOFTIRQ_CORE0_CLR_MSB    _u(8)
#define SIO_RISCV_SOFTIRQ_CORE0_CLR_LSB    _u(8)
#define SIO_RISCV_SOFTIRQ_CORE0_CLR_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_RISCV_SOFTIRQ_CORE1_SET
// Description : Write 1 to atomically set the core 1 software interrupt flag.
//               Read to get the status of this flag.
#define SIO_RISCV_SOFTIRQ_CORE1_SET_RESET  _u(0x0)
#define SIO_RISCV_SOFTIRQ_CORE1_SET_BITS   _u(0x00000002)
#define SIO_RISCV_SOFTIRQ_CORE1_SET_MSB    _u(1)
#define SIO_RISCV_SOFTIRQ_CORE1_SET_LSB    _u(1)
#define SIO_RISCV_SOFTIRQ_CORE1_SET_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_RISCV_SOFTIRQ_CORE0_SET
// Description : Write 1 to atomically set the core 0 software interrupt flag.
//               Read to get the status of this flag.
#define SIO_RISCV_SOFTIRQ_CORE0_SET_RESET  _u(0x0)
#define SIO_RISCV_SOFTIRQ_CORE0_SET_BITS   _u(0x00000001)
#define SIO_RISCV_SOFTIRQ_CORE0_SET_MSB    _u(0)
#define SIO_RISCV_SOFTIRQ_CORE0_SET_LSB    _u(0)
#define SIO_RISCV_SOFTIRQ_CORE0_SET_ACCESS "RW"
// =============================================================================
// Register    : SIO_MTIME_CTRL
// Description : Control register for the RISC-V 64-bit Machine-mode timer. This
//               timer is only present in the Secure SIO, so is only accessible
//               to an Arm core in Secure mode or a RISC-V core in Machine mode.
//
//               Note whilst this timer follows the RISC-V privileged
//               specification, it is equally usable by the Arm cores. The
//               interrupts are routed to normal system-level interrupt lines as
//               well as to the MIP.MTIP inputs on the RISC-V cores.
#define SIO_MTIME_CTRL_OFFSET _u(0x000001a4)
#define SIO_MTIME_CTRL_BITS   _u(0x0000000f)
#define SIO_MTIME_CTRL_RESET  _u(0x0000000d)
// -----------------------------------------------------------------------------
// Field       : SIO_MTIME_CTRL_DBGPAUSE_CORE1
// Description : If 1, the timer pauses when core 1 is in the debug halt state.
#define SIO_MTIME_CTRL_DBGPAUSE_CORE1_RESET  _u(0x1)
#define SIO_MTIME_CTRL_DBGPAUSE_CORE1_BITS   _u(0x00000008)
#define SIO_MTIME_CTRL_DBGPAUSE_CORE1_MSB    _u(3)
#define SIO_MTIME_CTRL_DBGPAUSE_CORE1_LSB    _u(3)
#define SIO_MTIME_CTRL_DBGPAUSE_CORE1_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_MTIME_CTRL_DBGPAUSE_CORE0
// Description : If 1, the timer pauses when core 0 is in the debug halt state.
#define SIO_MTIME_CTRL_DBGPAUSE_CORE0_RESET  _u(0x1)
#define SIO_MTIME_CTRL_DBGPAUSE_CORE0_BITS   _u(0x00000004)
#define SIO_MTIME_CTRL_DBGPAUSE_CORE0_MSB    _u(2)
#define SIO_MTIME_CTRL_DBGPAUSE_CORE0_LSB    _u(2)
#define SIO_MTIME_CTRL_DBGPAUSE_CORE0_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_MTIME_CTRL_FULLSPEED
// Description : If 1, increment the timer every cycle (i.e. run directly from
//               the system clock), rather than incrementing on the system-level
//               timer tick input.
#define SIO_MTIME_CTRL_FULLSPEED_RESET  _u(0x0)
#define SIO_MTIME_CTRL_FULLSPEED_BITS   _u(0x00000002)
#define SIO_MTIME_CTRL_FULLSPEED_MSB    _u(1)
#define SIO_MTIME_CTRL_FULLSPEED_LSB    _u(1)
#define SIO_MTIME_CTRL_FULLSPEED_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_MTIME_CTRL_EN
// Description : Timer enable bit. When 0, the timer will not increment
//               automatically.
#define SIO_MTIME_CTRL_EN_RESET  _u(0x1)
#define SIO_MTIME_CTRL_EN_BITS   _u(0x00000001)
#define SIO_MTIME_CTRL_EN_MSB    _u(0)
#define SIO_MTIME_CTRL_EN_LSB    _u(0)
#define SIO_MTIME_CTRL_EN_ACCESS "RW"
// =============================================================================
// Register    : SIO_MTIME
// Description : Read/write access to the high half of RISC-V Machine-mode
//               timer. This register is shared between both cores. If both
//               cores write on the same cycle, core 1 takes precedence.
#define SIO_MTIME_OFFSET _u(0x000001b0)
#define SIO_MTIME_BITS   _u(0xffffffff)
#define SIO_MTIME_RESET  _u(0x00000000)
#define SIO_MTIME_MSB    _u(31)
#define SIO_MTIME_LSB    _u(0)
#define SIO_MTIME_ACCESS "RW"
// =============================================================================
// Register    : SIO_MTIMEH
// Description : Read/write access to the high half of RISC-V Machine-mode
//               timer. This register is shared between both cores. If both
//               cores write on the same cycle, core 1 takes precedence.
#define SIO_MTIMEH_OFFSET _u(0x000001b4)
#define SIO_MTIMEH_BITS   _u(0xffffffff)
#define SIO_MTIMEH_RESET  _u(0x00000000)
#define SIO_MTIMEH_MSB    _u(31)
#define SIO_MTIMEH_LSB    _u(0)
#define SIO_MTIMEH_ACCESS "RW"
// =============================================================================
// Register    : SIO_MTIMECMP
// Description : Low half of RISC-V Machine-mode timer comparator. This register
//               is core-local, i.e., each core gets a copy of this register,
//               with the comparison result routed to its own interrupt line.
//
//               The timer interrupt is asserted whenever MTIME is greater than
//               or equal to MTIMECMP. This comparison is unsigned, and
//               performed on the full 64-bit values.
#define SIO_MTIMECMP_OFFSET _u(0x000001b8)
#define SIO_MTIMECMP_BITS   _u(0xffffffff)
#define SIO_MTIMECMP_RESET  _u(0xffffffff)
#define SIO_MTIMECMP_MSB    _u(31)
#define SIO_MTIMECMP_LSB    _u(0)
#define SIO_MTIMECMP_ACCESS "RW"
// =============================================================================
// Register    : SIO_MTIMECMPH
// Description : High half of RISC-V Machine-mode timer comparator. This
//               register is core-local.
//
//               The timer interrupt is asserted whenever MTIME is greater than
//               or equal to MTIMECMP. This comparison is unsigned, and
//               performed on the full 64-bit values.
#define SIO_MTIMECMPH_OFFSET _u(0x000001bc)
#define SIO_MTIMECMPH_BITS   _u(0xffffffff)
#define SIO_MTIMECMPH_RESET  _u(0xffffffff)
#define SIO_MTIMECMPH_MSB    _u(31)
#define SIO_MTIMECMPH_LSB    _u(0)
#define SIO_MTIMECMPH_ACCESS "RW"
// =============================================================================
// Register    : SIO_TMDS_CTRL
// Description : Control register for TMDS encoder.
#define SIO_TMDS_CTRL_OFFSET _u(0x000001c0)
#define SIO_TMDS_CTRL_BITS   _u(0x1f9fffff)
#define SIO_TMDS_CTRL_RESET  _u(0x00000000)
// -----------------------------------------------------------------------------
// Field       : SIO_TMDS_CTRL_CLEAR_BALANCE
// Description : Clear the running DC balance state of the TMDS encoders. This
//               bit should be written once at the beginning of each scanline.
#define SIO_TMDS_CTRL_CLEAR_BALANCE_RESET  _u(0x0)
#define SIO_TMDS_CTRL_CLEAR_BALANCE_BITS   _u(0x10000000)
#define SIO_TMDS_CTRL_CLEAR_BALANCE_MSB    _u(28)
#define SIO_TMDS_CTRL_CLEAR_BALANCE_LSB    _u(28)
#define SIO_TMDS_CTRL_CLEAR_BALANCE_ACCESS "SC"
// -----------------------------------------------------------------------------
// Field       : SIO_TMDS_CTRL_PIX2_NOSHIFT
// Description : When encoding two pixels's worth of symbols in one cycle (a
//               read of a PEEK/POP_DOUBLE register), the second encoder sees a
//               shifted version of the colour data register.
//
//               This control disables that shift, so that both encoder layers
//               see the same pixel data. This is used for pixel doubling.
#define SIO_TMDS_CTRL_PIX2_NOSHIFT_RESET  _u(0x0)
#define SIO_TMDS_CTRL_PIX2_NOSHIFT_BITS   _u(0x08000000)
#define SIO_TMDS_CTRL_PIX2_NOSHIFT_MSB    _u(27)
#define SIO_TMDS_CTRL_PIX2_NOSHIFT_LSB    _u(27)
#define SIO_TMDS_CTRL_PIX2_NOSHIFT_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_TMDS_CTRL_PIX_SHIFT
// Description : Shift applied to the colour data register with each read of a
//               POP alias register.
//
//               Reading from the POP_SINGLE register, or reading from the
//               POP_DOUBLE register with PIX2_NOSHIFT set (for pixel doubling),
//               shifts by the indicated amount.
//
//               Reading from a POP_DOUBLE register when PIX2_NOSHIFT is clear
//               will shift by double the indicated amount. (Shift by 32 means
//               no shift.)
//               0x0 -> Do not shift the colour data register.
//               0x1 -> Shift the colour data register by 1 bit
//               0x2 -> Shift the colour data register by 2 bits
//               0x3 -> Shift the colour data register by 4 bits
//               0x4 -> Shift the colour data register by 8 bits
//               0x5 -> Shift the colour data register by 16 bits
#define SIO_TMDS_CTRL_PIX_SHIFT_RESET  _u(0x0)
#define SIO_TMDS_CTRL_PIX_SHIFT_BITS   _u(0x07000000)
#define SIO_TMDS_CTRL_PIX_SHIFT_MSB    _u(26)
#define SIO_TMDS_CTRL_PIX_SHIFT_LSB    _u(24)
#define SIO_TMDS_CTRL_PIX_SHIFT_ACCESS "RW"
#define SIO_TMDS_CTRL_PIX_SHIFT_VALUE_0 _u(0x0)
#define SIO_TMDS_CTRL_PIX_SHIFT_VALUE_1 _u(0x1)
#define SIO_TMDS_CTRL_PIX_SHIFT_VALUE_2 _u(0x2)
#define SIO_TMDS_CTRL_PIX_SHIFT_VALUE_4 _u(0x3)
#define SIO_TMDS_CTRL_PIX_SHIFT_VALUE_8 _u(0x4)
#define SIO_TMDS_CTRL_PIX_SHIFT_VALUE_16 _u(0x5)
// -----------------------------------------------------------------------------
// Field       : SIO_TMDS_CTRL_INTERLEAVE
// Description : Enable lane interleaving for reads of PEEK_SINGLE/POP_SINGLE.
//
//               When interleaving is disabled, each of the 3 symbols appears as
//               a contiguous 10-bit field, with lane 0 being the least-
//               significant and starting at bit 0 of the register.
//
//               When interleaving is enabled, the symbols are packed into 5
//               chunks of 3 lanes times 2 bits (30 bits total). Each chunk
//               contains two bits of a TMDS symbol per lane, with lane 0 being
//               the least significant.
#define SIO_TMDS_CTRL_INTERLEAVE_RESET  _u(0x0)
#define SIO_TMDS_CTRL_INTERLEAVE_BITS   _u(0x00800000)
#define SIO_TMDS_CTRL_INTERLEAVE_MSB    _u(23)
#define SIO_TMDS_CTRL_INTERLEAVE_LSB    _u(23)
#define SIO_TMDS_CTRL_INTERLEAVE_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_TMDS_CTRL_L2_NBITS
// Description : Number of valid colour MSBs for lane 2 (1-8 bits, encoded as 0
//               through 7). Remaining LSBs are masked to 0 after the rotate.
#define SIO_TMDS_CTRL_L2_NBITS_RESET  _u(0x0)
#define SIO_TMDS_CTRL_L2_NBITS_BITS   _u(0x001c0000)
#define SIO_TMDS_CTRL_L2_NBITS_MSB    _u(20)
#define SIO_TMDS_CTRL_L2_NBITS_LSB    _u(18)
#define SIO_TMDS_CTRL_L2_NBITS_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_TMDS_CTRL_L1_NBITS
// Description : Number of valid colour MSBs for lane 1 (1-8 bits, encoded as 0
//               through 7). Remaining LSBs are masked to 0 after the rotate.
#define SIO_TMDS_CTRL_L1_NBITS_RESET  _u(0x0)
#define SIO_TMDS_CTRL_L1_NBITS_BITS   _u(0x00038000)
#define SIO_TMDS_CTRL_L1_NBITS_MSB    _u(17)
#define SIO_TMDS_CTRL_L1_NBITS_LSB    _u(15)
#define SIO_TMDS_CTRL_L1_NBITS_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_TMDS_CTRL_L0_NBITS
// Description : Number of valid colour MSBs for lane 0 (1-8 bits, encoded as 0
//               through 7). Remaining LSBs are masked to 0 after the rotate.
#define SIO_TMDS_CTRL_L0_NBITS_RESET  _u(0x0)
#define SIO_TMDS_CTRL_L0_NBITS_BITS   _u(0x00007000)
#define SIO_TMDS_CTRL_L0_NBITS_MSB    _u(14)
#define SIO_TMDS_CTRL_L0_NBITS_LSB    _u(12)
#define SIO_TMDS_CTRL_L0_NBITS_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_TMDS_CTRL_L2_ROT
// Description : Right-rotate the 16 LSBs of the colour accumulator by 0-15
//               bits, in order to get the MSB of the lane 2 (red) colour data
//               aligned with the MSB of the 8-bit encoder input.
//
//               For example, for RGB565 (red most significant), red is bits
//               15:11, so should be right-rotated by 8 bits to align with bits
//               7:3 of the encoder input.
#define SIO_TMDS_CTRL_L2_ROT_RESET  _u(0x0)
#define SIO_TMDS_CTRL_L2_ROT_BITS   _u(0x00000f00)
#define SIO_TMDS_CTRL_L2_ROT_MSB    _u(11)
#define SIO_TMDS_CTRL_L2_ROT_LSB    _u(8)
#define SIO_TMDS_CTRL_L2_ROT_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_TMDS_CTRL_L1_ROT
// Description : Right-rotate the 16 LSBs of the colour accumulator by 0-15
//               bits, in order to get the MSB of the lane 1 (green) colour data
//               aligned with the MSB of the 8-bit encoder input.
//
//               For example, for RGB565, green is bits 10:5, so should be
//               right-rotated by 3 bits to align with bits 7:2 of the encoder
//               input.
#define SIO_TMDS_CTRL_L1_ROT_RESET  _u(0x0)
#define SIO_TMDS_CTRL_L1_ROT_BITS   _u(0x000000f0)
#define SIO_TMDS_CTRL_L1_ROT_MSB    _u(7)
#define SIO_TMDS_CTRL_L1_ROT_LSB    _u(4)
#define SIO_TMDS_CTRL_L1_ROT_ACCESS "RW"
// -----------------------------------------------------------------------------
// Field       : SIO_TMDS_CTRL_L0_ROT
// Description : Right-rotate the 16 LSBs of the colour accumulator by 0-15
//               bits, in order to get the MSB of the lane 0 (blue) colour data
//               aligned with the MSB of the 8-bit encoder input.
//
//               For example, for RGB565 (red most significant), blue is bits
//               4:0, so should be right-rotated by 13 to align with bits 7:3 of
//               the encoder input.
#define SIO_TMDS_CTRL_L0_ROT_RESET  _u(0x0)
#define SIO_TMDS_CTRL_L0_ROT_BITS   _u(0x0000000f)
#define SIO_TMDS_CTRL_L0_ROT_MSB    _u(3)
#define SIO_TMDS_CTRL_L0_ROT_LSB    _u(0)
#define SIO_TMDS_CTRL_L0_ROT_ACCESS "RW"
// =============================================================================
// Register    : SIO_TMDS_WDATA
// Description : Write-only access to the TMDS colour data register.
#define SIO_TMDS_WDATA_OFFSET _u(0x000001c4)
#define SIO_TMDS_WDATA_BITS   _u(0xffffffff)
#define SIO_TMDS_WDATA_RESET  _u(0x00000000)
#define SIO_TMDS_WDATA_MSB    _u(31)
#define SIO_TMDS_WDATA_LSB    _u(0)
#define SIO_TMDS_WDATA_ACCESS "WO"
// =============================================================================
// Register    : SIO_TMDS_PEEK_SINGLE
// Description : Get the encoding of one pixel's worth of colour data, packed
//               into a 32-bit value (3x10-bit symbols).
//
//               The PEEK alias does not shift the colour register when read,
//               but still advances the running DC balance state of each
//               encoder. This is useful for pixel doubling.
#define SIO_TMDS_PEEK_SINGLE_OFFSET _u(0x000001c8)
#define SIO_TMDS_PEEK_SINGLE_BITS   _u(0xffffffff)
#define SIO_TMDS_PEEK_SINGLE_RESET  _u(0x00000000)
#define SIO_TMDS_PEEK_SINGLE_MSB    _u(31)
#define SIO_TMDS_PEEK_SINGLE_LSB    _u(0)
#define SIO_TMDS_PEEK_SINGLE_ACCESS "RF"
// =============================================================================
// Register    : SIO_TMDS_POP_SINGLE
// Description : Get the encoding of one pixel's worth of colour data, packed
//               into a 32-bit value. The packing is 5 chunks of 3 lanes times 2
//               bits (30 bits total). Each chunk contains two bits of a TMDS
//               symbol per lane. This format is intended for shifting out with
//               the HSTX peripheral on RP2350.
//
//               The POP alias shifts the colour register when read, as well as
//               advancing the running DC balance state of each encoder.
#define SIO_TMDS_POP_SINGLE_OFFSET _u(0x000001cc)
#define SIO_TMDS_POP_SINGLE_BITS   _u(0xffffffff)
#define SIO_TMDS_POP_SINGLE_RESET  _u(0x00000000)
#define SIO_TMDS_POP_SINGLE_MSB    _u(31)
#define SIO_TMDS_POP_SINGLE_LSB    _u(0)
#define SIO_TMDS_POP_SINGLE_ACCESS "RF"
// =============================================================================
// Register    : SIO_TMDS_PEEK_DOUBLE_L0
// Description : Get lane 0 of the encoding of two pixels' worth of colour data.
//               Two 10-bit TMDS symbols are packed at the bottom of a 32-bit
//               word.
//
//               The PEEK alias does not shift the colour register when read,
//               but still advances the lane 0 DC balance state. This is useful
//               if all 3 lanes' worth of encode are to be read at once, rather
//               than processing the entire scanline for one lane before moving
//               to the next lane.
#define SIO_TMDS_PEEK_DOUBLE_L0_OFFSET _u(0x000001d0)
#define SIO_TMDS_PEEK_DOUBLE_L0_BITS   _u(0xffffffff)
#define SIO_TMDS_PEEK_DOUBLE_L0_RESET  _u(0x00000000)
#define SIO_TMDS_PEEK_DOUBLE_L0_MSB    _u(31)
#define SIO_TMDS_PEEK_DOUBLE_L0_LSB    _u(0)
#define SIO_TMDS_PEEK_DOUBLE_L0_ACCESS "RF"
// =============================================================================
// Register    : SIO_TMDS_POP_DOUBLE_L0
// Description : Get lane 0 of the encoding of two pixels' worth of colour data.
//               Two 10-bit TMDS symbols are packed at the bottom of a 32-bit
//               word.
//
//               The POP alias shifts the colour register when read, according
//               to the values of PIX_SHIFT and PIX2_NOSHIFT.
#define SIO_TMDS_POP_DOUBLE_L0_OFFSET _u(0x000001d4)
#define SIO_TMDS_POP_DOUBLE_L0_BITS   _u(0xffffffff)
#define SIO_TMDS_POP_DOUBLE_L0_RESET  _u(0x00000000)
#define SIO_TMDS_POP_DOUBLE_L0_MSB    _u(31)
#define SIO_TMDS_POP_DOUBLE_L0_LSB    _u(0)
#define SIO_TMDS_POP_DOUBLE_L0_ACCESS "RF"
// =============================================================================
// Register    : SIO_TMDS_PEEK_DOUBLE_L1
// Description : Get lane 1 of the encoding of two pixels' worth of colour data.
//               Two 10-bit TMDS symbols are packed at the bottom of a 32-bit
//               word.
//
//               The PEEK alias does not shift the colour register when read,
//               but still advances the lane 1 DC balance state. This is useful
//               if all 3 lanes' worth of encode are to be read at once, rather
//               than processing the entire scanline for one lane before moving
//               to the next lane.
#define SIO_TMDS_PEEK_DOUBLE_L1_OFFSET _u(0x000001d8)
#define SIO_TMDS_PEEK_DOUBLE_L1_BITS   _u(0xffffffff)
#define SIO_TMDS_PEEK_DOUBLE_L1_RESET  _u(0x00000000)
#define SIO_TMDS_PEEK_DOUBLE_L1_MSB    _u(31)
#define SIO_TMDS_PEEK_DOUBLE_L1_LSB    _u(0)
#define SIO_TMDS_PEEK_DOUBLE_L1_ACCESS "RF"
// =============================================================================
// Register    : SIO_TMDS_POP_DOUBLE_L1
// Description : Get lane 1 of the encoding of two pixels' worth of colour data.
//               Two 10-bit TMDS symbols are packed at the bottom of a 32-bit
//               word.
//
//               The POP alias shifts the colour register when read, according
//               to the values of PIX_SHIFT and PIX2_NOSHIFT.
#define SIO_TMDS_POP_DOUBLE_L1_OFFSET _u(0x000001dc)
#define SIO_TMDS_POP_DOUBLE_L1_BITS   _u(0xffffffff)
#define SIO_TMDS_POP_DOUBLE_L1_RESET  _u(0x00000000)
#define SIO_TMDS_POP_DOUBLE_L1_MSB    _u(31)
#define SIO_TMDS_POP_DOUBLE_L1_LSB    _u(0)
#define SIO_TMDS_POP_DOUBLE_L1_ACCESS "RF"
// =============================================================================
// Register    : SIO_TMDS_PEEK_DOUBLE_L2
// Description : Get lane 2 of the encoding of two pixels' worth of colour data.
//               Two 10-bit TMDS symbols are packed at the bottom of a 32-bit
//               word.
//
//               The PEEK alias does not shift the colour register when read,
//               but still advances the lane 2 DC balance state. This is useful
//               if all 3 lanes' worth of encode are to be read at once, rather
//               than processing the entire scanline for one lane before moving
//               to the next lane.
#define SIO_TMDS_PEEK_DOUBLE_L2_OFFSET _u(0x000001e0)
#define SIO_TMDS_PEEK_DOUBLE_L2_BITS   _u(0xffffffff)
#define SIO_TMDS_PEEK_DOUBLE_L2_RESET  _u(0x00000000)
#define SIO_TMDS_PEEK_DOUBLE_L2_MSB    _u(31)
#define SIO_TMDS_PEEK_DOUBLE_L2_LSB    _u(0)
#define SIO_TMDS_PEEK_DOUBLE_L2_ACCESS "RF"
// =============================================================================
// Register    : SIO_TMDS_POP_DOUBLE_L2
// Description : Get lane 2 of the encoding of two pixels' worth of colour data.
//               Two 10-bit TMDS symbols are packed at the bottom of a 32-bit
//               word.
//
//               The POP alias shifts the colour register when read, according
//               to the values of PIX_SHIFT and PIX2_NOSHIFT.
#define SIO_TMDS_POP_DOUBLE_L2_OFFSET _u(0x000001e4)
#define SIO_TMDS_POP_DOUBLE_L2_BITS   _u(0xffffffff)
#define SIO_TMDS_POP_DOUBLE_L2_RESET  _u(0x00000000)
#define SIO_TMDS_POP_DOUBLE_L2_MSB    _u(31)
#define SIO_TMDS_POP_DOUBLE_L2_LSB    _u(0)
#define SIO_TMDS_POP_DOUBLE_L2_ACCESS "RF"
// =============================================================================
#endif // _HARDWARE_REGS_SIO_H