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

pub use imxrt1062_core::*;

pub use imxrt1062_adc1 as adc1;
pub use imxrt1062_adc_etc as adc_etc;
pub use imxrt1062_aipstz1 as aipstz1;
pub use imxrt1062_aoi1 as aoi1;
pub use imxrt1062_bee as bee;
pub use imxrt1062_can1 as can1;
pub use imxrt1062_can3 as can3;
pub use imxrt1062_ccm as ccm;
pub use imxrt1062_ccm_analog as ccm_analog;
pub use imxrt1062_cmp1 as cmp1;
pub use imxrt1062_csi as csi;
pub use imxrt1062_csu as csu;
pub use imxrt1062_dcdc as dcdc;
pub use imxrt1062_dcp as dcp;
pub use imxrt1062_dma0 as dma0;
pub use imxrt1062_dmamux as dmamux;
pub use imxrt1062_enc1 as enc1;
pub use imxrt1062_enet as enet;
pub use imxrt1062_ewm as ewm;
pub use imxrt1062_flexio1 as flexio1;
pub use imxrt1062_flexram as flexram;
pub use imxrt1062_flexspi as flexspi;
pub use imxrt1062_gpc as gpc;
pub use imxrt1062_gpio1 as gpio1;
pub use imxrt1062_gpt1 as gpt1;
pub use imxrt1062_iomuxc as iomuxc;
pub use imxrt1062_iomuxc_gpr as iomuxc_gpr;
pub use imxrt1062_iomuxc_snvs as iomuxc_snvs;
pub use imxrt1062_iomuxc_snvs_gpr as iomuxc_snvs_gpr;
pub use imxrt1062_kpp as kpp;
pub use imxrt1062_lcdif as lcdif;
pub use imxrt1062_lpi2c1 as lpi2c1;
pub use imxrt1062_lpspi1 as lpspi1;
pub use imxrt1062_lpuart1 as lpuart1;
pub use imxrt1062_ocotp as ocotp;
pub use imxrt1062_pgc as pgc;
pub use imxrt1062_pit as pit;
pub use imxrt1062_pmu as pmu;
pub use imxrt1062_pwm1 as pwm1;
pub use imxrt1062_pxp as pxp;
pub use imxrt1062_romc as romc;
pub use imxrt1062_rtwdog as rtwdog;
pub use imxrt1062_sai1 as sai1;
pub use imxrt1062_semc as semc;
pub use imxrt1062_snvs as snvs;
pub use imxrt1062_spdif as spdif;
pub use imxrt1062_src as src;
pub use imxrt1062_system_control as system_control;
pub use imxrt1062_tempmon as tempmon;
pub use imxrt1062_tmr1 as tmr1;
pub use imxrt1062_trng as trng;
pub use imxrt1062_tsc as tsc;
pub use imxrt1062_usb1 as usb1;
pub use imxrt1062_usb_analog as usb_analog;
pub use imxrt1062_usbnc1 as usbnc1;
pub use imxrt1062_usbphy1 as usbphy1;
pub use imxrt1062_usdhc1 as usdhc1;
pub use imxrt1062_wdog1 as wdog1;
pub use imxrt1062_xbara1 as xbara1;
pub use imxrt1062_xbarb2 as xbarb2;
pub use imxrt1062_xtalosc24m as xtalosc24m;

use core::marker::PhantomData;
use core::ops::Deref;

#[doc = "AIPSTZ Control Registers"]
pub struct AIPSTZ1 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for AIPSTZ1 {}
impl AIPSTZ1 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const aipstz1::RegisterBlock {
        0x4007_c000 as *const _
    }
}
impl Deref for AIPSTZ1 {
    type Target = aipstz1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*AIPSTZ1::ptr() }
    }
}

#[doc = "AIPSTZ Control Registers"]
pub struct AIPSTZ2 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for AIPSTZ2 {}
impl AIPSTZ2 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const aipstz1::RegisterBlock {
        0x4017_c000 as *const _
    }
}
impl Deref for AIPSTZ2 {
    type Target = aipstz1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*AIPSTZ2::ptr() }
    }
}
#[doc = "AIPSTZ Control Registers"]
pub struct AIPSTZ3 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for AIPSTZ3 {}
impl AIPSTZ3 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const aipstz1::RegisterBlock {
        0x4027_c000 as *const _
    }
}
impl Deref for AIPSTZ3 {
    type Target = aipstz1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*AIPSTZ3::ptr() }
    }
}
#[doc = "AIPSTZ Control Registers"]
pub struct AIPSTZ4 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for AIPSTZ4 {}
impl AIPSTZ4 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const aipstz1::RegisterBlock {
        0x4037_c000 as *const _
    }
}
impl Deref for AIPSTZ4 {
    type Target = aipstz1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*AIPSTZ4::ptr() }
    }
}
#[doc = "DCDC"]
pub struct DCDC {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for DCDC {}
impl DCDC {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const dcdc::RegisterBlock {
        0x4008_0000 as *const _
    }
}
impl Deref for DCDC {
    type Target = dcdc::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*DCDC::ptr() }
    }
}

#[doc = "PIT"]
pub struct PIT {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for PIT {}
impl PIT {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const pit::RegisterBlock {
        0x4008_4000 as *const _
    }
}
impl Deref for PIT {
    type Target = pit::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*PIT::ptr() }
    }
}

#[doc = "High-Speed Comparator (CMP), Voltage Reference (VREF) Digital-to-Analog Converter (DAC), and Analog Mux (ANMUX)"]
pub struct CMP1 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for CMP1 {}
impl CMP1 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const cmp1::RegisterBlock {
        0x4009_4000 as *const _
    }
}
impl Deref for CMP1 {
    type Target = cmp1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*CMP1::ptr() }
    }
}
#[doc = "High-Speed Comparator (CMP), Voltage Reference (VREF) Digital-to-Analog Converter (DAC), and Analog Mux (ANMUX)"]
pub struct CMP2 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for CMP2 {}
impl CMP2 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const cmp1::RegisterBlock {
        0x4009_4008 as *const _
    }
}
impl Deref for CMP2 {
    type Target = cmp1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*CMP2::ptr() }
    }
}
#[doc = "High-Speed Comparator (CMP), Voltage Reference (VREF) Digital-to-Analog Converter (DAC), and Analog Mux (ANMUX)"]
pub struct CMP3 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for CMP3 {}
impl CMP3 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const cmp1::RegisterBlock {
        0x4009_4010 as *const _
    }
}
impl Deref for CMP3 {
    type Target = cmp1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*CMP3::ptr() }
    }
}
#[doc = "High-Speed Comparator (CMP), Voltage Reference (VREF) Digital-to-Analog Converter (DAC), and Analog Mux (ANMUX)"]
pub struct CMP4 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for CMP4 {}
impl CMP4 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const cmp1::RegisterBlock {
        0x4009_4018 as *const _
    }
}
impl Deref for CMP4 {
    type Target = cmp1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*CMP4::ptr() }
    }
}
#[doc = "IOMUXC"]
pub struct IOMUXC_SNVS_GPR {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for IOMUXC_SNVS_GPR {}
impl IOMUXC_SNVS_GPR {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const iomuxc_snvs_gpr::RegisterBlock {
        0x400a_4000 as *const _
    }
}
impl Deref for IOMUXC_SNVS_GPR {
    type Target = iomuxc_snvs_gpr::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*IOMUXC_SNVS_GPR::ptr() }
    }
}
#[doc = "IOMUXC_SNVS"]
pub struct IOMUXC_SNVS {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for IOMUXC_SNVS {}
impl IOMUXC_SNVS {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const iomuxc_snvs::RegisterBlock {
        0x400a_8000 as *const _
    }
}
impl Deref for IOMUXC_SNVS {
    type Target = iomuxc_snvs::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*IOMUXC_SNVS::ptr() }
    }
}
#[doc = "IOMUXC_GPR"]
pub struct IOMUXC_GPR {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for IOMUXC_GPR {}
impl IOMUXC_GPR {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const iomuxc_gpr::RegisterBlock {
        0x400a_c000 as *const _
    }
}
impl Deref for IOMUXC_GPR {
    type Target = iomuxc_gpr::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*IOMUXC_GPR::ptr() }
    }
}

#[doc = "FLEXRAM"]
pub struct FLEXRAM {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for FLEXRAM {}
impl FLEXRAM {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const flexram::RegisterBlock {
        0x400b_0000 as *const _
    }
}
impl Deref for FLEXRAM {
    type Target = flexram::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*FLEXRAM::ptr() }
    }
}
#[doc = "EWM"]
pub struct EWM {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for EWM {}
impl EWM {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const ewm::RegisterBlock {
        0x400b_4000 as *const _
    }
}
impl Deref for EWM {
    type Target = ewm::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*EWM::ptr() }
    }
}
#[doc = "WDOG"]
pub struct WDOG1 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for WDOG1 {}
impl WDOG1 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const wdog1::RegisterBlock {
        0x400b_8000 as *const _
    }
}
impl Deref for WDOG1 {
    type Target = wdog1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*WDOG1::ptr() }
    }
}
#[doc = "WDOG"]
pub struct WDOG2 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for WDOG2 {}
impl WDOG2 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const wdog1::RegisterBlock {
        0x400d_0000 as *const _
    }
}
impl Deref for WDOG2 {
    type Target = wdog1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*WDOG2::ptr() }
    }
}
#[doc = "WDOG"]
pub struct RTWDOG {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for RTWDOG {}
impl RTWDOG {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const rtwdog::RegisterBlock {
        0x400b_c000 as *const _
    }
}
impl Deref for RTWDOG {
    type Target = rtwdog::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*RTWDOG::ptr() }
    }
}
#[doc = "Analog-to-Digital Converter"]
pub struct ADC1 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for ADC1 {}
impl ADC1 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const adc1::RegisterBlock {
        0x400c_4000 as *const _
    }
}
impl Deref for ADC1 {
    type Target = adc1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*ADC1::ptr() }
    }
}
#[doc = "Analog-to-Digital Converter"]
pub struct ADC2 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for ADC2 {}
impl ADC2 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const adc1::RegisterBlock {
        0x400c_8000 as *const _
    }
}
impl Deref for ADC2 {
    type Target = adc1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*ADC2::ptr() }
    }
}
#[doc = "TRNG"]
pub struct TRNG {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for TRNG {}
impl TRNG {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const trng::RegisterBlock {
        0x400c_c000 as *const _
    }
}
impl Deref for TRNG {
    type Target = trng::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*TRNG::ptr() }
    }
}
#[doc = "SNVS"]
pub struct SNVS {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for SNVS {}
impl SNVS {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const snvs::RegisterBlock {
        0x400d_4000 as *const _
    }
}
impl Deref for SNVS {
    type Target = snvs::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*SNVS::ptr() }
    }
}
#[doc = "CCM_ANALOG"]
pub struct CCM_ANALOG {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for CCM_ANALOG {}
impl CCM_ANALOG {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const ccm_analog::RegisterBlock {
        0x400d_8000 as *const _
    }
}
impl Deref for CCM_ANALOG {
    type Target = ccm_analog::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*CCM_ANALOG::ptr() }
    }
}

#[doc = "PMU"]
pub struct PMU {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for PMU {}
impl PMU {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const pmu::RegisterBlock {
        0x400d_8000 as *const _
    }
}
impl Deref for PMU {
    type Target = pmu::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*PMU::ptr() }
    }
}
#[doc = "Temperature Monitor"]
pub struct TEMPMON {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for TEMPMON {}
impl TEMPMON {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const tempmon::RegisterBlock {
        0x400d_8000 as *const _
    }
}
impl Deref for TEMPMON {
    type Target = tempmon::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*TEMPMON::ptr() }
    }
}
#[doc = "USB Analog"]
pub struct USB_ANALOG {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for USB_ANALOG {}
impl USB_ANALOG {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const usb_analog::RegisterBlock {
        0x400d_8000 as *const _
    }
}
impl Deref for USB_ANALOG {
    type Target = usb_analog::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*USB_ANALOG::ptr() }
    }
}
#[doc = "XTALOSC24M"]
pub struct XTALOSC24M {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for XTALOSC24M {}
impl XTALOSC24M {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const xtalosc24m::RegisterBlock {
        0x400d_8000 as *const _
    }
}
impl Deref for XTALOSC24M {
    type Target = xtalosc24m::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*XTALOSC24M::ptr() }
    }
}
#[doc = "USBPHY Register Reference Index"]
pub struct USBPHY1 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for USBPHY1 {}
impl USBPHY1 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const usbphy1::RegisterBlock {
        0x400d_9000 as *const _
    }
}
impl Deref for USBPHY1 {
    type Target = usbphy1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*USBPHY1::ptr() }
    }
}
#[doc = "USBPHY Register Reference Index"]
pub struct USBPHY2 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for USBPHY2 {}
impl USBPHY2 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const usbphy1::RegisterBlock {
        0x400d_a000 as *const _
    }
}
impl Deref for USBPHY2 {
    type Target = usbphy1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*USBPHY2::ptr() }
    }
}
#[doc = "CSU registers"]
pub struct CSU {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for CSU {}
impl CSU {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const csu::RegisterBlock {
        0x400d_c000 as *const _
    }
}
impl Deref for CSU {
    type Target = csu::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*CSU::ptr() }
    }
}
#[doc = "Touch Screen Controller"]
pub struct TSC {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for TSC {}
impl TSC {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const tsc::RegisterBlock {
        0x400e_0000 as *const _
    }
}
impl Deref for TSC {
    type Target = tsc::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*TSC::ptr() }
    }
}
#[doc = "DMA"]
pub struct DMA0 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for DMA0 {}
impl DMA0 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const dma0::RegisterBlock {
        0x400e_8000 as *const _
    }
}
impl Deref for DMA0 {
    type Target = dma0::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*DMA0::ptr() }
    }
}
#[doc = "DMA_CH_MUX"]
pub struct DMAMUX {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for DMAMUX {}
impl DMAMUX {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const dmamux::RegisterBlock {
        0x400e_c000 as *const _
    }
}
impl Deref for DMAMUX {
    type Target = dmamux::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*DMAMUX::ptr() }
    }
}
#[doc = "GPC"]
pub struct GPC {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for GPC {}
impl GPC {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const gpc::RegisterBlock {
        0x400f_4000 as *const _
    }
}
impl Deref for GPC {
    type Target = gpc::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*GPC::ptr() }
    }
}
#[doc = "PGC"]
pub struct PGC {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for PGC {}
impl PGC {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const pgc::RegisterBlock {
        0x400f_4000 as *const _
    }
}
impl Deref for PGC {
    type Target = pgc::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*PGC::ptr() }
    }
}
#[doc = "SRC"]
pub struct SRC {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for SRC {}
impl SRC {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const src::RegisterBlock {
        0x400f_8000 as *const _
    }
}
impl Deref for SRC {
    type Target = src::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*SRC::ptr() }
    }
}
#[doc = "CCM"]
pub struct CCM {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for CCM {}
impl CCM {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const ccm::RegisterBlock {
        0x400f_c000 as *const _
    }
}
impl Deref for CCM {
    type Target = ccm::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*CCM::ptr() }
    }
}

#[doc = "ROMC"]
pub struct ROMC {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for ROMC {}
impl ROMC {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const romc::RegisterBlock {
        0x4018_0000 as *const _
    }
}
impl Deref for ROMC {
    type Target = romc::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*ROMC::ptr() }
    }
}
#[doc = "LPUART"]
pub struct LPUART1 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for LPUART1 {}
impl LPUART1 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const lpuart1::RegisterBlock {
        0x4018_4000 as *const _
    }
}
impl Deref for LPUART1 {
    type Target = lpuart1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*LPUART1::ptr() }
    }
}
#[doc = "LPUART"]
pub struct LPUART2 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for LPUART2 {}
impl LPUART2 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const lpuart1::RegisterBlock {
        0x4018_8000 as *const _
    }
}
impl Deref for LPUART2 {
    type Target = lpuart1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*LPUART2::ptr() }
    }
}
#[doc = "LPUART"]
pub struct LPUART3 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for LPUART3 {}
impl LPUART3 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const lpuart1::RegisterBlock {
        0x4018_c000 as *const _
    }
}
impl Deref for LPUART3 {
    type Target = lpuart1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*LPUART3::ptr() }
    }
}
#[doc = "LPUART"]
pub struct LPUART4 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for LPUART4 {}
impl LPUART4 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const lpuart1::RegisterBlock {
        0x4019_0000 as *const _
    }
}
impl Deref for LPUART4 {
    type Target = lpuart1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*LPUART4::ptr() }
    }
}
#[doc = "LPUART"]
pub struct LPUART5 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for LPUART5 {}
impl LPUART5 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const lpuart1::RegisterBlock {
        0x4019_4000 as *const _
    }
}
impl Deref for LPUART5 {
    type Target = lpuart1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*LPUART5::ptr() }
    }
}
#[doc = "LPUART"]
pub struct LPUART6 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for LPUART6 {}
impl LPUART6 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const lpuart1::RegisterBlock {
        0x4019_8000 as *const _
    }
}
impl Deref for LPUART6 {
    type Target = lpuart1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*LPUART6::ptr() }
    }
}
#[doc = "LPUART"]
pub struct LPUART7 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for LPUART7 {}
impl LPUART7 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const lpuart1::RegisterBlock {
        0x4019_c000 as *const _
    }
}
impl Deref for LPUART7 {
    type Target = lpuart1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*LPUART7::ptr() }
    }
}
#[doc = "LPUART"]
pub struct LPUART8 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for LPUART8 {}
impl LPUART8 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const lpuart1::RegisterBlock {
        0x401a_0000 as *const _
    }
}
impl Deref for LPUART8 {
    type Target = lpuart1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*LPUART8::ptr() }
    }
}
#[doc = "FLEXIO"]
pub struct FLEXIO1 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for FLEXIO1 {}
impl FLEXIO1 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const flexio1::RegisterBlock {
        0x401a_c000 as *const _
    }
}
impl Deref for FLEXIO1 {
    type Target = flexio1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*FLEXIO1::ptr() }
    }
}
#[doc = "FLEXIO"]
pub struct FLEXIO2 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for FLEXIO2 {}
impl FLEXIO2 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const flexio1::RegisterBlock {
        0x401b_0000 as *const _
    }
}
impl Deref for FLEXIO2 {
    type Target = flexio1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*FLEXIO2::ptr() }
    }
}
#[doc = "FLEXIO"]
pub struct FLEXIO3 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for FLEXIO3 {}
impl FLEXIO3 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const flexio1::RegisterBlock {
        0x4202_0000 as *const _
    }
}
impl Deref for FLEXIO3 {
    type Target = flexio1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*FLEXIO3::ptr() }
    }
}
#[doc = "GPIO"]
pub struct GPIO1 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for GPIO1 {}
impl GPIO1 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const gpio1::RegisterBlock {
        0x401b_8000 as *const _
    }
}
impl Deref for GPIO1 {
    type Target = gpio1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*GPIO1::ptr() }
    }
}

#[doc = "GPIO"]
pub struct GPIO5 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for GPIO5 {}
impl GPIO5 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const gpio1::RegisterBlock {
        0x400c_0000 as *const _
    }
}
impl Deref for GPIO5 {
    type Target = gpio1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*GPIO5::ptr() }
    }
}
#[doc = "GPIO"]
pub struct GPIO2 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for GPIO2 {}
impl GPIO2 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const gpio1::RegisterBlock {
        0x401b_c000 as *const _
    }
}
impl Deref for GPIO2 {
    type Target = gpio1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*GPIO2::ptr() }
    }
}
#[doc = "GPIO"]
pub struct GPIO3 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for GPIO3 {}
impl GPIO3 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const gpio1::RegisterBlock {
        0x401c_0000 as *const _
    }
}
impl Deref for GPIO3 {
    type Target = gpio1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*GPIO3::ptr() }
    }
}
#[doc = "GPIO"]
pub struct GPIO4 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for GPIO4 {}
impl GPIO4 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const gpio1::RegisterBlock {
        0x401c_4000 as *const _
    }
}
impl Deref for GPIO4 {
    type Target = gpio1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*GPIO4::ptr() }
    }
}
#[doc = "GPIO"]
pub struct GPIO6 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for GPIO6 {}
impl GPIO6 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const gpio1::RegisterBlock {
        0x4200_0000 as *const _
    }
}
impl Deref for GPIO6 {
    type Target = gpio1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*GPIO6::ptr() }
    }
}
#[doc = "GPIO"]
pub struct GPIO7 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for GPIO7 {}
impl GPIO7 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const gpio1::RegisterBlock {
        0x4200_4000 as *const _
    }
}
impl Deref for GPIO7 {
    type Target = gpio1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*GPIO7::ptr() }
    }
}
#[doc = "GPIO"]
pub struct GPIO8 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for GPIO8 {}
impl GPIO8 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const gpio1::RegisterBlock {
        0x4200_8000 as *const _
    }
}
impl Deref for GPIO8 {
    type Target = gpio1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*GPIO8::ptr() }
    }
}
#[doc = "GPIO"]
pub struct GPIO9 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for GPIO9 {}
impl GPIO9 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const gpio1::RegisterBlock {
        0x4200_c000 as *const _
    }
}
impl Deref for GPIO9 {
    type Target = gpio1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*GPIO9::ptr() }
    }
}
#[doc = "FLEXCAN"]
pub struct CAN1 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for CAN1 {}
impl CAN1 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const can1::RegisterBlock {
        0x401d_0000 as *const _
    }
}
impl Deref for CAN1 {
    type Target = can1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*CAN1::ptr() }
    }
}
#[doc = "FLEXCAN"]
pub struct CAN2 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for CAN2 {}
impl CAN2 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const can1::RegisterBlock {
        0x401d_4000 as *const _
    }
}
impl Deref for CAN2 {
    type Target = can1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*CAN2::ptr() }
    }
}
#[doc = "CAN"]
pub struct CAN3 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for CAN3 {}
impl CAN3 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const can3::RegisterBlock {
        0x401d_8000 as *const _
    }
}
impl Deref for CAN3 {
    type Target = can3::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*CAN3::ptr() }
    }
}
#[doc = "Quad Timer"]
pub struct TMR1 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for TMR1 {}
impl TMR1 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const tmr1::RegisterBlock {
        0x401d_c000 as *const _
    }
}
impl Deref for TMR1 {
    type Target = tmr1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*TMR1::ptr() }
    }
}
#[doc = "Quad Timer"]
pub struct TMR2 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for TMR2 {}
impl TMR2 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const tmr1::RegisterBlock {
        0x401e_0000 as *const _
    }
}
impl Deref for TMR2 {
    type Target = tmr1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*TMR2::ptr() }
    }
}
#[doc = "Quad Timer"]
pub struct TMR3 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for TMR3 {}
impl TMR3 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const tmr1::RegisterBlock {
        0x401e_4000 as *const _
    }
}
impl Deref for TMR3 {
    type Target = tmr1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*TMR3::ptr() }
    }
}
#[doc = "Quad Timer"]
pub struct TMR4 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for TMR4 {}
impl TMR4 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const tmr1::RegisterBlock {
        0x401e_8000 as *const _
    }
}
impl Deref for TMR4 {
    type Target = tmr1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*TMR4::ptr() }
    }
}
#[doc = "GPT"]
pub struct GPT1 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for GPT1 {}
impl GPT1 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const gpt1::RegisterBlock {
        0x401e_c000 as *const _
    }
}
impl Deref for GPT1 {
    type Target = gpt1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*GPT1::ptr() }
    }
}

#[doc = "GPT"]
pub struct GPT2 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for GPT2 {}
impl GPT2 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const gpt1::RegisterBlock {
        0x401f_0000 as *const _
    }
}
impl Deref for GPT2 {
    type Target = gpt1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*GPT2::ptr() }
    }
}
#[doc = "OCOTP"]
pub struct OCOTP {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for OCOTP {}
impl OCOTP {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const ocotp::RegisterBlock {
        0x401f_4000 as *const _
    }
}
impl Deref for OCOTP {
    type Target = ocotp::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*OCOTP::ptr() }
    }
}
#[doc = "IOMUXC"]
pub struct IOMUXC {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for IOMUXC {}
impl IOMUXC {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const iomuxc::RegisterBlock {
        0x401f_8000 as *const _
    }
}
impl Deref for IOMUXC {
    type Target = iomuxc::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*IOMUXC::ptr() }
    }
}

#[doc = "KPP Registers"]
pub struct KPP {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for KPP {}
impl KPP {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const kpp::RegisterBlock {
        0x401f_c000 as *const _
    }
}
impl Deref for KPP {
    type Target = kpp::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*KPP::ptr() }
    }
}
#[doc = "FlexSPI"]
pub struct FLEXSPI {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for FLEXSPI {}
impl FLEXSPI {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const flexspi::RegisterBlock {
        0x402a_8000 as *const _
    }
}
impl Deref for FLEXSPI {
    type Target = flexspi::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*FLEXSPI::ptr() }
    }
}
#[doc = "FlexSPI"]
pub struct FLEXSPI2 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for FLEXSPI2 {}
impl FLEXSPI2 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const flexspi::RegisterBlock {
        0x402a_4000 as *const _
    }
}
impl Deref for FLEXSPI2 {
    type Target = flexspi::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*FLEXSPI2::ptr() }
    }
}
#[doc = "PXP v2.0 Register Reference Index"]
pub struct PXP {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for PXP {}
impl PXP {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const pxp::RegisterBlock {
        0x402b_4000 as *const _
    }
}
impl Deref for PXP {
    type Target = pxp::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*PXP::ptr() }
    }
}
#[doc = "LCDIF Register Reference Index"]
pub struct LCDIF {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for LCDIF {}
impl LCDIF {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const lcdif::RegisterBlock {
        0x402b_8000 as *const _
    }
}
impl Deref for LCDIF {
    type Target = lcdif::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*LCDIF::ptr() }
    }
}
#[doc = "CSI"]
pub struct CSI {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for CSI {}
impl CSI {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const csi::RegisterBlock {
        0x402b_c000 as *const _
    }
}
impl Deref for CSI {
    type Target = csi::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*CSI::ptr() }
    }
}
#[doc = "uSDHC"]
pub struct USDHC1 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for USDHC1 {}
impl USDHC1 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const usdhc1::RegisterBlock {
        0x402c_0000 as *const _
    }
}
impl Deref for USDHC1 {
    type Target = usdhc1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*USDHC1::ptr() }
    }
}
#[doc = "uSDHC"]
pub struct USDHC2 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for USDHC2 {}
impl USDHC2 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const usdhc1::RegisterBlock {
        0x402c_4000 as *const _
    }
}
impl Deref for USDHC2 {
    type Target = usdhc1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*USDHC2::ptr() }
    }
}
#[doc = "Ethernet MAC-NET Core"]
pub struct ENET {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for ENET {}
impl ENET {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const enet::RegisterBlock {
        0x402d_8000 as *const _
    }
}
impl Deref for ENET {
    type Target = enet::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*ENET::ptr() }
    }
}
#[doc = "Ethernet MAC-NET Core"]
pub struct ENET2 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for ENET2 {}
impl ENET2 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const enet::RegisterBlock {
        0x402d_4000 as *const _
    }
}
impl Deref for ENET2 {
    type Target = enet::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*ENET2::ptr() }
    }
}
#[doc = "USB"]
pub struct USB1 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for USB1 {}
impl USB1 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const usb1::RegisterBlock {
        0x402e_0000 as *const _
    }
}
impl Deref for USB1 {
    type Target = usb1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*USB1::ptr() }
    }
}
#[doc = "USB"]
pub struct USB2 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for USB2 {}
impl USB2 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const usb1::RegisterBlock {
        0x402e_0200 as *const _
    }
}
impl Deref for USB2 {
    type Target = usb1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*USB2::ptr() }
    }
}
#[doc = "USB"]
pub struct USBNC1 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for USBNC1 {}
impl USBNC1 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const usbnc1::RegisterBlock {
        0x402e_0000 as *const _
    }
}
impl Deref for USBNC1 {
    type Target = usbnc1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*USBNC1::ptr() }
    }
}
#[doc = "USB"]
pub struct USBNC2 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for USBNC2 {}
impl USBNC2 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const usbnc1::RegisterBlock {
        0x402e_0004 as *const _
    }
}
impl Deref for USBNC2 {
    type Target = usbnc1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*USBNC2::ptr() }
    }
}
#[doc = "SEMC"]
pub struct SEMC {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for SEMC {}
impl SEMC {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const semc::RegisterBlock {
        0x402f_0000 as *const _
    }
}
impl Deref for SEMC {
    type Target = semc::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*SEMC::ptr() }
    }
}
#[doc = "DCP register reference index"]
pub struct DCP {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for DCP {}
impl DCP {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const dcp::RegisterBlock {
        0x402f_c000 as *const _
    }
}
impl Deref for DCP {
    type Target = dcp::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*DCP::ptr() }
    }
}
#[doc = "SPDIF"]
pub struct SPDIF {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for SPDIF {}
impl SPDIF {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const spdif::RegisterBlock {
        0x4038_0000 as *const _
    }
}
impl Deref for SPDIF {
    type Target = spdif::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*SPDIF::ptr() }
    }
}
#[doc = "I2S"]
pub struct SAI1 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for SAI1 {}
impl SAI1 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const sai1::RegisterBlock {
        0x4038_4000 as *const _
    }
}
impl Deref for SAI1 {
    type Target = sai1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*SAI1::ptr() }
    }
}
#[doc = "I2S"]
pub struct SAI2 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for SAI2 {}
impl SAI2 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const sai1::RegisterBlock {
        0x4038_8000 as *const _
    }
}
impl Deref for SAI2 {
    type Target = sai1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*SAI2::ptr() }
    }
}
#[doc = "I2S"]
pub struct SAI3 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for SAI3 {}
impl SAI3 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const sai1::RegisterBlock {
        0x4038_c000 as *const _
    }
}
impl Deref for SAI3 {
    type Target = sai1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*SAI3::ptr() }
    }
}
#[doc = "LPSPI"]
pub struct LPSPI1 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for LPSPI1 {}
impl LPSPI1 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const lpspi1::RegisterBlock {
        0x4039_4000 as *const _
    }
}
impl Deref for LPSPI1 {
    type Target = lpspi1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*LPSPI1::ptr() }
    }
}
#[doc = "LPSPI"]
pub struct LPSPI2 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for LPSPI2 {}
impl LPSPI2 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const lpspi1::RegisterBlock {
        0x4039_8000 as *const _
    }
}
impl Deref for LPSPI2 {
    type Target = lpspi1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*LPSPI2::ptr() }
    }
}
#[doc = "LPSPI"]
pub struct LPSPI3 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for LPSPI3 {}
impl LPSPI3 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const lpspi1::RegisterBlock {
        0x4039_c000 as *const _
    }
}
impl Deref for LPSPI3 {
    type Target = lpspi1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*LPSPI3::ptr() }
    }
}
#[doc = "LPSPI"]
pub struct LPSPI4 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for LPSPI4 {}
impl LPSPI4 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const lpspi1::RegisterBlock {
        0x403a_0000 as *const _
    }
}
impl Deref for LPSPI4 {
    type Target = lpspi1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*LPSPI4::ptr() }
    }
}
#[doc = "ADC_ETC"]
pub struct ADC_ETC {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for ADC_ETC {}
impl ADC_ETC {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const adc_etc::RegisterBlock {
        0x403b_0000 as *const _
    }
}
impl Deref for ADC_ETC {
    type Target = adc_etc::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*ADC_ETC::ptr() }
    }
}
#[doc = "AND/OR/INVERT module"]
pub struct AOI1 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for AOI1 {}
impl AOI1 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const aoi1::RegisterBlock {
        0x403b_4000 as *const _
    }
}
impl Deref for AOI1 {
    type Target = aoi1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*AOI1::ptr() }
    }
}
#[doc = "AND/OR/INVERT module"]
pub struct AOI2 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for AOI2 {}
impl AOI2 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const aoi1::RegisterBlock {
        0x403b_8000 as *const _
    }
}
impl Deref for AOI2 {
    type Target = aoi1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*AOI2::ptr() }
    }
}
#[doc = "Crossbar Switch"]
pub struct XBARA1 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for XBARA1 {}
impl XBARA1 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const xbara1::RegisterBlock {
        0x403b_c000 as *const _
    }
}
impl Deref for XBARA1 {
    type Target = xbara1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*XBARA1::ptr() }
    }
}
#[doc = "Crossbar Switch"]
pub struct XBARB2 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for XBARB2 {}
impl XBARB2 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const xbarb2::RegisterBlock {
        0x403c_0000 as *const _
    }
}
impl Deref for XBARB2 {
    type Target = xbarb2::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*XBARB2::ptr() }
    }
}
#[doc = "Crossbar Switch"]
pub struct XBARB3 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for XBARB3 {}
impl XBARB3 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const xbarb2::RegisterBlock {
        0x403c_4000 as *const _
    }
}
impl Deref for XBARB3 {
    type Target = xbarb2::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*XBARB3::ptr() }
    }
}
#[doc = "Quadrature Decoder"]
pub struct ENC1 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for ENC1 {}
impl ENC1 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const enc1::RegisterBlock {
        0x403c_8000 as *const _
    }
}
impl Deref for ENC1 {
    type Target = enc1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*ENC1::ptr() }
    }
}
#[doc = "Quadrature Decoder"]
pub struct ENC2 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for ENC2 {}
impl ENC2 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const enc1::RegisterBlock {
        0x403c_c000 as *const _
    }
}
impl Deref for ENC2 {
    type Target = enc1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*ENC2::ptr() }
    }
}
#[doc = "Quadrature Decoder"]
pub struct ENC3 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for ENC3 {}
impl ENC3 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const enc1::RegisterBlock {
        0x403d_0000 as *const _
    }
}
impl Deref for ENC3 {
    type Target = enc1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*ENC3::ptr() }
    }
}
#[doc = "Quadrature Decoder"]
pub struct ENC4 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for ENC4 {}
impl ENC4 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const enc1::RegisterBlock {
        0x403d_4000 as *const _
    }
}
impl Deref for ENC4 {
    type Target = enc1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*ENC4::ptr() }
    }
}
#[doc = "PWM"]
pub struct PWM1 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for PWM1 {}
impl PWM1 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const pwm1::RegisterBlock {
        0x403d_c000 as *const _
    }
}
impl Deref for PWM1 {
    type Target = pwm1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*PWM1::ptr() }
    }
}
#[doc = "PWM"]
pub struct PWM2 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for PWM2 {}
impl PWM2 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const pwm1::RegisterBlock {
        0x403e_0000 as *const _
    }
}
impl Deref for PWM2 {
    type Target = pwm1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*PWM2::ptr() }
    }
}
#[doc = "PWM"]
pub struct PWM3 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for PWM3 {}
impl PWM3 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const pwm1::RegisterBlock {
        0x403e_4000 as *const _
    }
}
impl Deref for PWM3 {
    type Target = pwm1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*PWM3::ptr() }
    }
}
#[doc = "PWM"]
pub struct PWM4 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for PWM4 {}
impl PWM4 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const pwm1::RegisterBlock {
        0x403e_8000 as *const _
    }
}
impl Deref for PWM4 {
    type Target = pwm1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*PWM4::ptr() }
    }
}
#[doc = "Bus Encryption Engine"]
pub struct BEE {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for BEE {}
impl BEE {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const bee::RegisterBlock {
        0x403e_c000 as *const _
    }
}
impl Deref for BEE {
    type Target = bee::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*BEE::ptr() }
    }
}
#[doc = "LPI2C"]
pub struct LPI2C1 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for LPI2C1 {}
impl LPI2C1 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const lpi2c1::RegisterBlock {
        0x403f_0000 as *const _
    }
}
impl Deref for LPI2C1 {
    type Target = lpi2c1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*LPI2C1::ptr() }
    }
}
#[doc = "LPI2C"]
pub struct LPI2C2 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for LPI2C2 {}
impl LPI2C2 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const lpi2c1::RegisterBlock {
        0x403f_4000 as *const _
    }
}
impl Deref for LPI2C2 {
    type Target = lpi2c1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*LPI2C2::ptr() }
    }
}
#[doc = "LPI2C"]
pub struct LPI2C3 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for LPI2C3 {}
impl LPI2C3 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const lpi2c1::RegisterBlock {
        0x403f_8000 as *const _
    }
}
impl Deref for LPI2C3 {
    type Target = lpi2c1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*LPI2C3::ptr() }
    }
}
#[doc = "LPI2C"]
pub struct LPI2C4 {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for LPI2C4 {}
impl LPI2C4 {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const lpi2c1::RegisterBlock {
        0x403f_c000 as *const _
    }
}
impl Deref for LPI2C4 {
    type Target = lpi2c1::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*LPI2C4::ptr() }
    }
}
#[doc = "System Control Block"]
pub struct SYSTEMCONTROL {
    _marker: PhantomData<*const ()>,
}
unsafe impl Send for SYSTEMCONTROL {}
impl SYSTEMCONTROL {
    #[doc = r"Returns a pointer to the register block"]
    #[inline(always)]
    pub const fn ptr() -> *const system_control::RegisterBlock {
        0xe000_e000 as *const _
    }
}
impl Deref for SYSTEMCONTROL {
    type Target = system_control::RegisterBlock;
    fn deref(&self) -> &Self::Target {
        unsafe { &*SYSTEMCONTROL::ptr() }
    }
}
#[no_mangle]
static mut DEVICE_PERIPHERALS: bool = false;
#[doc = r"All the peripherals"]
#[allow(non_snake_case)]
pub struct Peripherals {
    #[doc = "AIPSTZ1"]
    pub AIPSTZ1: AIPSTZ1,
    #[doc = "AIPSTZ2"]
    pub AIPSTZ2: AIPSTZ2,
    #[doc = "AIPSTZ3"]
    pub AIPSTZ3: AIPSTZ3,
    #[doc = "AIPSTZ4"]
    pub AIPSTZ4: AIPSTZ4,
    #[doc = "DCDC"]
    pub DCDC: DCDC,
    #[doc = "PIT"]
    pub PIT: PIT,
    #[doc = "CMP1"]
    pub CMP1: CMP1,
    #[doc = "CMP2"]
    pub CMP2: CMP2,
    #[doc = "CMP3"]
    pub CMP3: CMP3,
    #[doc = "CMP4"]
    pub CMP4: CMP4,
    #[doc = "IOMUXC_SNVS_GPR"]
    pub IOMUXC_SNVS_GPR: IOMUXC_SNVS_GPR,
    #[doc = "IOMUXC_SNVS"]
    pub IOMUXC_SNVS: IOMUXC_SNVS,
    #[doc = "IOMUXC_GPR"]
    pub IOMUXC_GPR: IOMUXC_GPR,
    #[doc = "FLEXRAM"]
    pub FLEXRAM: FLEXRAM,
    #[doc = "EWM"]
    pub EWM: EWM,
    #[doc = "WDOG1"]
    pub WDOG1: WDOG1,
    #[doc = "WDOG2"]
    pub WDOG2: WDOG2,
    #[doc = "RTWDOG"]
    pub RTWDOG: RTWDOG,
    #[doc = "ADC1"]
    pub ADC1: ADC1,
    #[doc = "ADC2"]
    pub ADC2: ADC2,
    #[doc = "TRNG"]
    pub TRNG: TRNG,
    #[doc = "SNVS"]
    pub SNVS: SNVS,
    #[doc = "CCM_ANALOG"]
    pub CCM_ANALOG: CCM_ANALOG,
    #[doc = "PMU"]
    pub PMU: PMU,
    #[doc = "TEMPMON"]
    pub TEMPMON: TEMPMON,
    #[doc = "USB_ANALOG"]
    pub USB_ANALOG: USB_ANALOG,
    #[doc = "XTALOSC24M"]
    pub XTALOSC24M: XTALOSC24M,
    #[doc = "USBPHY1"]
    pub USBPHY1: USBPHY1,
    #[doc = "USBPHY2"]
    pub USBPHY2: USBPHY2,
    #[doc = "CSU"]
    pub CSU: CSU,
    #[doc = "TSC"]
    pub TSC: TSC,
    #[doc = "DMA0"]
    pub DMA0: DMA0,
    #[doc = "DMAMUX"]
    pub DMAMUX: DMAMUX,
    #[doc = "GPC"]
    pub GPC: GPC,
    #[doc = "PGC"]
    pub PGC: PGC,
    #[doc = "SRC"]
    pub SRC: SRC,
    #[doc = "CCM"]
    pub CCM: CCM,
    #[doc = "ROMC"]
    pub ROMC: ROMC,
    #[doc = "LPUART1"]
    pub LPUART1: LPUART1,
    #[doc = "LPUART2"]
    pub LPUART2: LPUART2,
    #[doc = "LPUART3"]
    pub LPUART3: LPUART3,
    #[doc = "LPUART4"]
    pub LPUART4: LPUART4,
    #[doc = "LPUART5"]
    pub LPUART5: LPUART5,
    #[doc = "LPUART6"]
    pub LPUART6: LPUART6,
    #[doc = "LPUART7"]
    pub LPUART7: LPUART7,
    #[doc = "LPUART8"]
    pub LPUART8: LPUART8,
    #[doc = "FLEXIO1"]
    pub FLEXIO1: FLEXIO1,
    #[doc = "FLEXIO2"]
    pub FLEXIO2: FLEXIO2,
    #[doc = "FLEXIO3"]
    pub FLEXIO3: FLEXIO3,
    #[doc = "GPIO1"]
    pub GPIO1: GPIO1,
    #[doc = "GPIO5"]
    pub GPIO5: GPIO5,
    #[doc = "GPIO2"]
    pub GPIO2: GPIO2,
    #[doc = "GPIO3"]
    pub GPIO3: GPIO3,
    #[doc = "GPIO4"]
    pub GPIO4: GPIO4,
    #[doc = "GPIO6"]
    pub GPIO6: GPIO6,
    #[doc = "GPIO7"]
    pub GPIO7: GPIO7,
    #[doc = "GPIO8"]
    pub GPIO8: GPIO8,
    #[doc = "GPIO9"]
    pub GPIO9: GPIO9,
    #[doc = "CAN1"]
    pub CAN1: CAN1,
    #[doc = "CAN2"]
    pub CAN2: CAN2,
    #[doc = "CAN3"]
    pub CAN3: CAN3,
    #[doc = "TMR1"]
    pub TMR1: TMR1,
    #[doc = "TMR2"]
    pub TMR2: TMR2,
    #[doc = "TMR3"]
    pub TMR3: TMR3,
    #[doc = "TMR4"]
    pub TMR4: TMR4,
    #[doc = "GPT1"]
    pub GPT1: GPT1,
    #[doc = "GPT2"]
    pub GPT2: GPT2,
    #[doc = "OCOTP"]
    pub OCOTP: OCOTP,
    #[doc = "IOMUXC"]
    pub IOMUXC: IOMUXC,
    #[doc = "KPP"]
    pub KPP: KPP,
    #[doc = "FLEXSPI"]
    pub FLEXSPI: FLEXSPI,
    #[doc = "FLEXSPI2"]
    pub FLEXSPI2: FLEXSPI2,
    #[doc = "PXP"]
    pub PXP: PXP,
    #[doc = "LCDIF"]
    pub LCDIF: LCDIF,
    #[doc = "CSI"]
    pub CSI: CSI,
    #[doc = "USDHC1"]
    pub USDHC1: USDHC1,
    #[doc = "USDHC2"]
    pub USDHC2: USDHC2,
    #[doc = "ENET"]
    pub ENET: ENET,
    #[doc = "ENET2"]
    pub ENET2: ENET2,
    #[doc = "USB1"]
    pub USB1: USB1,
    #[doc = "USB2"]
    pub USB2: USB2,
    #[doc = "USBNC1"]
    pub USBNC1: USBNC1,
    #[doc = "USBNC2"]
    pub USBNC2: USBNC2,
    #[doc = "SEMC"]
    pub SEMC: SEMC,
    #[doc = "DCP"]
    pub DCP: DCP,
    #[doc = "SPDIF"]
    pub SPDIF: SPDIF,
    #[doc = "SAI1"]
    pub SAI1: SAI1,
    #[doc = "SAI2"]
    pub SAI2: SAI2,
    #[doc = "SAI3"]
    pub SAI3: SAI3,
    #[doc = "LPSPI1"]
    pub LPSPI1: LPSPI1,
    #[doc = "LPSPI2"]
    pub LPSPI2: LPSPI2,
    #[doc = "LPSPI3"]
    pub LPSPI3: LPSPI3,
    #[doc = "LPSPI4"]
    pub LPSPI4: LPSPI4,
    #[doc = "ADC_ETC"]
    pub ADC_ETC: ADC_ETC,
    #[doc = "AOI1"]
    pub AOI1: AOI1,
    #[doc = "AOI2"]
    pub AOI2: AOI2,
    #[doc = "XBARA1"]
    pub XBARA1: XBARA1,
    #[doc = "XBARB2"]
    pub XBARB2: XBARB2,
    #[doc = "XBARB3"]
    pub XBARB3: XBARB3,
    #[doc = "ENC1"]
    pub ENC1: ENC1,
    #[doc = "ENC2"]
    pub ENC2: ENC2,
    #[doc = "ENC3"]
    pub ENC3: ENC3,
    #[doc = "ENC4"]
    pub ENC4: ENC4,
    #[doc = "PWM1"]
    pub PWM1: PWM1,
    #[doc = "PWM2"]
    pub PWM2: PWM2,
    #[doc = "PWM3"]
    pub PWM3: PWM3,
    #[doc = "PWM4"]
    pub PWM4: PWM4,
    #[doc = "BEE"]
    pub BEE: BEE,
    #[doc = "LPI2C1"]
    pub LPI2C1: LPI2C1,
    #[doc = "LPI2C2"]
    pub LPI2C2: LPI2C2,
    #[doc = "LPI2C3"]
    pub LPI2C3: LPI2C3,
    #[doc = "LPI2C4"]
    pub LPI2C4: LPI2C4,
    #[doc = "SYSTEMCONTROL"]
    pub SYSTEMCONTROL: SYSTEMCONTROL,
}
impl Peripherals {
    #[doc = r"Returns all the peripherals *once*"]
    #[inline]
    pub fn take() -> Option<Self> {
        cortex_m::interrupt::free(|_| {
            if unsafe { DEVICE_PERIPHERALS } {
                None
            } else {
                Some(unsafe { Peripherals::steal() })
            }
        })
    }
    #[doc = r"Unchecked version of `Peripherals::take`"]
    pub unsafe fn steal() -> Self {
        DEVICE_PERIPHERALS = true;
        Peripherals {
            AIPSTZ1: AIPSTZ1 {
                _marker: PhantomData,
            },
            AIPSTZ2: AIPSTZ2 {
                _marker: PhantomData,
            },
            AIPSTZ3: AIPSTZ3 {
                _marker: PhantomData,
            },
            AIPSTZ4: AIPSTZ4 {
                _marker: PhantomData,
            },
            DCDC: DCDC {
                _marker: PhantomData,
            },
            PIT: PIT {
                _marker: PhantomData,
            },
            CMP1: CMP1 {
                _marker: PhantomData,
            },
            CMP2: CMP2 {
                _marker: PhantomData,
            },
            CMP3: CMP3 {
                _marker: PhantomData,
            },
            CMP4: CMP4 {
                _marker: PhantomData,
            },
            IOMUXC_SNVS_GPR: IOMUXC_SNVS_GPR {
                _marker: PhantomData,
            },
            IOMUXC_SNVS: IOMUXC_SNVS {
                _marker: PhantomData,
            },
            IOMUXC_GPR: IOMUXC_GPR {
                _marker: PhantomData,
            },
            FLEXRAM: FLEXRAM {
                _marker: PhantomData,
            },
            EWM: EWM {
                _marker: PhantomData,
            },
            WDOG1: WDOG1 {
                _marker: PhantomData,
            },
            WDOG2: WDOG2 {
                _marker: PhantomData,
            },
            RTWDOG: RTWDOG {
                _marker: PhantomData,
            },
            ADC1: ADC1 {
                _marker: PhantomData,
            },
            ADC2: ADC2 {
                _marker: PhantomData,
            },
            TRNG: TRNG {
                _marker: PhantomData,
            },
            SNVS: SNVS {
                _marker: PhantomData,
            },
            CCM_ANALOG: CCM_ANALOG {
                _marker: PhantomData,
            },
            PMU: PMU {
                _marker: PhantomData,
            },
            TEMPMON: TEMPMON {
                _marker: PhantomData,
            },
            USB_ANALOG: USB_ANALOG {
                _marker: PhantomData,
            },
            XTALOSC24M: XTALOSC24M {
                _marker: PhantomData,
            },
            USBPHY1: USBPHY1 {
                _marker: PhantomData,
            },
            USBPHY2: USBPHY2 {
                _marker: PhantomData,
            },
            CSU: CSU {
                _marker: PhantomData,
            },
            TSC: TSC {
                _marker: PhantomData,
            },
            DMA0: DMA0 {
                _marker: PhantomData,
            },
            DMAMUX: DMAMUX {
                _marker: PhantomData,
            },
            GPC: GPC {
                _marker: PhantomData,
            },
            PGC: PGC {
                _marker: PhantomData,
            },
            SRC: SRC {
                _marker: PhantomData,
            },
            CCM: CCM {
                _marker: PhantomData,
            },
            ROMC: ROMC {
                _marker: PhantomData,
            },
            LPUART1: LPUART1 {
                _marker: PhantomData,
            },
            LPUART2: LPUART2 {
                _marker: PhantomData,
            },
            LPUART3: LPUART3 {
                _marker: PhantomData,
            },
            LPUART4: LPUART4 {
                _marker: PhantomData,
            },
            LPUART5: LPUART5 {
                _marker: PhantomData,
            },
            LPUART6: LPUART6 {
                _marker: PhantomData,
            },
            LPUART7: LPUART7 {
                _marker: PhantomData,
            },
            LPUART8: LPUART8 {
                _marker: PhantomData,
            },
            FLEXIO1: FLEXIO1 {
                _marker: PhantomData,
            },
            FLEXIO2: FLEXIO2 {
                _marker: PhantomData,
            },
            FLEXIO3: FLEXIO3 {
                _marker: PhantomData,
            },
            GPIO1: GPIO1 {
                _marker: PhantomData,
            },
            GPIO5: GPIO5 {
                _marker: PhantomData,
            },
            GPIO2: GPIO2 {
                _marker: PhantomData,
            },
            GPIO3: GPIO3 {
                _marker: PhantomData,
            },
            GPIO4: GPIO4 {
                _marker: PhantomData,
            },
            GPIO6: GPIO6 {
                _marker: PhantomData,
            },
            GPIO7: GPIO7 {
                _marker: PhantomData,
            },
            GPIO8: GPIO8 {
                _marker: PhantomData,
            },
            GPIO9: GPIO9 {
                _marker: PhantomData,
            },
            CAN1: CAN1 {
                _marker: PhantomData,
            },
            CAN2: CAN2 {
                _marker: PhantomData,
            },
            CAN3: CAN3 {
                _marker: PhantomData,
            },
            TMR1: TMR1 {
                _marker: PhantomData,
            },
            TMR2: TMR2 {
                _marker: PhantomData,
            },
            TMR3: TMR3 {
                _marker: PhantomData,
            },
            TMR4: TMR4 {
                _marker: PhantomData,
            },
            GPT1: GPT1 {
                _marker: PhantomData,
            },
            GPT2: GPT2 {
                _marker: PhantomData,
            },
            OCOTP: OCOTP {
                _marker: PhantomData,
            },
            IOMUXC: IOMUXC {
                _marker: PhantomData,
            },
            KPP: KPP {
                _marker: PhantomData,
            },
            FLEXSPI: FLEXSPI {
                _marker: PhantomData,
            },
            FLEXSPI2: FLEXSPI2 {
                _marker: PhantomData,
            },
            PXP: PXP {
                _marker: PhantomData,
            },
            LCDIF: LCDIF {
                _marker: PhantomData,
            },
            CSI: CSI {
                _marker: PhantomData,
            },
            USDHC1: USDHC1 {
                _marker: PhantomData,
            },
            USDHC2: USDHC2 {
                _marker: PhantomData,
            },
            ENET: ENET {
                _marker: PhantomData,
            },
            ENET2: ENET2 {
                _marker: PhantomData,
            },
            USB1: USB1 {
                _marker: PhantomData,
            },
            USB2: USB2 {
                _marker: PhantomData,
            },
            USBNC1: USBNC1 {
                _marker: PhantomData,
            },
            USBNC2: USBNC2 {
                _marker: PhantomData,
            },
            SEMC: SEMC {
                _marker: PhantomData,
            },
            DCP: DCP {
                _marker: PhantomData,
            },
            SPDIF: SPDIF {
                _marker: PhantomData,
            },
            SAI1: SAI1 {
                _marker: PhantomData,
            },
            SAI2: SAI2 {
                _marker: PhantomData,
            },
            SAI3: SAI3 {
                _marker: PhantomData,
            },
            LPSPI1: LPSPI1 {
                _marker: PhantomData,
            },
            LPSPI2: LPSPI2 {
                _marker: PhantomData,
            },
            LPSPI3: LPSPI3 {
                _marker: PhantomData,
            },
            LPSPI4: LPSPI4 {
                _marker: PhantomData,
            },
            ADC_ETC: ADC_ETC {
                _marker: PhantomData,
            },
            AOI1: AOI1 {
                _marker: PhantomData,
            },
            AOI2: AOI2 {
                _marker: PhantomData,
            },
            XBARA1: XBARA1 {
                _marker: PhantomData,
            },
            XBARB2: XBARB2 {
                _marker: PhantomData,
            },
            XBARB3: XBARB3 {
                _marker: PhantomData,
            },
            ENC1: ENC1 {
                _marker: PhantomData,
            },
            ENC2: ENC2 {
                _marker: PhantomData,
            },
            ENC3: ENC3 {
                _marker: PhantomData,
            },
            ENC4: ENC4 {
                _marker: PhantomData,
            },
            PWM1: PWM1 {
                _marker: PhantomData,
            },
            PWM2: PWM2 {
                _marker: PhantomData,
            },
            PWM3: PWM3 {
                _marker: PhantomData,
            },
            PWM4: PWM4 {
                _marker: PhantomData,
            },
            BEE: BEE {
                _marker: PhantomData,
            },
            LPI2C1: LPI2C1 {
                _marker: PhantomData,
            },
            LPI2C2: LPI2C2 {
                _marker: PhantomData,
            },
            LPI2C3: LPI2C3 {
                _marker: PhantomData,
            },
            LPI2C4: LPI2C4 {
                _marker: PhantomData,
            },
            SYSTEMCONTROL: SYSTEMCONTROL {
                _marker: PhantomData,
            },
        }
    }
}