imxrt-ral 0.6.2

Register access layer for all NXP i.MX RT microcontrollers
Documentation
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
#[doc = "SRC General"]
#[repr(C)]
pub struct RegisterBlock {
    _reserved0: [u8; 0x04],
    #[doc = "Authentication Control"]
    pub AUTHEN_CTRL: crate::RWRegister<u32>,
    _reserved1: [u8; 0x08],
    #[doc = "SRC Control Register"]
    pub SCR: crate::RWRegister<u32>,
    #[doc = "SRC Reset Trigger Mode Register"]
    pub SRTMR: crate::RWRegister<u32>,
    #[doc = "SRC Reset Mask Register"]
    pub SRMASK: crate::RWRegister<u32>,
    _reserved2: [u8; 0x24],
    #[doc = "SRC Boot Mode Register 1"]
    pub SBMR1: crate::RORegister<u32>,
    #[doc = "SRC Boot Mode Register 2"]
    pub SBMR2: crate::RORegister<u32>,
    _reserved3: [u8; 0x04],
    #[doc = "SRC Reset Status Register backup in BBSM domain"]
    pub SRSR_BBSM: crate::RWRegister<u32>,
    #[doc = "SRC Reset Status Register"]
    pub SRSR: crate::RWRegister<u32>,
    #[doc = "SRC General Purpose Register"]
    pub GPR: [crate::RWRegister<u32>; 20usize],
}
#[doc = "Authentication Control"]
pub mod AUTHEN_CTRL {
    #[doc = "Configuration lock"]
    pub mod LOCK_CFG {
        pub const offset: u32 = 7;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "General registers are not locked."]
            pub const DISABLE: u32 = 0;
            #[doc = "LOCK_CFG and registers in the list are locked."]
            pub const ENABLE: u32 = 0x01;
        }
    }
    #[doc = "Allow user mode write"]
    pub mod TZ_USER {
        pub const offset: u32 = 8;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "General registers can only be written in privilege mode."]
            pub const DIS: u32 = 0;
            #[doc = "General registers can be written either in privilege mode or user mode."]
            pub const EN: u32 = 0x01;
        }
    }
    #[doc = "Allow non-secure mode access"]
    pub mod TZ_NS {
        pub const offset: u32 = 9;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "General registers can only be written in secure mode."]
            pub const DIS: u32 = 0;
            #[doc = "General registers can be written either in secure mode or non-secure mode."]
            pub const EN: u32 = 0x01;
        }
    }
    #[doc = "Lock Trust Zone Non Secure(TZ_NS) and Trust Zone User(TZ_USER) bits"]
    pub mod LOCK_TZ {
        pub const offset: u32 = 11;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "TZ_NS and TZ_USER values can be changed."]
            pub const DIS: u32 = 0;
            #[doc = "LOCK_TZ, TZ_NS and TZ_USER values cannot be changed."]
            pub const EN: u32 = 0x01;
        }
    }
    #[doc = "White list lock"]
    pub mod LOCK_LIST {
        pub const offset: u32 = 15;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "WHITE_LIST value can be changed."]
            pub const DIS: u32 = 0;
            #[doc = "LOCK_LIST and WHITE_LIST values cannot be changed."]
            pub const EN: u32 = 0x01;
        }
    }
    #[doc = "Domain ID white list"]
    pub mod WHITE_LIST {
        pub const offset: u32 = 16;
        pub const mask: u32 = 0xffff << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Core with domain ID=0 can write General registers."]
            pub const DOMAIN0: u32 = 0x01;
            #[doc = "Core with domain ID=1 can write General registers."]
            pub const DOMAIN1: u32 = 0x02;
            #[doc = "Core with domain ID=2 can write General registers."]
            pub const DOMAIN2: u32 = 0x04;
            #[doc = "Core with domain ID=3 can write General registers."]
            pub const DOMAIN3: u32 = 0x08;
            #[doc = "Core with domain ID=4 can write General registers."]
            pub const DOMAIN4: u32 = 0x10;
            #[doc = "Core with domain ID=5 can write General registers."]
            pub const DOMAIN5: u32 = 0x20;
            #[doc = "Core with domain ID=6 can write General registers."]
            pub const DOMAIN6: u32 = 0x40;
            #[doc = "Core with domain ID=7 can write General registers."]
            pub const DOMAIN7: u32 = 0x80;
            #[doc = "Core with domain ID=8 can write General registers."]
            pub const DOMAIN8: u32 = 0x0100;
            #[doc = "Core with domain ID=9 can write General registers."]
            pub const DOMAIN9: u32 = 0x0200;
            #[doc = "Core with domain ID=10 can write General registers."]
            pub const DOMAIN10: u32 = 0x0400;
            #[doc = "Core with domain ID=11 can write General registers."]
            pub const DOMAIN11: u32 = 0x0800;
            #[doc = "Core with domain ID=12 can write General registers."]
            pub const DOMAIN12: u32 = 0x1000;
            #[doc = "Core with domain ID=13 can write General registers."]
            pub const DOMAIN13: u32 = 0x2000;
            #[doc = "Core with domain ID=14 can write General registers."]
            pub const DOMAIN14: u32 = 0x4000;
            #[doc = "Core with domain ID=15 can write General registers."]
            pub const DOMAIN15: u32 = 0x8000;
        }
    }
}
#[doc = "SRC Control Register"]
pub mod SCR {
    #[doc = "Boot release M7"]
    pub mod BT_RELEASE_M7 {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Holds M7 Core reset."]
            pub const DISABLE: u32 = 0;
            #[doc = "Releases M7 Core reset and let it run. After this bit is set, it cannot be cleared by SW write."]
            pub const ENABLE: u32 = 0x01;
        }
    }
}
#[doc = "SRC Reset Trigger Mode Register"]
pub mod SRTMR {
    #[doc = "Wdog1 reset trigger mode configuration, locked by LOCK_CFG field"]
    pub mod WDOG1_TRIG_MODE {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Level-sensitive: System stays in reset until the reset source deasserts."]
            pub const LEVEL: u32 = 0;
            #[doc = "Edge-sensitive: System resets once, even if the reset source remains asserted."]
            pub const EDGE: u32 = 0x01;
        }
    }
    #[doc = "Wdog2 reset trigger mode configuration, locked by LOCK_CFG field"]
    pub mod WDOG2_TRIG_MODE {
        pub const offset: u32 = 1;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Level-sensitive: System stays in reset until the reset source deasserts."]
            pub const LEVEL: u32 = 0;
            #[doc = "Edge-sensitive: System resets once, even if the reset source remains asserted."]
            pub const EDGE: u32 = 0x01;
        }
    }
    #[doc = "Wdog3 reset trigger mode configuration, locked by LOCK_CFG field"]
    pub mod WDOG3_TRIG_MODE {
        pub const offset: u32 = 2;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Level-sensitive: System stays in reset until the reset source deasserts."]
            pub const LEVEL: u32 = 0;
            #[doc = "Edge-sensitive: System resets once, even if the reset source remains asserted."]
            pub const EDGE: u32 = 0x01;
        }
    }
    #[doc = "Wdog4 reset trigger mode configuration, locked by LOCK_CFG field"]
    pub mod WDOG4_TRIG_MODE {
        pub const offset: u32 = 3;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Level-sensitive: System stays in reset until the reset source deasserts."]
            pub const LEVEL: u32 = 0;
            #[doc = "Edge-sensitive: System resets once, even if the reset source remains asserted."]
            pub const EDGE: u32 = 0x01;
        }
    }
    #[doc = "Wdog5 reset trigger mode configuration, locked by LOCK_CFG field"]
    pub mod WDOG5_TRIG_MODE {
        pub const offset: u32 = 4;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Level-sensitive: System stays in reset until the reset source deasserts."]
            pub const LEVEL: u32 = 0;
            #[doc = "Edge-sensitive: System resets once, even if the reset source remains asserted."]
            pub const EDGE: u32 = 0x01;
        }
    }
    #[doc = "TempSense reset trigger mode configuration, locked by LOCK_CFG field"]
    pub mod TEMPSENSE_TRIG_MODE {
        pub const offset: u32 = 5;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Level-sensitive: System stays in reset until the reset source deasserts."]
            pub const LEVEL: u32 = 0;
            #[doc = "Edge-sensitive: System resets once, even if the reset source remains asserted."]
            pub const EDGE: u32 = 0x01;
        }
    }
    #[doc = "Edgelock reset trigger mode configuration, locked by LOCK_CFG field"]
    pub mod EDGELOCK_TRIG_MODE {
        pub const offset: u32 = 6;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Level-sensitive: System stays in reset until the reset source deasserts."]
            pub const LEVEL: u32 = 0;
            #[doc = "Edge-sensitive: System resets once, even if the reset source remains asserted."]
            pub const EDGE: u32 = 0x01;
        }
    }
    #[doc = "Jtagsw reset trigger mode configuration, locked by LOCK_CFG field"]
    pub mod JTAGSW_TRIG_MODE {
        pub const offset: u32 = 7;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Level-sensitive: System stays in reset until the reset source deasserts."]
            pub const LEVEL: u32 = 0;
            #[doc = "Edge-sensitive: System resets once, even if the reset source remains asserted."]
            pub const EDGE: u32 = 0x01;
        }
    }
    #[doc = "CM33 reset trigger mode configuration, locked by LOCK_CFG field."]
    pub mod CM33_RESET_TRIG_MODE {
        pub const offset: u32 = 8;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Level-sensitive: System stays in reset until the reset source deasserts."]
            pub const LEVEL: u32 = 0;
            #[doc = "Edge-sensitive: System resets once, even if the reset source remains asserted."]
            pub const EDGE: u32 = 0x01;
        }
    }
    #[doc = "CM33 lockup trigger mode configuration, locked by LOCK_CFG field."]
    pub mod CM33_LOCKUP_TRIG_MODE {
        pub const offset: u32 = 9;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Level-sensitive: System stays in reset until the reset source deasserts."]
            pub const LEVEL: u32 = 0;
            #[doc = "Edge-sensitive: System resets once, even if the reset source remains asserted."]
            pub const EDGE: u32 = 0x01;
        }
    }
    #[doc = "CM7 reset trigger mode configuration, locked by LOCK_CFG field"]
    pub mod CM7_RESET_TRIG_MODE {
        pub const offset: u32 = 10;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Level-sensitive: System stays in reset until the reset source deasserts."]
            pub const LEVEL: u32 = 0;
            #[doc = "Edge-sensitive: System resets once, even if the reset source remains asserted."]
            pub const EDGE: u32 = 0x01;
        }
    }
    #[doc = "CM7 lockup trigger mode configuration, locked by LOCK_CFG field"]
    pub mod CM7_LOCKUP_TRIG_MODE {
        pub const offset: u32 = 11;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Level-sensitive: System stays in reset until the reset source deasserts."]
            pub const LEVEL: u32 = 0;
            #[doc = "Edge-sensitive: System resets once, even if the reset source remains asserted."]
            pub const EDGE: u32 = 0x01;
        }
    }
    #[doc = "DCDC over voltage trigger mode configuration, locked by LOCK_CFG field"]
    pub mod DCDC_OVVT_TRIG_MODE {
        pub const offset: u32 = 12;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Level-sensitive: System stays in reset until the reset source deasserts."]
            pub const LEVEL: u32 = 0;
            #[doc = "Edge-sensitive: System resets once, even if the reset source remains asserted."]
            pub const EDGE: u32 = 0x01;
        }
    }
    #[doc = "ECAT reset output mode configuration, locked by LOCK_CFG field"]
    pub mod ECAT_RSTO_TRIG_MODE {
        pub const offset: u32 = 13;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Level-sensitive: System stays in reset until the reset source deasserts."]
            pub const LEVEL: u32 = 0;
            #[doc = "Edge-sensitive: System resets once, even if the reset source remains asserted."]
            pub const EDGE: u32 = 0x01;
        }
    }
}
#[doc = "SRC Reset Mask Register"]
pub mod SRMASK {
    #[doc = "WDOG1 reset mask"]
    pub mod WDOG1_MASK {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "The reset source can work"]
            pub const DIS: u32 = 0;
            #[doc = "The reset source is masked, cannot work"]
            pub const EN: u32 = 0x01;
        }
    }
    #[doc = "WDOG2 reset mask"]
    pub mod WDOG2_MASK {
        pub const offset: u32 = 1;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "The reset source can work"]
            pub const DIS: u32 = 0;
            #[doc = "The reset source is masked, cannot work"]
            pub const EN: u32 = 0x01;
        }
    }
    #[doc = "WDOG3 reset mask"]
    pub mod WDOG3_MASK {
        pub const offset: u32 = 2;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "The reset source can work"]
            pub const DIS: u32 = 0;
            #[doc = "The reset source is masked, cannot work"]
            pub const EN: u32 = 0x01;
        }
    }
    #[doc = "WDOG4 reset mask"]
    pub mod WDOG4_MASK {
        pub const offset: u32 = 3;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "The reset source can work"]
            pub const DIS: u32 = 0;
            #[doc = "The reset source is masked, cannot work"]
            pub const EN: u32 = 0x01;
        }
    }
    #[doc = "WDOG5 reset mask"]
    pub mod WDOG5_MASK {
        pub const offset: u32 = 4;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "The reset source can work"]
            pub const DIS: u32 = 0;
            #[doc = "The reset source is masked, cannot work"]
            pub const EN: u32 = 0x01;
        }
    }
    #[doc = "TempSense reset mask"]
    pub mod TEMPSENSE_MASK {
        pub const offset: u32 = 5;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "The reset source can work"]
            pub const DIS: u32 = 0;
            #[doc = "The reset source is masked, cannot work"]
            pub const EN: u32 = 0x01;
        }
    }
    #[doc = "Edgelock reset mask"]
    pub mod EDGELOCK_MASK {
        pub const offset: u32 = 6;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "The reset source can work"]
            pub const DIS: u32 = 0;
            #[doc = "The reset source is masked, cannot work"]
            pub const EN: u32 = 0x01;
        }
    }
    #[doc = "JTAGSW reset mask"]
    pub mod JTAGSW_MASK {
        pub const offset: u32 = 7;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "The reset source can work"]
            pub const DIS: u32 = 0;
            #[doc = "The reset source is masked, cannot work"]
            pub const EN: u32 = 0x01;
        }
    }
    #[doc = "CM33 reset mask"]
    pub mod CM33_RESET_MASK {
        pub const offset: u32 = 8;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "The reset source can work"]
            pub const DIS: u32 = 0;
            #[doc = "The reset source is masked, cannot work"]
            pub const EN: u32 = 0x01;
        }
    }
    #[doc = "CM33 lockup mask"]
    pub mod CM33_LOCKUP_MASK {
        pub const offset: u32 = 9;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "The reset source can work"]
            pub const DIS: u32 = 0;
            #[doc = "The reset source is masked, cannot work"]
            pub const EN: u32 = 0x01;
        }
    }
    #[doc = "CM7 reset mask"]
    pub mod CM7_RESET_MASK {
        pub const offset: u32 = 10;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "The reset source can work"]
            pub const DIS: u32 = 0;
            #[doc = "The reset source is masked, cannot work"]
            pub const EN: u32 = 0x01;
        }
    }
    #[doc = "CM7 lockup reset mask"]
    pub mod CM7_LOCKUP_MASK {
        pub const offset: u32 = 11;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "The reset source can work"]
            pub const DIS: u32 = 0;
            #[doc = "The reset source is masked, cannot work"]
            pub const EN: u32 = 0x01;
        }
    }
    #[doc = "DCDC over voltage mask"]
    pub mod DCDC_OVVT_MASK {
        pub const offset: u32 = 12;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "The reset source can work"]
            pub const DIS: u32 = 0;
            #[doc = "The reset source is masked, cannot work"]
            pub const EN: u32 = 0x01;
        }
    }
    #[doc = "ECAT reset output mask"]
    pub mod ECAT_RSTO_MASK {
        pub const offset: u32 = 13;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "The reset source can work"]
            pub const DIS: u32 = 0;
            #[doc = "The reset source is masked, cannot work"]
            pub const EN: u32 = 0x01;
        }
    }
    #[doc = "Lock WDOG1_MASK"]
    pub mod WDOG1_MASK_LOCKED {
        pub const offset: u32 = 16;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "This bit and WDOG1_MASK's value can be changed."]
            pub const DIS: u32 = 0;
            #[doc = "This bit and WDOG1_MASK's value cannot be changed."]
            pub const EN: u32 = 0x01;
        }
    }
    #[doc = "Lock WDOG2_MASK"]
    pub mod WDOG2_MASK_LOCKED {
        pub const offset: u32 = 17;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "This bit and WDOG2_MASK's value can be changed."]
            pub const DIS: u32 = 0;
            #[doc = "This bit and WDOG2_MASK's value cannot be changed."]
            pub const EN: u32 = 0x01;
        }
    }
    #[doc = "Lock WDOG3_MASK"]
    pub mod WDOG3_MASK_LOCKED {
        pub const offset: u32 = 18;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "This bit and WDOG3_MASK's value can be changed."]
            pub const DIS: u32 = 0;
            #[doc = "This bit and WDOG3_MASK's value cannot be changed."]
            pub const EN: u32 = 0x01;
        }
    }
    #[doc = "Lock WDOG4_MASK"]
    pub mod WDOG4_MASK_LOCKED {
        pub const offset: u32 = 19;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "This bit and WDOG4_MASK's value can be changed."]
            pub const DIS: u32 = 0;
            #[doc = "This bit and WDOG4_MASK's value cannot be changed."]
            pub const EN: u32 = 0x01;
        }
    }
    #[doc = "Lock WDOG5_MASK"]
    pub mod WDOG5_MASK_LOCKED {
        pub const offset: u32 = 20;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "This bit and WDOG5_MASK's value can be changed."]
            pub const DIS: u32 = 0;
            #[doc = "This bit and WDOG5_MASK's value cannot be changed."]
            pub const EN: u32 = 0x01;
        }
    }
    #[doc = "Lock TEMPSENSE_MASK"]
    pub mod TEMPSENSE_MASK_LOCKED {
        pub const offset: u32 = 21;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "TEMPSENSE_MASK's value can be changed."]
            pub const DIS: u32 = 0;
            #[doc = "This bit and TEMPSENSE_MASK's value cannot be changed."]
            pub const EN: u32 = 0x01;
        }
    }
    #[doc = "Lock EDGELOCK_MASK"]
    pub mod EDGELOCK_MASK_LOCKED {
        pub const offset: u32 = 22;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "EDGELOCK_MASK's value can be changed."]
            pub const DIS: u32 = 0;
            #[doc = "This bit and EDGELOCK_MASK's value cannot be changed."]
            pub const EN: u32 = 0x01;
        }
    }
    #[doc = "Lock JTAGSW_MASK"]
    pub mod JTAGSW_MASK_LOCKED {
        pub const offset: u32 = 23;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "JTAGSW_MASK's value can be changed."]
            pub const DIS: u32 = 0;
            #[doc = "This bit and JTAGSW_MASK's value cannot be changed."]
            pub const EN: u32 = 0x01;
        }
    }
    #[doc = "Lock CM33_RESET_MASK"]
    pub mod CM33_RESET_MASK_LOCKED {
        pub const offset: u32 = 24;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "CM33_RESET_MASK's value can be changed."]
            pub const DIS: u32 = 0;
            #[doc = "This bit and CM33_RESET_MASK's value cannot be changed."]
            pub const EN: u32 = 0x01;
        }
    }
    #[doc = "Lock CM33_LOCKUP_MASK"]
    pub mod CM33_LOCKUP_MASK_LOCKED {
        pub const offset: u32 = 25;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "CM33_LOCKUP_MASK's value can be changed."]
            pub const DIS: u32 = 0;
            #[doc = "This bit and CM33_LOCKUP_MASK's value cannot be changed."]
            pub const EN: u32 = 0x01;
        }
    }
    #[doc = "Lock CM7 reset mask bit"]
    pub mod CM7_RESET_MASK_LOCKED {
        pub const offset: u32 = 26;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "CM7_RESET_MASK's value can be changed."]
            pub const DIS: u32 = 0;
            #[doc = "This bit and CM7_RESET_MASK's value cannot be changed."]
            pub const EN: u32 = 0x01;
        }
    }
    #[doc = "Lock CM7_LOCKUP_MASK"]
    pub mod CM7_LOCKUP_MASK_LOCKED {
        pub const offset: u32 = 27;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "CM7_LOCKUP_MASK's value can be changed."]
            pub const DIS: u32 = 0;
            #[doc = "This bit and CM7_LOCKUP_MASK's value cannot be changed."]
            pub const EN: u32 = 0x01;
        }
    }
    #[doc = "Lock DCDC_OVVT_MASK"]
    pub mod DCDC_OVVT_MASK_LOCKED {
        pub const offset: u32 = 28;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "DCDC_OVVT_MASK's value can be changed."]
            pub const DIS: u32 = 0;
            #[doc = "This bit and DCDC_OVVT_MASK's value cannot be changed."]
            pub const EN: u32 = 0x01;
        }
    }
    #[doc = "Lock ECAT_RSTO_MASK"]
    pub mod ECAT_RSTO_MASK_LOCKED {
        pub const offset: u32 = 29;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "ECAT_RSTO_MASK's value can be changed."]
            pub const DIS: u32 = 0;
            #[doc = "This bit and ECAT_RSTO_MASK's value cannot be changed."]
            pub const EN: u32 = 0x01;
        }
    }
}
#[doc = "SRC Boot Mode Register 1"]
pub mod SBMR1 {}
#[doc = "SRC Boot Mode Register 2"]
pub mod SBMR2 {
    #[doc = "IPP_BOOT_MODE\\[5:4\\] reserved"]
    pub mod IPP_BOOT_MODE {
        pub const offset: u32 = 24;
        pub const mask: u32 = 0x3f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Boot from internal Fuses"]
            pub const BOOTOPT0: u32 = 0;
            #[doc = "Serial Downloader: USB1 or LPUART1"]
            pub const BOOTOPT1: u32 = 0x01;
            #[doc = "USDHC1 8-bit eMMC 5.1"]
            pub const BOOTOPT2: u32 = 0x02;
            #[doc = "USDHC2 4-bit SD 3.0"]
            pub const BOOTOPT3: u32 = 0x03;
            #[doc = "FlexSPI Serial NOR with SFDP (JESD-216) discoverable parameters"]
            pub const BOOTOPT4: u32 = 0x04;
            #[doc = "FlexSPI Serial NAND 2k page"]
            pub const BOOTOPT5: u32 = 0x05;
            #[doc = "FlexSPI Serial NAND 4k page"]
            pub const BOOTOPT6: u32 = 0x06;
            #[doc = "Test mode/Infinite loop mode"]
            pub const BOOTOPT7: u32 = 0x07;
        }
    }
}
#[doc = "SRC Reset Status Register backup in BBSM domain"]
pub mod SRSR_BBSM {
    #[doc = "Indicates whether the reset was the result of power up or chip PAD POR_B."]
    pub mod POR_RST {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Reset is not a result of power up or chip PAD POR_B."]
            pub const NO: u32 = 0;
            #[doc = "Reset is a result of power up or chip PAD POR_B."]
            pub const YES: u32 = 0x01;
        }
    }
    #[doc = "Time-out reset. Indicates whether the reset was the result of the watchdog1 time-out event."]
    pub mod WDOG1_RST_B {
        pub const offset: u32 = 1;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Reset is not a result of the watchdog time-out event."]
            pub const NO: u32 = 0;
            #[doc = "Reset is a result of the watchdog time-out event."]
            pub const YES: u32 = 0x01;
        }
    }
    #[doc = "Time-out reset. Indicates whether the reset was the result of the watchdog2 time-out event."]
    pub mod WDOG2_RST_B {
        pub const offset: u32 = 2;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Reset is not a result of the watchdog time-out event."]
            pub const NO: u32 = 0;
            #[doc = "Reset is a result of the watchdog time-out event."]
            pub const YES: u32 = 0x01;
        }
    }
    #[doc = "Time-out reset. Indicates whether the reset was the result of the watchdog3 time-out"]
    pub mod WDOG3_RST_B {
        pub const offset: u32 = 3;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Reset is not a result of the watchdog3 time-out event."]
            pub const NO: u32 = 0;
            #[doc = "Reset is a result of the watchdog3 time-out event."]
            pub const YES: u32 = 0x01;
        }
    }
    #[doc = "Time-out reset. Indicates whether the reset was the result of the watchdog4 time-out"]
    pub mod WDOG4_RST_B {
        pub const offset: u32 = 4;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Reset is not a result of the watchdog time-out event."]
            pub const NO: u32 = 0;
            #[doc = "Reset is a result of the watchdog time-out event."]
            pub const YES: u32 = 0x01;
        }
    }
    #[doc = "Time-out reset. Indicates whether the reset was the result of the watchdog5 time-out"]
    pub mod WDOG5_RST_B {
        pub const offset: u32 = 5;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Reset is not a result of the watchdog time-out event."]
            pub const NO: u32 = 0;
            #[doc = "Reset is a result of the watchdog time-out event."]
            pub const YES: u32 = 0x01;
        }
    }
    #[doc = "TempSensor software reset. Indicates whether the reset was the result of software reset from on-chip Temperature Sensor."]
    pub mod TEMPSENSE_RST_B {
        pub const offset: u32 = 6;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Reset is not a result of software reset from Temperature Sensor."]
            pub const NO: u32 = 0;
            #[doc = "Reset is a result of software reset from Temperature Sensor."]
            pub const YES: u32 = 0x01;
        }
    }
    #[doc = "Indicates whether the reset was the result of the Edgelock's reset input."]
    pub mod EDGELOCK_RESET_B {
        pub const offset: u32 = 7;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Reset is not a result of the Edgelock's reset event."]
            pub const NO: u32 = 0;
            #[doc = "Reset is a result of the Edgelock's reset event."]
            pub const YES: u32 = 0x01;
        }
    }
    #[doc = "JTAG software reset. Indicates whether the reset was the result of software reset from JTAG."]
    pub mod JTAG_SW_RST {
        pub const offset: u32 = 8;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Reset is not a result of software reset from JTAG."]
            pub const NO: u32 = 0;
            #[doc = "Reset is a result of software reset from JTAG."]
            pub const YES: u32 = 0x01;
        }
    }
    #[doc = "Indicates whether reset was the result of cm33 reset request"]
    pub mod CM33_REQUEST {
        pub const offset: u32 = 9;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Reset is not a result of cm33 reset request."]
            pub const NO: u32 = 0;
            #[doc = "Reset is a result of cm33 reset request."]
            pub const YES: u32 = 0x01;
        }
    }
    #[doc = "Indicates a reset has been caused by cm33 CPU lockup"]
    pub mod CM33_LOCKUP {
        pub const offset: u32 = 10;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Reset is not a result of the cm33 lockup."]
            pub const NO: u32 = 0;
            #[doc = "Reset is a result of the cm33 lockup."]
            pub const YES: u32 = 0x01;
        }
    }
    #[doc = "Indicates whether reset was the result of cm7 reset request"]
    pub mod CM7_REQUEST {
        pub const offset: u32 = 11;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Reset is not a result of cm7 reset request."]
            pub const NO: u32 = 0;
            #[doc = "Reset is a result of cm7 reset request."]
            pub const YES: u32 = 0x01;
        }
    }
    #[doc = "Indicates a reset has been caused by CM7 CPU"]
    pub mod CM7_LOCKUP {
        pub const offset: u32 = 12;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Reset is not a result of the cm7 lockup."]
            pub const NO: u32 = 0;
            #[doc = "Reset is a result of the cm7 lockup."]
            pub const YES: u32 = 0x01;
        }
    }
    #[doc = "Indicates a reset has been caused by DCDC over voltage"]
    pub mod DCDC_OVVT {
        pub const offset: u32 = 13;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Reset is not a result of the DCDC over voltage."]
            pub const NO: u32 = 0;
            #[doc = "Reset is a result of the DCDC over voltage."]
            pub const YES: u32 = 0x01;
        }
    }
    #[doc = "Indicates a reset has been caused by ECAT reset output"]
    pub mod ECAT_RSTO {
        pub const offset: u32 = 14;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Reset is not a result of the ECAT reset output."]
            pub const NO: u32 = 0;
            #[doc = "Reset is a result of the ECAT reset output."]
            pub const YES: u32 = 0x01;
        }
    }
}
#[doc = "SRC Reset Status Register"]
pub mod SRSR {
    #[doc = "Indicates whether the reset was the result of POR."]
    pub mod POR_RST {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Reset is not a result of POR."]
            pub const NO: u32 = 0;
            #[doc = "Reset is a result of POR."]
            pub const YES: u32 = 0x01;
        }
    }
    #[doc = "Time-out reset. Indicates whether the reset was the result of the watchdog1 time-out event."]
    pub mod WDOG1_RST_B {
        pub const offset: u32 = 1;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Reset is not a result of the watchdog time-out event."]
            pub const NO: u32 = 0;
            #[doc = "Reset is a result of the watchdog time-out event."]
            pub const YES: u32 = 0x01;
        }
    }
    #[doc = "Time-out reset. Indicates whether the reset was the result of the watchdog2 time-out event."]
    pub mod WDOG2_RST_B {
        pub const offset: u32 = 2;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Reset is not a result of the watchdog time-out event."]
            pub const NO: u32 = 0;
            #[doc = "Reset is a result of the watchdog time-out event."]
            pub const YES: u32 = 0x01;
        }
    }
    #[doc = "Time-out reset. Indicates whether the reset was the result of the watchdog3 time-out"]
    pub mod WDOG3_RST_B {
        pub const offset: u32 = 3;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Reset is not a result of the watchdog3 time-out event."]
            pub const NO: u32 = 0;
            #[doc = "Reset is a result of the watchdog3 time-out event."]
            pub const YES: u32 = 0x01;
        }
    }
    #[doc = "Time-out reset. Indicates whether the reset was the result of the watchdog4 time-out"]
    pub mod WDOG4_RST_B {
        pub const offset: u32 = 4;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Reset is not a result of the watchdog time-out event."]
            pub const NO: u32 = 0;
            #[doc = "Reset is a result of the watchdog time-out event."]
            pub const YES: u32 = 0x01;
        }
    }
    #[doc = "Time-out reset. Indicates whether the reset was the result of the watchdog5 time-out"]
    pub mod WDOG5_RST_B {
        pub const offset: u32 = 5;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Reset is not a result of the watchdog time-out event."]
            pub const NO: u32 = 0;
            #[doc = "Reset is a result of the watchdog time-out event."]
            pub const YES: u32 = 0x01;
        }
    }
    #[doc = "Temper Sensor software reset. Indicates whether the reset was the result of software reset from on-chip Temperature Sensor."]
    pub mod TEMPSENSE_RST_B {
        pub const offset: u32 = 6;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Reset is not a result of software reset from Temperature Sensor."]
            pub const NO: u32 = 0;
            #[doc = "Reset is a result of software reset from Temperature Sensor."]
            pub const YES: u32 = 0x01;
        }
    }
    #[doc = "Indicates whether the reset was the result of the Edgelock's reset input."]
    pub mod EDGELOCK_RESET_B {
        pub const offset: u32 = 7;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Reset is not a result of the Edgelock's reset event."]
            pub const NO: u32 = 0;
            #[doc = "Reset is a result of the Edgelock's reset event."]
            pub const YES: u32 = 0x01;
        }
    }
    #[doc = "JTAG software reset. Indicates whether the reset was the result of software reset from JTAG."]
    pub mod JTAG_SW_RST {
        pub const offset: u32 = 8;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Reset is not a result of software reset from JTAG."]
            pub const NO: u32 = 0;
            #[doc = "Reset is a result of software reset from JTAG."]
            pub const YES: u32 = 0x01;
        }
    }
    #[doc = "Indicates whether reset was the result of cm33 reset request"]
    pub mod CM33_REQUEST {
        pub const offset: u32 = 9;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Reset is not a result of cm33 reset request."]
            pub const NO: u32 = 0;
            #[doc = "Reset is a result of cm33 reset request."]
            pub const YES: u32 = 0x01;
        }
    }
    #[doc = "Indicates a reset has been caused by cm33 CPU lockup"]
    pub mod CM33_LOCKUP {
        pub const offset: u32 = 10;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Reset is not a result of the cm33 lockup."]
            pub const NO: u32 = 0;
            #[doc = "Reset is a result of the cm33 lockup."]
            pub const YES: u32 = 0x01;
        }
    }
    #[doc = "Indicates whether reset was the result of cm7 reset request"]
    pub mod CM7_REQUEST {
        pub const offset: u32 = 11;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Reset is not a result of cm7 reset request."]
            pub const NO: u32 = 0;
            #[doc = "Reset is a result of cm7 reset request."]
            pub const YES: u32 = 0x01;
        }
    }
    #[doc = "Indicates a reset has been caused by CM7 CPU"]
    pub mod CM7_LOCKUP {
        pub const offset: u32 = 12;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Reset is not a result of the cm7 lockup."]
            pub const NO: u32 = 0;
            #[doc = "Reset is a result of the cm7 lockup."]
            pub const YES: u32 = 0x01;
        }
    }
    #[doc = "Indicates a reset has been caused by DCDC over voltage"]
    pub mod DCDC_OVVT {
        pub const offset: u32 = 13;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Reset is not a result of the DCDC over voltage."]
            pub const NO: u32 = 0;
            #[doc = "Reset is a result of the DCDC over voltage."]
            pub const YES: u32 = 0x01;
        }
    }
    #[doc = "Indicates a reset has been caused by ECAT reset output"]
    pub mod ECAT_RSTO {
        pub const offset: u32 = 14;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Reset is not a result of the ECAT reset output."]
            pub const NO: u32 = 0;
            #[doc = "Reset is a result of the ECAT reset output."]
            pub const YES: u32 = 0x01;
        }
    }
    #[doc = "Indicates whether the reset was the result of chip PAD POR_B."]
    pub mod IPP_POR_B {
        pub const offset: u32 = 16;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Reset is not a result of chip PAD POR_B."]
            pub const NO: u32 = 0;
            #[doc = "Reset is a result of chip PAD POR_B."]
            pub const YES: u32 = 0x01;
        }
    }
}
#[doc = "SRC General Purpose Register"]
pub mod GPR {
    #[doc = "General Purpose Register."]
    pub mod GPR {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0xffff_ffff << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}